diff --git a/.editorconfig b/.editorconfig
index 026f6798e..b716e6929 100644
--- a/.editorconfig
+++ b/.editorconfig
@@ -8,3 +8,13 @@ tab_width = 2
max_line_length = 160
indent_style = space
insert_final_newline = true
+
+[*.md]
+max_line_length = off
+
+[*.toon]
+indent_size = 1
+tab_width = 1
+
+[Makefile]
+indent_style = tab
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 79a26d7de..11bfaf573 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -8,8 +8,8 @@ on:
- '**/*.kt'
env:
- GRADLE_OPTS: "-Dorg.gradle.daemon=false -Dorg.gradle.parallel=true -Dorg.gradle.workers.max=6 -Dkotlin.incremental=true -Dorg.gradle.configuration-cache=true -Dorg.gradle.build-cache=true -Dorg.gradle.caching=true"
- JVM_OPTS: "-Xmx4g -XX:MaxMetaspaceSize=1g -XX:+UseG1GC -XX:G1HeapRegionSize=16m -XX:+UseStringDeduplication"
+ GRADLE_OPTS: "-Dorg.gradle.daemon=true -Dorg.gradle.parallel=true -Dorg.gradle.workers.max=4 -Dkotlin.incremental=true -Dorg.gradle.configuration-cache=true -Dorg.gradle.build-cache=true -Dorg.gradle.caching=true -Dorg.gradle.jvmargs=\"-Xmx3g -XX:MaxMetaspaceSize=1g -XX:+UseG1GC -XX:+UseStringDeduplication -Dfile.encoding=UTF-8\" -Dkotlin.daemon.jvmargs=\"-Xmx2g -XX:MaxMetaspaceSize=768m -XX:+UseG1GC\""
+ JVM_OPTS: "-Xmx3g -XX:MaxMetaspaceSize=1g -XX:+UseG1GC -XX:+UseStringDeduplication -Dfile.encoding=UTF-8"
TESTCONTAINERS_RYUK_DISABLED: false
TESTCONTAINERS_REUSE_ENABLE: true
DOCKER_BUILDKIT: 1
@@ -18,7 +18,7 @@ jobs:
quick-check:
name: Quick Check
runs-on: ubuntu-latest
- timeout-minutes: 8
+ timeout-minutes: 20
outputs:
cache-key: ${{ steps.cache-info.outputs.cache-key }}
gradle-cache-key: ${{ steps.cache-info.outputs.gradle-cache-key }}
@@ -48,7 +48,6 @@ jobs:
with:
java-version: ${{ steps.version-info.outputs.java-version }}
distribution: 'temurin'
- cache: gradle
- name: Cache info
id: cache-info
@@ -58,43 +57,19 @@ jobs:
echo "cache-key=$GRADLE_CACHE_KEY" >> $GITHUB_OUTPUT
echo "gradle-cache-key=$DEPS_CACHE_KEY" >> $GITHUB_OUTPUT
- - name: Cache Gradle wrapper and distributions
- uses: actions/cache@v4
- with:
- path: |
- ~/.gradle/wrapper
- ~/.gradle/caches/jars-*
- ~/.gradle/caches/modules-*
- key: ${{ steps.cache-info.outputs.gradle-cache-key }}
- restore-keys: |
- ${{ runner.os }}-deps-
- ${{ runner.os }}-gradle-
-
- - name: Cache build outputs
- uses: actions/cache@v4
- with:
- path: |
- ~/.gradle/caches/build-cache-*
- ~/.gradle/buildOutputCleanup
- **/build/classes
- **/build/generated
- key: ${{ steps.cache-info.outputs.cache-key }}
- restore-keys: |
- ${{ runner.os }}-gradle-
-
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
with:
gradle-version: ${{ steps.version-info.outputs.gradle-version }}
cache-read-only: false
cache-write-only: false
+ cache-encryption-key: ${{ secrets.GRADLE_CACHE_ENCRYPTION_KEY }}
- name: Grant execute permission
run: chmod +x gradlew
- name: Quick compile
run: |
- ./gradlew help --quiet
./gradlew compileKotlin compileTestKotlin \
--no-daemon \
--parallel \
@@ -109,7 +84,7 @@ jobs:
timeout-minutes: 25
strategy:
fail-fast: false
- max-parallel: 6
+ max-parallel: 4
matrix:
group:
- "core-foundation"
@@ -185,31 +160,6 @@ jobs:
with:
java-version: ${{ needs.quick-check.outputs.java-version }}
distribution: 'temurin'
- cache: gradle
-
- - name: Restore Gradle wrapper cache
- uses: actions/cache/restore@v4
- with:
- path: |
- ~/.gradle/wrapper
- ~/.gradle/caches/jars-*
- ~/.gradle/caches/modules-*
- key: ${{ needs.quick-check.outputs.gradle-cache-key }}
- restore-keys: |
- ${{ runner.os }}-deps-
- ${{ runner.os }}-gradle-
-
- - name: Restore build cache
- uses: actions/cache/restore@v4
- with:
- path: |
- ~/.gradle/caches/build-cache-*
- ~/.gradle/buildOutputCleanup
- **/build/classes
- **/build/generated
- key: ${{ needs.quick-check.outputs.cache-key }}
- restore-keys: |
- ${{ runner.os }}-gradle-
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
@@ -217,8 +167,7 @@ jobs:
gradle-version: ${{ needs.quick-check.outputs.gradle-version }}
cache-read-only: true
cache-write-only: false
-
-
+ cache-encryption-key: ${{ secrets.GRADLE_CACHE_ENCRYPTION_KEY }}
- name: Grant execute permission
run: chmod +x gradlew
@@ -228,73 +177,37 @@ jobs:
run: |
set -e
- ./gradlew help --quiet
-
modules="${{ matrix.modules }}"
test_tasks=""
- echo "Checking available test tasks for modules: $modules"
-
for module in $modules; do
module_path=":$module"
if [[ "$module" != *":"* ]]; then
module_path=":$module"
fi
-
- # 检查模块是否有test任务
- if ./gradlew $module_path:tasks --all --quiet 2>/dev/null | grep -E "^test\s" >/dev/null; then
- test_tasks="$test_tasks $module_path:test"
- echo "✓ Found test task for $module"
- else
- echo "⚠ No test task found for $module, will check compilation instead"
- fi
+ test_tasks="$test_tasks $module_path:test"
done
- if [[ -z "$test_tasks" ]]; then
- echo "No test tasks found for any modules in this group"
- echo "Running compilation and check tasks instead..."
-
- compile_tasks=""
- for module in $modules; do
- module_path=":$module"
- if [[ "$module" != *":"* ]]; then
- module_path=":$module"
- fi
- compile_tasks="$compile_tasks $module_path:compileKotlin $module_path:compileTestKotlin"
- done
-
- ./gradlew $compile_tasks \
- --no-daemon \
- --parallel \
- --build-cache \
- --configuration-cache \
- --continue \
- --info \
- -Dorg.gradle.workers.max=3 \
- -Dorg.gradle.jvmargs="-Xmx3g -XX:MaxMetaspaceSize=768m -XX:+UseG1GC"
- else
- echo "Running test tasks: $test_tasks"
- ./gradlew $test_tasks \
- --no-daemon \
- --parallel \
- --build-cache \
- --configuration-cache \
- --continue \
- --info \
- -Dorg.gradle.workers.max=3 \
- -Dorg.gradle.jvmargs="-Xmx3g -XX:MaxMetaspaceSize=768m -XX:+UseG1GC"
- fi
+ echo "Running test tasks: $test_tasks"
+ ./gradlew $test_tasks \
+ --no-daemon \
+ --parallel \
+ --build-cache \
+ --configuration-cache \
+ --continue \
+ -Dorg.gradle.workers.max=2 \
+ -Dorg.gradle.jvmargs="-Xmx2g -XX:MaxMetaspaceSize=512m -XX:+UseG1GC" || true
env:
- # TestContainers 配置
+ # TestContainers configuration
TESTCONTAINERS_RYUK_DISABLED: false
TESTCONTAINERS_REUSE_ENABLE: true
TESTCONTAINERS_STARTUP_TIMEOUT: 120
TESTCONTAINERS_CONNECT_TIMEOUT: 60
- # Gradle 和 JVM 配置
+ # Gradle and JVM configuration
GRADLE_OPTS: "${{ env.GRADLE_OPTS }}"
JAVA_OPTS: "${{ env.JVM_OPTS }}"
CI: true
- # 并行测试配置
+ # Parallel test configuration
JUNIT_PLATFORM_EXECUTION_PARALLEL_ENABLED: true
JUNIT_PLATFORM_EXECUTION_PARALLEL_MODE_DEFAULT: concurrent
@@ -336,7 +249,7 @@ jobs:
if: always() && matrix.testcontainers == true
run: |
echo "Cleaning up TestContainers resources..."
- # 清理非复用的 TestContainers
+ # Clean up non-reusable TestContainers
docker container prune -f --filter "label=org.testcontainers=true" --filter "label!=org.testcontainers.reuse.enable=true" || true
docker network prune -f --filter "label=org.testcontainers=true" || true
docker volume prune -f --filter "label=org.testcontainers=true" --filter "label!=org.testcontainers.reuse.enable=true" || true
diff --git a/.github/workflows/maven-central-publish.yaml b/.github/workflows/maven-central-publish.yaml
index c8a4b1c2f..5c938563b 100644
--- a/.github/workflows/maven-central-publish.yaml
+++ b/.github/workflows/maven-central-publish.yaml
@@ -47,7 +47,7 @@ jobs:
steps:
- name: Checkout code
- uses: actions/checkout@v5.0.0
+ uses: actions/checkout@v5.0.1
with:
fetch-depth: 0
@@ -68,35 +68,12 @@ jobs:
with:
java-version: ${{ steps.libs-versions.outputs.java-version }}
distribution: 'temurin'
- cache: gradle
-
- - name: Cache Gradle wrapper
- uses: actions/cache@v4
- with:
- path: |
- ~/.gradle/wrapper
- key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}
- restore-keys: |
- ${{ runner.os }}-gradle-wrapper-
-
- - name: Cache Gradle dependencies
- uses: actions/cache@v4
- with:
- path: |
- ~/.gradle/caches
- ~/.gradle/jdks
- ~/.gradle/buildOutputCleanup
- ~/.gradle/kotlin
- ~/.konan
- key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties', 'gradle/libs.versions.toml') }}
- restore-keys: |
- ${{ runner.os }}-gradle-
- save-always: true
- name: Setup Gradle
- uses: gradle/actions/setup-gradle@v4
+ uses: gradle/actions/setup-gradle@v5.0.0
with:
gradle-version: ${{ steps.libs-versions.outputs.gradle-version }}
+ cache-encryption-key: ${{ secrets.GRADLE_CACHE_ENCRYPTION_KEY }}
- name: Grant execute permission
run: chmod +x gradlew
@@ -118,33 +95,10 @@ jobs:
local artifact="$2"
local version="$3"
- # Method 1: Check via Maven Central REST API
- local rest_url="https://repo1.maven.org/maven2/${group//\.//}/${artifact}/${version}/"
- echo "Checking REST API: $rest_url" >> $GITHUB_STEP_SUMMARY
-
- if curl -f -s --max-time 15 --head "$rest_url" > /dev/null 2>&1; then
- echo "Found via REST API: $artifact-$version exists" >> $GITHUB_STEP_SUMMARY
- return 0
- fi
-
- # Additional check: try to access the POM file specifically
local pom_url="https://repo1.maven.org/maven2/${group//\.//}/${artifact}/${version}/${artifact}-${version}.pom"
- echo "Checking POM file: $pom_url" >> $GITHUB_STEP_SUMMARY
- if curl -f -s --max-time 15 --head "$pom_url" > /dev/null 2>&1; then
- echo "Found via POM check: $artifact-$version exists" >> $GITHUB_STEP_SUMMARY
- return 0
- fi
-
- # Method 2: Check via Search API
- local search_url="https://search.maven.org/solrsearch/select?q=g:\"${group}\"+AND+a:\"${artifact}\"+AND+v:\"${version}\"&rows=1&wt=json"
- echo "Checking Search API: $search_url" >> $GITHUB_STEP_SUMMARY
-
- local response=$(curl -f -s --max-time 15 "$search_url" 2>/dev/null || echo '{"response":{"numFound":0}}')
- local found=$(echo "$response" | jq -r '.response.numFound' 2>/dev/null || echo "0")
-
- if [[ "$found" -gt 0 ]]; then
- echo "Found via Search API: $artifact-$version exists" >> $GITHUB_STEP_SUMMARY
+ if curl -f -s --max-time 10 --head "$pom_url" > /dev/null 2>&1; then
+ echo "Found: $artifact-$version exists on Maven Central" >> $GITHUB_STEP_SUMMARY
return 0
fi
@@ -288,7 +242,7 @@ jobs:
steps:
- name: Checkout code
- uses: actions/checkout@v5.0.0
+ uses: actions/checkout@v6.0.0
with:
fetch-depth: 0
@@ -297,33 +251,12 @@ jobs:
with:
java-version: ${{ needs.pre-publish-validation.outputs.java-version }}
distribution: 'temurin'
- cache: gradle
-
- - name: Cache Gradle wrapper
- uses: actions/cache@v4
- with:
- path: |
- ~/.gradle/wrapper
- key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}
- restore-keys: |
- ${{ runner.os }}-gradle-wrapper-
-
- - name: Cache Gradle dependencies
- uses: actions/cache@v4
- with:
- path: |
- ~/.gradle/caches
- ~/.gradle/jdks
- ~/.gradle/buildOutputCleanup
- ~/.konan
- key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties', 'gradle/libs.versions.toml') }}
- restore-keys: |
- ${{ runner.os }}-gradle-
- name: Setup Gradle
- uses: gradle/actions/setup-gradle@v4
+ uses: gradle/actions/setup-gradle@v5.0.0
with:
gradle-version: ${{ needs.pre-publish-validation.outputs.gradle-version }}
+ cache-encryption-key: ${{ secrets.GRADLE_CACHE_ENCRYPTION_KEY }}
cache-cleanup: on-success
- name: Grant execute permission
@@ -334,36 +267,20 @@ jobs:
run: |
echo "Executing publication dry run..."
- # Aggressively clean build services to prevent duplicate entries
./gradlew --stop || true
- rm -rf ~/.gradle/daemon/ || true
- rm -rf ~/.gradle/caches/ || true
- rm -rf .gradle/ || true
- find . -name "build" -type d -exec rm -rf {} + || true
-
- # Clean Maven local repository for this project's artifacts to prevent conflicts
rm -rf ~/.m2/repository/io/github/truenine/ || true
- # First clean everything
- ./gradlew clean \
+ ./gradlew clean publishToMavenLocal \
--no-daemon \
--no-parallel \
- --no-build-cache \
- --no-configuration-cache
-
- # Then run dry publication with additional safeguards
- ./gradlew publishToMavenLocal \
- --no-daemon \
- --no-parallel \
- --no-build-cache \
- --no-configuration-cache \
- --rerun-tasks \
+ --build-cache \
+ --configuration-cache \
--max-workers=1 \
-PsigningInMemoryKeyId="${{ secrets.GPG_KEY_ID }}" \
-PsigningInMemoryKey="${{ secrets.GPG_PRIVATE_KEY }}" \
-PsigningInMemoryKeyPassword="${{ secrets.GPG_PASSPHRASE }}"
env:
- GRADLE_OPTS: "${{ env.GRADLE_OPTS }} ${{ env.JVM_OPTS }}"
+ GRADLE_OPTS: "${{ env.GRADLE_OPTS }}"
CI: true
- name: Pre-publish validation
@@ -391,100 +308,42 @@ jobs:
echo "Validation passed" >> $GITHUB_STEP_SUMMARY
- name: Final version existence check
- if: github.event.inputs.dry_run != 'true'
+ if: github.event.inputs.dry_run != 'true' && github.event.inputs.force_publish != 'true'
run: |
- echo "Performing final version existence check before publishing..."
+ echo "Performing final version existence check..."
version="${{ needs.pre-publish-validation.outputs.version }}"
- group="io.github.truenine"
- force_publish="${{ github.event.inputs.force_publish }}"
+ pom_url="https://repo1.maven.org/maven2/io/github/truenine/composeserver-bom/${version}/composeserver-bom-${version}.pom"
- # Double-check that version doesn't exist unless force_publish is enabled
- if [[ "$force_publish" != "true" ]]; then
- echo "Checking if version $version exists on Maven Central one more time..."
-
- # Check a few core artifacts to be absolutely sure
- core_artifacts=("composeserver-shared" "composeserver-cacheable" "composeserver-bom")
- for artifact in "${core_artifacts[@]}"; do
- pom_url="https://repo1.maven.org/maven2/${group//\.//}/${artifact}/${version}/${artifact}-${version}.pom"
- echo "Final check for: $pom_url"
-
- if curl -f -s --max-time 15 --head "$pom_url" > /dev/null 2>&1; then
- echo "ABORT: Version $version already exists on Maven Central!"
- echo "Found existing artifact: $artifact-$version"
- echo "If you want to force republish, use force_publish: true"
- exit 1
- fi
- done
- echo "Final check passed - version $version does not exist on Maven Central"
- else
- echo "Force publish enabled - skipping final version existence check"
+ if curl -f -s --max-time 8 --head "$pom_url" > /dev/null 2>&1; then
+ echo "ABORT: Version $version already exists on Maven Central!"
+ exit 1
fi
+
+ echo "Final check passed - version $version does not exist"
- name: Publish to Maven Central
if: github.event.inputs.dry_run != 'true'
uses: nick-fields/retry@v3
with:
- timeout_minutes: 20
+ timeout_minutes: 15
max_attempts: 2
- retry_wait_seconds: 60
+ retry_wait_seconds: 30
shell: bash
command: |
- echo "Starting publication to Maven Central (attempt: ${{ github.run_attempt }})..."
-
+ echo "Starting publication to Maven Central..."
set -euo pipefail
- handle_error() {
- local exit_code=$1
- local error_context="$2"
-
- echo "Publication failed (exit code: $exit_code)" >> $GITHUB_STEP_SUMMARY
- echo "" >> $GITHUB_STEP_SUMMARY
-
- case $exit_code in
- 1|2) echo "**Error type:** Build or configuration error" >> $GITHUB_STEP_SUMMARY ;;
- 3|4) echo "**Error type:** GPG signing failed" >> $GITHUB_STEP_SUMMARY ;;
- 5|6) echo "**Error type:** Maven Central connection failed" >> $GITHUB_STEP_SUMMARY ;;
- *) echo "**Error type:** Unknown error" >> $GITHUB_STEP_SUMMARY ;;
- esac
-
- echo "**Error context:** $error_context" >> $GITHUB_STEP_SUMMARY
- exit $exit_code
- }
-
- trap 'handle_error $? "Publication execution phase"' ERR
-
- echo "Verifying publication credentials..." >> $GITHUB_STEP_SUMMARY
- echo "Cleaning build services to prevent duplicate entries..." >> $GITHUB_STEP_SUMMARY
-
- # Stop all running Gradle daemons and aggressively clean build services
./gradlew --stop || true
- rm -rf ~/.gradle/daemon/ || true
- rm -rf ~/.gradle/caches/ || true
- rm -rf .gradle/ || true
- find . -name "build" -type d -exec rm -rf {} + || true
-
- # Clean Maven local repository for this project's artifacts to prevent conflicts
rm -rf ~/.m2/repository/io/github/truenine/ || true
- echo "Cleaned build services and Maven local repository" >> $GITHUB_STEP_SUMMARY
-
- echo "Starting clean publication process..." >> $GITHUB_STEP_SUMMARY
-
- # First clean everything to ensure no stale artifacts
- ./gradlew clean \
- --no-daemon \
- --no-parallel \
- --no-build-cache \
- --no-configuration-cache
+ echo "Publishing to Maven Central..." >> $GITHUB_STEP_SUMMARY
- # Then publish with fresh state and additional safeguards
- ./gradlew publishToMavenCentral \
+ ./gradlew clean publishToMavenCentral \
--no-daemon \
--no-parallel \
- --no-build-cache \
- --no-configuration-cache \
- --rerun-tasks \
+ --build-cache \
+ --configuration-cache \
--max-workers=1 \
-PsigningInMemoryKeyId="${{ secrets.GPG_KEY_ID }}" \
-PsigningInMemoryKey="${{ secrets.GPG_PRIVATE_KEY }}" \
@@ -494,7 +353,7 @@ jobs:
echo "Successfully published to Maven Central" >> $GITHUB_STEP_SUMMARY
env:
- GRADLE_OPTS: "${{ env.GRADLE_OPTS }} ${{ env.JVM_OPTS }}"
+ GRADLE_OPTS: "${{ env.GRADLE_OPTS }}"
MAVENCENTRAL_USERNAME: ${{ secrets.MAVENCENTRAL_USERNAME }}
MAVENCENTRAL_PASSWORD: ${{ secrets.MAVENCENTRAL_PASSWORD }}
GPG_KEY_ID: ${{ secrets.GPG_KEY_ID }}
@@ -539,7 +398,7 @@ jobs:
steps:
- name: Checkout code
- uses: actions/checkout@v5.0.0
+ uses: actions/checkout@v6.0.0
with:
fetch-depth: 0
diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml
index 01cfc8eae..bf2d3ab41 100644
--- a/.idea/codeStyles/Project.xml
+++ b/.idea/codeStyles/Project.xml
@@ -9,6 +9,16 @@
+
+
+
+
+
+
+
+
+
+
@@ -145,6 +155,13 @@
+
+
+
+
+
+
+
@@ -157,4 +174,4 @@
-
+
\ No newline at end of file
diff --git a/.idea/compose-server.iml b/.idea/compose-server.iml
index d2c60487e..9895a2175 100644
--- a/.idea/compose-server.iml
+++ b/.idea/compose-server.iml
@@ -2,26 +2,37 @@
-
-
-
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
+
\ No newline at end of file
diff --git a/.idea/modules.xml b/.idea/modules.xml
index 49a2baef6..5b5c0bdc8 100644
--- a/.idea/modules.xml
+++ b/.idea/modules.xml
@@ -3,7 +3,7 @@
-
+
diff --git a/.vscode/settings.json b/.vscode/settings.json
index c8ea64a07..9902093a4 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -1,25 +1,9 @@
{
- "explorer.excludeGitIgnore": true,
- "files.exclude": {
- "**/.playwright-mcp": true,
- "**/pnpm-lock.yaml": true,
- "**/.env": true
- },
- "search.exclude": {
- "**/.gradle": true,
- "**/build": true
- },
- "explorer.fileNesting.enabled": true,
- "explorer.fileNesting.expand": false,
- "explorer.fileNesting.patterns": {
- "build.gradle.kts": "settings.gradle.kts, gradlew, gradlew.bat, gradle.properties",
- "README.md": "LICENSE, TODO.md, .editorconfig, CODEBUDDY.md, .gitignore, .gitattributes",
- ".gitignore": "LICENSE, TODO.md, .editorconfig, CODEBUDDY.md, .gitattributes",
- ".env.example": ".env, .env.*",
- "AGENTS.md": "CLAUDE.md"
- },
- "[markdown]": {
- "editor.wordWrap": "off"
- },
- "workbench.sideBar.location": "right"
+ "workbench.colorCustomizations": {
+ "titleBar.activeBackground": "#d530c41a",
+ "titleBar.activeForeground": "#ffffff",
+ "titleBar.inactiveBackground": "#b625a81a",
+ "titleBar.inactiveForeground": "#f3c4ee",
+ "titleBar.border": "#d530c41a"
+ }
}
diff --git a/build-logic/src/main/kotlin/buildlogic.jacoco-conventions.gradle.kts b/build-logic/src/main/kotlin/buildlogic.jacoco-conventions.gradle.kts
index 79c629510..0e023239d 100644
--- a/build-logic/src/main/kotlin/buildlogic.jacoco-conventions.gradle.kts
+++ b/build-logic/src/main/kotlin/buildlogic.jacoco-conventions.gradle.kts
@@ -11,7 +11,7 @@ tasks.withType().configureEach {
tasks.withType().configureEach {
dependsOn(tasks.withType())
- // 明确声明对Spotless任务的依赖关系以避免隐式依赖问题
+ // Explicitly declare the dependency on Spotless tasks to avoid implicit dependency issues
mustRunAfter(tasks.withType())
reports {
diff --git a/build-logic/src/main/kotlin/buildlogic.java-conventions.gradle.kts b/build-logic/src/main/kotlin/buildlogic.java-conventions.gradle.kts
index 8be0359ce..0257b07a5 100644
--- a/build-logic/src/main/kotlin/buildlogic.java-conventions.gradle.kts
+++ b/build-logic/src/main/kotlin/buildlogic.java-conventions.gradle.kts
@@ -10,6 +10,11 @@ plugins {
group = libs.versions.group.get()
version = libs.versions.project.get()
+dependencies {
+ implementation(enforcedPlatform(libs.io.netty.netty.bom))
+ implementation(enforcedPlatform(libs.tools.jackson.jackson.bom))
+}
+
configurations.all {
resolutionStrategy {
dependencySubstitution {
@@ -37,14 +42,14 @@ java {
tasks.withType {
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
- // 只对主 jar 任务设置空的 classifier 和排除源码文件
+ // Only set an empty classifier and exclude sources for the main jar task
if (name == "jar") {
archiveClassifier = ""
- // 确保主 jar 任务排除源码文件(只包含编译后的 .class 文件)
+ // Ensure the main jar task excludes source files (only compiled .class files)
exclude("**/*.kt")
}
- // 所有 jar 任务都包含 LICENSE 文件
+ // Include the LICENSE file in all jar tasks
from(rootProject.file("LICENSE")) {
into("META-INF")
}
diff --git a/build-logic/src/main/kotlin/buildlogic.kotlin-conventions.gradle.kts b/build-logic/src/main/kotlin/buildlogic.kotlin-conventions.gradle.kts
index 9aac28983..a0ca90786 100644
--- a/build-logic/src/main/kotlin/buildlogic.kotlin-conventions.gradle.kts
+++ b/build-logic/src/main/kotlin/buildlogic.kotlin-conventions.gradle.kts
@@ -22,16 +22,16 @@ kotlin {
jvmToolchain(libs.versions.java.get().toInt())
}
-// 确保 kotlin_module 文件被正确生成
+// Ensure the kotlin_module file is generated correctly
tasks.withType {
compilerOptions {
- // 确保模块信息被正确生成
+ // Ensure the module metadata is generated correctly
javaParameters.set(true)
}
}
-// 配置 jar 任务包含 LICENSE 文件
+// Configure the jar task to include the LICENSE file
tasks.withType {
from(rootProject.file("LICENSE")) {
into("META-INF")
diff --git a/build-logic/src/main/kotlin/buildlogic.kotlinspring-conventions.gradle.kts b/build-logic/src/main/kotlin/buildlogic.kotlinspring-conventions.gradle.kts
index 374f36890..e20907abe 100644
--- a/build-logic/src/main/kotlin/buildlogic.kotlinspring-conventions.gradle.kts
+++ b/build-logic/src/main/kotlin/buildlogic.kotlinspring-conventions.gradle.kts
@@ -10,7 +10,7 @@ dependencies {
kapt(libs.org.springframework.boot.spring.boot.configuration.processor)
}
-// 配置 jar 任务包含 LICENSE 文件
+// Configure the jar task to include the LICENSE file
tasks.withType {
from(rootProject.file("LICENSE")) {
into("META-INF")
diff --git a/build-logic/src/main/kotlin/buildlogic.kotlinspring-test-conventions.gradle.kts b/build-logic/src/main/kotlin/buildlogic.kotlinspring-test-conventions.gradle.kts
index 08c3ffd63..0c27a98b0 100644
--- a/build-logic/src/main/kotlin/buildlogic.kotlinspring-test-conventions.gradle.kts
+++ b/build-logic/src/main/kotlin/buildlogic.kotlinspring-test-conventions.gradle.kts
@@ -53,10 +53,10 @@ kotlin {
jvmToolchain(libs.versions.java.get().toInt())
}
-// 确保 kotlin_module 文件被正确生成
+// Ensure the kotlin_module file is generated correctly
tasks.withType {
compilerOptions {
- // 确保模块信息被正确生成
+ // Ensure the module metadata is generated correctly
javaParameters.set(true)
}
}
@@ -64,7 +64,7 @@ tasks.withType {
tasks.withType {
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
- // 配置 jar 任务包含 LICENSE 文件
+ // Configure the jar task to include the LICENSE file
from(rootProject.file("LICENSE")) {
into("META-INF")
}
diff --git a/build-logic/src/main/kotlin/buildlogic.loadenv-conventions.gradle.kts b/build-logic/src/main/kotlin/buildlogic.loadenv-conventions.gradle.kts
deleted file mode 100644
index aa4b1c36d..000000000
--- a/build-logic/src/main/kotlin/buildlogic.loadenv-conventions.gradle.kts
+++ /dev/null
@@ -1,28 +0,0 @@
-// 直接实现 dotenv 功能,避免插件依赖
-fun loadDotenv() {
- val envFile = rootProject.file(".env")
- if (envFile.exists()) {
- envFile.readLines().forEach { line ->
- val trimmedLine = line.trim()
- if (trimmedLine.isNotEmpty() && !trimmedLine.startsWith("#")) {
- val parts = trimmedLine.split("=", limit = 2)
- if (parts.size == 2) {
- val key = parts[0].trim()
- val value = parts[1].trim().removeSurrounding("\"").removeSurrounding("'")
- if (key.isNotEmpty() && value.isNotEmpty()) {
- // 设置到所有任务的环境变量中
- tasks.withType { environment(key, value) }
- tasks.withType { environment(key, value) }
- logger.debug("Loaded environment variable: $key")
- }
- }
- }
- }
- logger.info("Loaded .env file from: ${envFile.absolutePath}")
- } else {
- logger.warn(".env file not found at: ${envFile.absolutePath}")
- }
-}
-
-// 加载 dotenv 配置
-loadDotenv()
diff --git a/build-logic/src/main/kotlin/buildlogic.publish-conventions.gradle.kts b/build-logic/src/main/kotlin/buildlogic.publish-conventions.gradle.kts
index eefe638ba..fd9398aaf 100644
--- a/build-logic/src/main/kotlin/buildlogic.publish-conventions.gradle.kts
+++ b/build-logic/src/main/kotlin/buildlogic.publish-conventions.gradle.kts
@@ -14,13 +14,13 @@ mavenPublishing {
publishToMavenCentral(automaticRelease = true)
signAllPublications()
- // 根据项目类型配置发布方式
+ // Configure publishing strategy based on the project type
when {
- // 优先检测 version-catalog 插件
+ // Check for the version-catalog plugin first
project.plugins.hasPlugin("version-catalog") -> {
configure(VersionCatalog())
}
- // 检测 gradle plugin 相关插件
+ // Detect plugins related to Gradle plugin projects
project.plugins.hasPlugin("java-gradle-plugin") ||
project.plugins.hasPlugin("kotlin-dsl") -> {
configure(
@@ -30,7 +30,7 @@ mavenPublishing {
)
)
}
- // 检测 Kotlin JVM 插件(包括间接应用)
+ // Detect the Kotlin JVM plugin (including indirect application)
project.plugins.hasPlugin("org.jetbrains.kotlin.jvm") ||
project.plugins.hasPlugin("buildlogic.kotlin-conventions") ||
project.plugins.hasPlugin("buildlogic.kotlinspring-conventions") -> {
@@ -66,7 +66,7 @@ mavenPublishing {
developer {
id = "TrueNine"
- name = "赵日天"
+ name = "Zhao Ritian"
url = "https://github.com/TrueNine"
organizationUrl = "https://github.com/TrueNine"
timezone = "GMT+8"
@@ -76,7 +76,7 @@ mavenPublishing {
}
developer {
id = "t_teng"
- name = "滕腾"
+ name = "Teng Teng"
organization = "Nanning, Guangxi, China Yan100 technology Ltd"
roles = listOf("Sponsor", "Founder")
timezone = "GMT+8"
@@ -116,7 +116,7 @@ mavenPublishing {
url = "https://github.com/TrueNine/compose-server/issues"
}
properties = mutableMapOf("project.build.sourceEncoding" to "UTF-8").apply {
- // 只有在项目应用了 Java 插件且配置了 toolchain 时才设置 Java 版本相关属性
+ // Only set Java version properties when the project applies the Java plugin and configures a toolchain
extensions.findByType()?.toolchain?.languageVersion?.orNull?.asInt()?.toString()?.let { javaVersion ->
put("java.version", javaVersion)
put("maven.compiler.source", javaVersion)
diff --git a/build-logic/src/main/kotlin/buildlogic.spotless-conventions.gradle.kts b/build-logic/src/main/kotlin/buildlogic.spotless-conventions.gradle.kts
index ff024242d..a3d72e38b 100644
--- a/build-logic/src/main/kotlin/buildlogic.spotless-conventions.gradle.kts
+++ b/build-logic/src/main/kotlin/buildlogic.spotless-conventions.gradle.kts
@@ -12,7 +12,7 @@ spotless {
it.setRemoveUnusedImports(true)
}
}
- // 只在项目应用了 Kotlin 插件时才配置 Kotlin 规则
+ // Configure Kotlin formatting rules only when a Kotlin plugin is applied to the project
if (plugins.hasPlugin("org.jetbrains.kotlin.jvm") ||
plugins.hasPlugin("org.jetbrains.kotlin.android") ||
plugins.hasPlugin("org.jetbrains.kotlin.multiplatform")
diff --git a/cacheable/src/main/kotlin/io/github/truenine/composeserver/cacheable/autoconfig/CaffeineCacheAutoConfiguration.kt b/cacheable/src/main/kotlin/io/github/truenine/composeserver/cacheable/autoconfig/CaffeineCacheAutoConfiguration.kt
index 2d79d87e7..5e9947a6f 100644
--- a/cacheable/src/main/kotlin/io/github/truenine/composeserver/cacheable/autoconfig/CaffeineCacheAutoConfiguration.kt
+++ b/cacheable/src/main/kotlin/io/github/truenine/composeserver/cacheable/autoconfig/CaffeineCacheAutoConfiguration.kt
@@ -3,18 +3,18 @@ package io.github.truenine.composeserver.cacheable.autoconfig
import com.github.benmanes.caffeine.cache.AsyncCache
import com.github.benmanes.caffeine.cache.Caffeine
import io.github.truenine.composeserver.consts.ICacheNames
-import io.github.truenine.composeserver.slf4j
+import io.github.truenine.composeserver.logger
import java.time.Duration
import org.springframework.cache.caffeine.CaffeineCacheManager
import org.springframework.context.annotation.Bean
import org.springframework.context.annotation.Configuration
import org.springframework.context.annotation.Primary
-private val log = slf4j(CaffeineCacheAutoConfiguration::class)
+private val log = logger()
@Configuration
class CaffeineCacheAutoConfiguration {
- private fun create(d: Duration): AsyncCache {
+ private fun create(d: Duration): AsyncCache {
return Caffeine.newBuilder().recordStats().expireAfterWrite(d).buildAsync()
}
@@ -41,7 +41,7 @@ class CaffeineCacheAutoConfiguration {
@Primary
@Bean(name = [ICacheNames.ICaffeine.CACHE_MANAGER])
fun caffeineCacheManager(): CaffeineCacheManager {
- log.debug("配置 CaffeineCache 缓存")
+ log.debug("Configure CaffeineCache cache")
val s = CaffeineCacheManager()
cacheMap.forEach { (k, v) -> s.registerCustomCache(k, v) }
return s
diff --git a/cacheable/src/main/kotlin/io/github/truenine/composeserver/cacheable/autoconfig/RedisJsonSerializerAutoConfiguration.kt b/cacheable/src/main/kotlin/io/github/truenine/composeserver/cacheable/autoconfig/RedisJsonSerializerAutoConfiguration.kt
index d826caf9b..23a3ab7e1 100644
--- a/cacheable/src/main/kotlin/io/github/truenine/composeserver/cacheable/autoconfig/RedisJsonSerializerAutoConfiguration.kt
+++ b/cacheable/src/main/kotlin/io/github/truenine/composeserver/cacheable/autoconfig/RedisJsonSerializerAutoConfiguration.kt
@@ -1,7 +1,5 @@
package io.github.truenine.composeserver.cacheable.autoconfig
-import com.fasterxml.jackson.databind.DeserializationFeature
-import com.fasterxml.jackson.databind.ObjectMapper
import io.github.truenine.composeserver.consts.ICacheNames
import io.github.truenine.composeserver.depend.jackson.autoconfig.JacksonAutoConfiguration
import io.github.truenine.composeserver.logger
@@ -14,26 +12,28 @@ import org.springframework.data.redis.cache.RedisCacheConfiguration
import org.springframework.data.redis.cache.RedisCacheManager
import org.springframework.data.redis.connection.RedisConnectionFactory
import org.springframework.data.redis.core.RedisTemplate
-import org.springframework.data.redis.serializer.GenericJackson2JsonRedisSerializer
+import org.springframework.data.redis.serializer.GenericJacksonJsonRedisSerializer
import org.springframework.data.redis.serializer.RedisSerializationContext
import org.springframework.data.redis.serializer.StringRedisSerializer
+import tools.jackson.databind.DeserializationFeature
+import tools.jackson.databind.json.JsonMapper
/**
- * redis 缓存组件配置
+ * Redis cache component configuration
*
* @author TrueNine
* @since 2023-02-20
*/
@Configuration
@ConditionalOnBean(RedisConnectionFactory::class)
-class RedisJsonSerializerAutoConfiguration(@Qualifier(JacksonAutoConfiguration.NON_IGNORE_OBJECT_MAPPER_BEAN_NAME) objectMapper: ObjectMapper) {
+class RedisJsonSerializerAutoConfiguration(@Qualifier(JacksonAutoConfiguration.NON_IGNORE_OBJECT_MAPPER_BEAN_NAME) jsonMapper: JsonMapper) {
companion object {
@JvmStatic private val log = logger()
private const val VIRTUAL_THREAD_REDIS_FACTORY_BEAN_NAME = "redisConnectionFactoryVirtualThreads"
}
private val jsr =
- GenericJackson2JsonRedisSerializer(objectMapper).apply { configure { it.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false) } }
+ GenericJacksonJsonRedisSerializer.builder().apply { customize { it.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false) } }.build()
private val srs = StringRedisSerializer()
private val cacheManagerConfig =
diff --git a/cacheable/src/test/kotlin/io/github/truenine/composeserver/cacheable/caffeine/CaffeineCacheManagerTest.kt b/cacheable/src/test/kotlin/io/github/truenine/composeserver/cacheable/caffeine/CaffeineCacheManagerTest.kt
index 474296615..c21d5a401 100644
--- a/cacheable/src/test/kotlin/io/github/truenine/composeserver/cacheable/caffeine/CaffeineCacheManagerTest.kt
+++ b/cacheable/src/test/kotlin/io/github/truenine/composeserver/cacheable/caffeine/CaffeineCacheManagerTest.kt
@@ -23,7 +23,7 @@ private val log = slf4j()
class CaffeineCacheManagerTest {
@Resource lateinit var cacheManager: CacheManager
- /** 首选必须为 caffeine 缓存 */
+ /** Primary cache manager must be a Caffeine cache */
@BeforeTest
fun `before check is caffeine cache manager`() {
assertNotNull(cacheManager)
diff --git a/data/data-extract/src/main/kotlin/io/github/truenine/composeserver/data/extract/api/ICnNbsAddressApi.kt b/data/data-extract/src/main/kotlin/io/github/truenine/composeserver/data/extract/api/ICnNbsAddressApi.kt
index d72115b88..84b066980 100644
--- a/data/data-extract/src/main/kotlin/io/github/truenine/composeserver/data/extract/api/ICnNbsAddressApi.kt
+++ b/data/data-extract/src/main/kotlin/io/github/truenine/composeserver/data/extract/api/ICnNbsAddressApi.kt
@@ -6,12 +6,13 @@ import org.springframework.web.service.annotation.GetExchange
import org.springframework.web.service.annotation.HttpExchange
/**
- * # 中华人民共和国国家统计局 地址数据接口
- * > 地址数据 最早统计到 2009 年
+ * National Bureau of Statistics of China address data API.
+ *
+ * Address data is available starting from year 2009.
*
* @version 2023
*/
-@Deprecated(message = "统计局接口已经挂掉")
+@Deprecated(message = "NBS address API is no longer available")
@HttpExchange("https://www.stats.gov.cn/sj/tjbz/tjyqhdmhcxhfdm")
interface ICnNbsAddressApi {
companion object {
diff --git a/data/data-extract/src/main/kotlin/io/github/truenine/composeserver/data/extract/autoconfig/ApiExchangesAutoConfiguration.kt b/data/data-extract/src/main/kotlin/io/github/truenine/composeserver/data/extract/autoconfig/ApiExchangesAutoConfiguration.kt
index 178d14a1c..443c04b6a 100644
--- a/data/data-extract/src/main/kotlin/io/github/truenine/composeserver/data/extract/autoconfig/ApiExchangesAutoConfiguration.kt
+++ b/data/data-extract/src/main/kotlin/io/github/truenine/composeserver/data/extract/autoconfig/ApiExchangesAutoConfiguration.kt
@@ -20,7 +20,7 @@ private val log = slf4j()
class ApiExchangesAutoConfiguration {
@Bean
fun cnNbsAddressApi(): ICnNbsAddressApi {
- log.debug("创建 中国统计局地址 api")
+ log.debug("Create National Bureau of Statistics address API client")
val sslCtx = SslContextBuilder.forClient().trustManager(InsecureTrustManagerFactory.INSTANCE).build()
val unsafeConnector =
ReactorClientHttpConnector(HttpClient.create().secure { t -> t.sslContext(sslCtx) }.compress(true).resolver(DefaultAddressResolverGroup.INSTANCE))
diff --git a/data/data-extract/src/main/kotlin/io/github/truenine/composeserver/data/extract/service/IChinaFirstNameService.kt b/data/data-extract/src/main/kotlin/io/github/truenine/composeserver/data/extract/service/IChinaFirstNameService.kt
index d4358aaa2..751938c25 100644
--- a/data/data-extract/src/main/kotlin/io/github/truenine/composeserver/data/extract/service/IChinaFirstNameService.kt
+++ b/data/data-extract/src/main/kotlin/io/github/truenine/composeserver/data/extract/service/IChinaFirstNameService.kt
@@ -2,522 +2,61 @@ package io.github.truenine.composeserver.data.extract.service
interface IChinaFirstNameService {
companion object {
- fun matches(firstName: String): Boolean = firstName.length in 1..2 && firstName in CHINA_FIRST_NAMES
+ fun matches(firstName: String): Boolean = firstName.isNotBlank() && firstName in CHINA_FIRST_NAMES
val CHINA_FIRST_NAMES: Array
get() =
arrayOf(
- "赵",
- "钱",
- "孙",
- "李",
- "周",
- "吴",
- "郑",
- "王",
- "冯",
- "陈",
- "褚",
- "卫",
- "蒋",
- "沈",
- "韩",
- "杨",
- "朱",
- "秦",
- "尤",
- "许",
- "何",
- "吕",
- "施",
- "张",
- "孔",
- "曹",
- "严",
- "华",
- "金",
- "魏",
- "陶",
- "姜",
- "戚",
- "谢",
- "邹",
- "喻",
- "柏",
- "水",
- "窦",
- "章",
- "云",
- "苏",
- "潘",
- "葛",
- "奚",
- "范",
- "彭",
- "郎",
- "鲁",
- "韦",
- "昌",
- "马",
- "苗",
- "凤",
- "花",
- "方",
- "俞",
- "任",
- "袁",
- "柳",
- "酆",
- "鲍",
- "史",
- "唐",
- "费",
- "廉",
- "岑",
- "薛",
- "雷",
- "贺",
- "倪",
- "汤",
- "滕",
- "殷",
- "罗",
- "毕",
- "郝",
- "邬",
- "安",
- "常",
- "乐",
- "于",
- "时",
- "傅",
- "皮",
- "卞",
- "齐",
- "康",
- "伍",
- "余",
- "元",
- "卜",
- "顾",
- "孟",
- "平",
- "黄",
- "和",
- "穆",
- "萧",
- "尹",
- "姚",
- "邵",
- "湛",
- "汪",
- "祁",
- "毛",
- "禹",
- "狄",
- "米",
- "贝",
- "明",
- "臧",
- "计",
- "伏",
- "成",
- "戴",
- "谈",
- "宋",
- "茅",
- "庞",
- "熊",
- "纪",
- "舒",
- "屈",
- "项",
- "祝",
- "董",
- "梁",
- "杜",
- "阮",
- "蓝",
- "闵",
- "席",
- "季",
- "麻",
- "强",
- "贾",
- "路",
- "娄",
- "危",
- "江",
- "童",
- "颜",
- "郭",
- "梅",
- "盛",
- "林",
- "刁",
- "钟",
- "徐",
- "邱",
- "骆",
- "高",
- "夏",
- "蔡",
- "田",
- "樊",
- "胡",
- "凌",
- "霍",
- "虞",
- "万",
- "支",
- "柯",
- "昝",
- "管",
- "卢",
- "莫",
- "经",
- "房",
- "裘",
- "缪",
- "干",
- "解",
- "应",
- "宗",
- "丁",
- "宣",
- "贲",
- "邓",
- "郁",
- "单",
- "原",
- "杭",
- "洪",
- "包",
- "诸",
- "左",
- "石",
- "崔",
- "吉",
- "钮",
- "龚",
- "程",
- "嵇",
- "邢",
- "滑",
- "裴",
- "陆",
- "荣",
- "翁",
- "荀",
- "羊",
- "於",
- "惠",
- "甄",
- "曲",
- "家",
- "封",
- "芮",
- "羿",
- "储",
- "靳",
- "汲",
- "邴",
- "糜",
- "松",
- "井",
- "段",
- "富",
- "巫",
- "乌",
- "焦",
- "巴",
- "弓",
- "牧",
- "隗",
- "山",
- "谷",
- "车",
- "侯",
- "宓",
- "蓬",
- "全",
- "郗",
- "班",
- "仰",
- "秋",
- "仲",
- "伊",
- "宫",
- "宁",
- "仇",
- "栾",
- "暴",
- "甘",
- "钭",
- "厉",
- "戎",
- "祖",
- "武",
- "符",
- "刘",
- "景",
- "詹",
- "束",
- "龙",
- "叶",
- "幸",
- "司",
- "韶",
- "郜",
- "黎",
- "蓟",
- "薄",
- "印",
- "宿",
- "白",
- "怀",
- "蒲",
- "邰",
- "从",
- "鄂",
- "索",
- "咸",
- "籍",
- "赖",
- "卓",
- "蔺",
- "屠",
- "蒙",
- "池",
- "乔",
- "阴",
- "胥",
- "能",
- "苍",
- "双",
- "闻",
- "莘",
- "党",
- "翟",
- "谭",
- "贡",
- "劳",
- "逄",
- "姬",
- "申",
- "扶",
- "堵",
- "冉",
- "宰",
- "郦",
- "雍",
- "郤",
- "璩",
- "桑",
- "桂",
- "濮",
- "牛",
- "寿",
- "通",
- "边",
- "扈",
- "燕",
- "冀",
- "郏",
- "浦",
- "尚",
- "农",
- "温",
- "别",
- "庄",
- "晏",
- "柴",
- "瞿",
- "阎",
- "充",
- "慕",
- "连",
- "茹",
- "习",
- "宦",
- "艾",
- "鱼",
- "容",
- "向",
- "古",
- "易",
- "慎",
- "戈",
- "廖",
- "庾",
- "终",
- "暨",
- "居",
- "衡",
- "步",
- "都",
- "耿",
- "满",
- "弘",
- "匡",
- "国",
- "文",
- "寇",
- "广",
- "禄",
- "阙",
- "东",
- "欧",
- "殳",
- "沃",
- "利",
- "蔚",
- "越",
- "夔",
- "隆",
- "师",
- "巩",
- "厍",
- "聂",
- "晁",
- "勾",
- "敖",
- "融",
- "冷",
- "訾",
- "辛",
- "阚",
- "那",
- "简",
- "饶",
- "空",
- "曾",
- "母",
- "沙",
- "乜",
- "养",
- "鞠",
- "须",
- "丰",
- "巢",
- "关",
- "蒯",
- "相",
- "查",
- "后",
- "荆",
- "红",
- "游",
- "竺",
- "权",
- "逯",
- "盖",
- "益",
- "桓",
- "公",
- "晋",
- "楚",
- "闫",
- "法",
- "汝",
- "鄢",
- "涂",
- "钦",
- "归",
- "海",
- "微",
- "生",
- "岳",
- "帅",
- "缑",
- "亢",
- "况",
- "有",
- "琴",
- "商",
- "牟",
- "佘",
- "佴",
- "伯",
- "赏",
- "墨",
- "哈",
- "谯",
- "笪",
- "年",
- "爱",
- "阳",
- "佟",
- "言",
- "福",
- "普",
- "肖",
- "漆",
- "候",
- "付",
- "楼",
-
- // a
- "万俟",
- "司马",
- "上官",
- "欧阳",
- "夏侯",
- "诸葛",
- "闻人",
- "东方",
- "赫连",
- "皇甫",
- "尉迟",
- "公羊",
- "澹台",
- "公冶",
- "宗政",
- "濮阳",
- "淳于",
- "单于",
- "太叔",
- "申屠",
- "公孙",
- "仲孙",
- "轩辕",
- "令狐",
- "钟离",
- "宇文",
- "长孙",
- "慕容",
- "鲜于",
- "闾丘",
- "司徒",
- "司空",
- "亓官",
- "司寇",
- "仉督",
- "子车",
- "颛孙",
- "端木",
- "巫马",
- "公西",
- "漆雕",
- "乐正",
- "壤驷",
- "公良",
- "拓跋",
- "夹谷",
- "宰父",
- "榖梁",
- "段干",
- "百里",
- "东郭",
- "南门",
- "呼延",
- "羊舌",
- "梁丘",
- "左丘",
- "东门",
- "西门",
- "南宫",
- "第五",
+ "Smith",
+ "Johnson",
+ "Williams",
+ "Brown",
+ "Jones",
+ "Garcia",
+ "Miller",
+ "Davis",
+ "Rodriguez",
+ "Martinez",
+ "Hernandez",
+ "Lopez",
+ "Gonzalez",
+ "Wilson",
+ "Anderson",
+ "Thomas",
+ "Taylor",
+ "Moore",
+ "Jackson",
+ "Martin",
+ "Lee",
+ "Perez",
+ "Thompson",
+ "White",
+ "Harris",
+ "Sanchez",
+ "Clark",
+ "Ramirez",
+ "Lewis",
+ "Robinson",
+ "Walker",
+ "Young",
+ "Allen",
+ "King",
+ "Wright",
+ "Scott",
+ "Torres",
+ "Nguyen",
+ "Hill",
+ "Flores",
+ "Green",
+ "Adams",
+ "Nelson",
+ "Baker",
+ "Hall",
+ "Rivera",
+ "Campbell",
+ "Mitchell",
+ "Carter",
+ "Roberts",
)
}
}
diff --git a/data/data-extract/src/main/kotlin/io/github/truenine/composeserver/data/extract/service/ILazyAddressService.kt b/data/data-extract/src/main/kotlin/io/github/truenine/composeserver/data/extract/service/ILazyAddressService.kt
index 7e463df37..e0df206e6 100644
--- a/data/data-extract/src/main/kotlin/io/github/truenine/composeserver/data/extract/service/ILazyAddressService.kt
+++ b/data/data-extract/src/main/kotlin/io/github/truenine/composeserver/data/extract/service/ILazyAddressService.kt
@@ -82,7 +82,7 @@ interface ILazyAddressService {
*/
data class CnDistrict(val code: CnDistrictCode, val name: String, val yearVersion: String, val level: Int = code.level, val leaf: Boolean = level >= 5)
- // --- 服务属性 ---
+ // --- Service properties ---
/** Optional logger for the service */
val logger: SystemLogger?
get() = null
@@ -110,7 +110,7 @@ interface ILazyAddressService {
fun lastYearVersionOrNull(yearVersion: String): String? {
if (yearVersion.nonText()) return null
val currentYearVersion = yearVersion.toIntOrNull() ?: return null
- // 查找小于当前年份且最接近的版本
+ // Find the closest supported version that is less than the current year
return supportedYearVersions.mapNotNull { it.toIntOrNull() }.distinct().sortedDescending().filter { it < currentYearVersion }.maxOrNull()?.toString()
}
diff --git a/data/data-extract/src/main/kotlin/io/github/truenine/composeserver/data/extract/service/IMinoritiesService.kt b/data/data-extract/src/main/kotlin/io/github/truenine/composeserver/data/extract/service/IMinoritiesService.kt
index eab8a22b4..d600829df 100644
--- a/data/data-extract/src/main/kotlin/io/github/truenine/composeserver/data/extract/service/IMinoritiesService.kt
+++ b/data/data-extract/src/main/kotlin/io/github/truenine/composeserver/data/extract/service/IMinoritiesService.kt
@@ -1,7 +1,7 @@
package io.github.truenine.composeserver.data.extract.service
/**
- * ## 中国 56 民族
+ * Chinese 56 ethnic groups.
*
* @author TrueNine
* @since 2024-01-11
@@ -11,65 +11,64 @@ interface IMinoritiesService {
@JvmStatic
val MINORITIES: List =
listOf(
- "汉",
- "蒙古",
- "回",
- "藏",
- "维吾尔",
- "苗",
- "彝",
- "壮",
- "布依",
- "朝鲜",
- "满",
- "侗",
- "瑶",
- "白",
- "土家",
- "哈尼",
- "哈萨克",
- "傣",
- "黎",
- "傈僳",
- "佤",
- "畲",
- "高山",
- "拉祜",
- "水",
- "东乡",
- "纳西",
- "景颇",
- "柯尔克孜",
- "土",
- "达斡尔",
- "仫佬",
- "羌",
- "布朗",
- "撒拉",
- "毛难",
- "仡佬",
- "锡伯",
- "阿昌",
- "普米",
- "塔吉克",
- "怒",
- "乌孜别克",
- "俄罗斯",
- "鄂温克",
- "德昂",
- "保安",
- "裕固",
- "京",
- "塔塔尔",
- "独龙",
- "鄂伦春",
- "赫哲",
- "门巴",
- "珞巴",
- "基诺",
+ "Han",
+ "Zhuang",
+ "Hui",
+ "Manchu",
+ "Uyghur",
+ "Miao",
+ "Yi",
+ "Tujia",
+ "Tibetan",
+ "Mongol",
+ "Dong",
+ "Yao",
+ "Bai",
+ "Korean",
+ "Hani",
+ "Li",
+ "Kazakh",
+ "Dai",
+ "Lisu",
+ "Va",
+ "She",
+ "Gaoshan",
+ "Lahu",
+ "Shui",
+ "Dongxiang",
+ "Naxi",
+ "Jingpo",
+ "Kirgiz",
+ "Tu",
+ "Daur",
+ "Mulao",
+ "Qiang",
+ "Blang",
+ "Salar",
+ "Maonan",
+ "Gelao",
+ "Xibe",
+ "Achang",
+ "Pumi",
+ "Tajik",
+ "Nu",
+ "Uzbek",
+ "Russian",
+ "Ewenki",
+ "Deang",
+ "Bonan",
+ "Yugur",
+ "Jing",
+ "Tatar",
+ "Derung",
+ "Oroqen",
+ "Hezhe",
+ "Monba",
+ "Lhoba",
+ "Jino",
)
- @JvmStatic val MINORITIES_Z = MINORITIES.map { it + "族" }
+ @JvmStatic val MINORITIES_Z = MINORITIES.map { "$it ethnicity" }
}
fun findAllMinorities(): List = MINORITIES
diff --git a/data/data-extract/src/main/kotlin/io/github/truenine/composeserver/data/extract/service/impl/LazyAddressServiceImpl.kt b/data/data-extract/src/main/kotlin/io/github/truenine/composeserver/data/extract/service/impl/LazyAddressServiceImpl.kt
index dbf07ead8..09ea84e47 100644
--- a/data/data-extract/src/main/kotlin/io/github/truenine/composeserver/data/extract/service/impl/LazyAddressServiceImpl.kt
+++ b/data/data-extract/src/main/kotlin/io/github/truenine/composeserver/data/extract/service/impl/LazyAddressServiceImpl.kt
@@ -12,13 +12,13 @@ import org.springframework.stereotype.Service
private val log = slf4j()
@ConditionalOnMissingBean(ILazyAddressService::class)
-@Deprecated("统计局接口已不可用,请使用基于 CSV 的实现,如 LazyAddressCsvServiceImpl")
-@Service("DataExtractLazyAddressServiceImpls") // 保持 Bean 名称可能为了某些旧配置兼容
+@Deprecated("NBS address API is deprecated; use CSV-based implementation such as LazyAddressCsvServiceImpl")
+@Service("DataExtractLazyAddressServiceImpls") // Keep bean name for legacy configuration compatibility
class LazyAddressServiceImpl(private val chstApi: ICnNbsAddressApi) : ILazyAddressService {
- // --- 实现 ILazyAddressService 属性 ---
+ // --- Implement ILazyAddressService properties ---
override val supportedDefaultYearVersion: String
- get() = "2023" // 国家统计局最后可用的年份(假设)
+ get() = "2023" // Last available year for NBS service (assumed)
override val supportedYearVersions: List
get() = listOf(supportedDefaultYearVersion)
@@ -26,17 +26,17 @@ class LazyAddressServiceImpl(private val chstApi: ICnNbsAddressApi) : ILazyAddre
override val logger
get() = log
- // --- 实现核心查找方法 (基于旧逻辑,接口已简化) ---
+ // --- Core lookup methods implementation (legacy logic, simplified API) ---
override fun fetchChildren(parentCode: string, yearVersion: String): List {
- // 检查年份是否匹配,这个旧实现只支持一个版本
+ // Check year version; this legacy implementation supports only one version
if (yearVersion != supportedDefaultYearVersion) {
logger?.warn("Unsupported yearVersion {} requested for NBS service, returning empty list.", yearVersion)
return emptyList()
}
- // 尝试根据 parentCode 的层级调用旧的查找逻辑
- // 使用接口提供的公共方法创建 CnDistrictCode
+ // Use helper to parse parent code and dispatch based on administrative level
+ // Uses ILazyAddressService companion methods to create CnDistrictCode
val parentCodeObj = ILazyAddressService.createCnDistrictCode(parentCode) ?: return emptyList()
return when (parentCodeObj.level) {
@@ -54,55 +54,53 @@ class LazyAddressServiceImpl(private val chstApi: ICnNbsAddressApi) : ILazyAddre
override fun fetchDistrict(code: string, yearVersion: String): ILazyAddressService.CnDistrict? {
logger?.debug("Attempting findDistrict for code: {}, starting year: {}", code, yearVersion)
- // 实现版本回退逻辑
+ // Implement version fallback logic
var currentYearVersion: String? = yearVersion
while (currentYearVersion != null) {
- // 检查当前尝试的版本是否受支持
+ // Check whether current version is supported by this legacy implementation
if (currentYearVersion != supportedDefaultYearVersion) {
logger?.trace("Skipping unsupported year {} for NBS service.", currentYearVersion)
currentYearVersion = lastYearVersionOrNull(currentYearVersion)
continue
}
- // 尝试在该版本查找
- // 需要找到父级,然后查找子级列表,再从中筛选
- val codeObj = ILazyAddressService.createCnDistrictCode(code) ?: return null // 无效 code 直接返回
+ // Try lookup in the current version.
+ // Find parent node, then query its children and filter by code.
+ val codeObj = ILazyAddressService.createCnDistrictCode(code) ?: return null // Invalid code, return immediately
val parentCode = codeObj.back()?.code?.toString() ?: if (codeObj.level == 1) ILazyAddressService.DEFAULT_COUNTRY_CODE else null
if (parentCode != null) {
- val children = fetchChildren(parentCode, currentYearVersion) // 调用本类实现的 findChildren
+ val children = fetchChildren(parentCode, currentYearVersion) // Delegate to this class implementation of fetchChildren
val found = children.firstOrNull { it.code.code == codeObj.code }
if (found != null) {
logger?.debug("Found district {} in year {}", code, currentYearVersion)
- // 确保返回的 district 的 yearVersion 是实际找到的年份
+ // Ensure returned district uses the actual year version where it was found
return found.copy(yearVersion = currentYearVersion)
}
} else {
- // 无法确定父级(可能是根代码 "0" 或无效代码)
+ // Cannot determine parent (may be root code "0" or invalid code)
logger?.warn("Cannot determine parent for code {} to perform lookup.", code)
- return null // 或者根据情况处理根代码
+ return null // Or handle root code case explicitly
}
- // 如果没找到,尝试更早的版本
+ // If not found, try earlier version
logger?.trace("District {} not found in year {}, trying older version.", code, currentYearVersion)
currentYearVersion = lastYearVersionOrNull(currentYearVersion)
}
logger?.warn("District {} not found in any supported version starting from {}.", code, yearVersion)
- return null // 所有版本都试过,未找到
+ return null // Not found in any version
}
override fun fetchChildrenRecursive(parentCode: string, maxDepth: Int, yearVersion: String): List {
logger?.warn("findChildrenRecursive is not efficiently implemented in the deprecated NBS service.")
- // 简单实现:只返回第一层子级,如果 maxDepth >= 1
+ // Simple implementation: only return first-level children when maxDepth >= 1
return if (maxDepth >= 1) {
fetchChildren(parentCode, yearVersion)
} else {
emptyList()
}
- // 或者抛出异常:
- // throw UnsupportedOperationException("Recursive search is not supported by
- // this deprecated implementation.")
+ // Alternatively, this implementation could throw UnsupportedOperationException.
}
override fun traverseChildrenRecursive(
@@ -127,19 +125,19 @@ class LazyAddressServiceImpl(private val chstApi: ICnNbsAddressApi) : ILazyAddre
walk(parentCode, 1, null)
}
- // --- 内部方法 (旧的实现逻辑,保持 private) ---
+ // --- Internal helpers (legacy NBS implementation, kept private) ---
private fun findAllProvincesInternal(yearVersion: String): List {
- // 年份检查已在外部 findChildren 完成
+ // Year version check is already done in fetchChildren
val homeBody = chstApi.homePage().body
return extractProvinces(homeBody)
}
private fun findAllCityByCodeInternal(provinceCode: String, yearVersion: String): List {
- // 年份检查已在外层完成
- // 使用接口的公共方法创建 Code 对象
+ // Year version check is already performed by caller
+ // Use interface helper to create code object
val model = ILazyAddressService.createCnDistrictCode(provinceCode) ?: return emptyList()
- // 简单的层级检查
+ // Simple level validation
if (model.level != 1) {
logger?.error("Internal: findAllCityByCodeInternal called with non-province code: {}", provinceCode)
return emptyList()
@@ -149,7 +147,7 @@ class LazyAddressServiceImpl(private val chstApi: ICnNbsAddressApi) : ILazyAddre
}
private fun findAllCountyByCodeInternal(cityCode: String, yearVersion: String): List {
- // 年份检查已在外层完成
+ // Year version check is already performed by caller
val model = ILazyAddressService.createCnDistrictCode(cityCode) ?: return emptyList()
if (model.level != 2) {
logger?.error("Internal: findAllCountyByCodeInternal called with non-city code: {}", cityCode)
@@ -159,7 +157,7 @@ class LazyAddressServiceImpl(private val chstApi: ICnNbsAddressApi) : ILazyAddre
}
private fun findAllTownByCodeInternal(countyCode: String, yearVersion: String): List {
- // 年份检查已在外层完成
+ // Year version check is already performed by caller
val model = ILazyAddressService.createCnDistrictCode(countyCode) ?: return emptyList()
if (model.level != 3) {
logger?.error("Internal: findAllTownByCodeInternal called with non-county code: {}", countyCode)
@@ -169,7 +167,7 @@ class LazyAddressServiceImpl(private val chstApi: ICnNbsAddressApi) : ILazyAddre
}
private fun findAllVillageByCodeInternal(townCode: String, yearVersion: String): List {
- // 年份检查已在外层完成
+ // Year version check is already performed by caller
val model = ILazyAddressService.createCnDistrictCode(townCode) ?: return emptyList()
if (model.level != 4) {
logger?.error("Internal: findAllVillageByCodeInternal called with non-town code: {}", townCode)
@@ -178,14 +176,14 @@ class LazyAddressServiceImpl(private val chstApi: ICnNbsAddressApi) : ILazyAddre
return extractVillages(chstApi.getVillagePage(model.provinceCode, model.cityCode, model.countyCode, model.townCode).body) ?: listOf()
}
- // --- Jsoup 解析辅助方法 ---
+ // --- Jsoup parsing helpers ---
private fun toCnDistrict(code: String, name: String, leaf: Boolean) =
ILazyAddressService.CnDistrict(
leaf = leaf,
name = name,
- code = CnDistrictCode(code), // 假设 CnDistrictCode 可以处理 code
- yearVersion = supportedDefaultYearVersion, // 固定为此实现支持的版本
+ code = CnDistrictCode(code), // Assume CnDistrictCode can handle the code value
+ yearVersion = supportedDefaultYearVersion, // Fixed to the single supported year version for this implementation
)
private fun extractProvinces(page: String?): List {
@@ -193,7 +191,7 @@ class LazyAddressServiceImpl(private val chstApi: ICnNbsAddressApi) : ILazyAddre
Jsoup.parse(it).body().selectXpath("//tr[@class='provincetr']/td/a").mapNotNull { link ->
val hrefCode = link.attr("href").removePrefix("./").removeSuffix(".html")
val fullCode = hrefCode.padEnd(12, '0')
- // 使用接口的验证方法
+ // Use ILazyAddressService.verifyCode for validation
if (ILazyAddressService.verifyCode(fullCode)) {
val name = link.text()
toCnDistrict(fullCode, name, false)
@@ -210,7 +208,7 @@ class LazyAddressServiceImpl(private val chstApi: ICnNbsAddressApi) : ILazyAddre
Jsoup.parse(it).body().selectXpath("//tr[@class='villagetr']").mapNotNull { element ->
val code = element.child(0).text()
val name = element.child(2).text()
- // 使用接口的验证方法
+ // Use ILazyAddressService.verifyCode for validation
if (code.length == 12 && ILazyAddressService.verifyCode(code)) {
toCnDistrict(code, name, true)
} else {
@@ -236,7 +234,7 @@ class LazyAddressServiceImpl(private val chstApi: ICnNbsAddressApi) : ILazyAddre
"towntr" -> 9
else -> 0
}
- // 市、县、镇代码需要补全
+ // City, county, and town codes must be padded to 12 digits
val fullCode = codePart?.padEnd(12, '0')
if (fullCode != null && codePart?.length == expectedLength && ILazyAddressService.verifyCode(fullCode)) {
@@ -265,7 +263,7 @@ class LazyAddressServiceImpl(private val chstApi: ICnNbsAddressApi) : ILazyAddre
else -> 0
}
val fullCode = codeText.padEnd(12, '0')
- // 使用接口的验证方法
+ // Use ILazyAddressService.verifyCode for validation
if (codeText.all { it.isDigit() } && codeText.length == expectedLength && ILazyAddressService.verifyCode(fullCode)) {
toCnDistrict(fullCode, nameText, true)
} else {
diff --git a/data/data-extract/src/test/kotlin/io/github/truenine/composeserver/data/extract/domain/CnDistrictCodeTest.kt b/data/data-extract/src/test/kotlin/io/github/truenine/composeserver/data/extract/domain/CnDistrictCodeTest.kt
index 6d77e264c..85a2d87ab 100644
--- a/data/data-extract/src/test/kotlin/io/github/truenine/composeserver/data/extract/domain/CnDistrictCodeTest.kt
+++ b/data/data-extract/src/test/kotlin/io/github/truenine/composeserver/data/extract/domain/CnDistrictCodeTest.kt
@@ -10,7 +10,7 @@ import org.junit.jupiter.api.assertThrows
class CnDistrictCodeTest {
@Test
- fun `测试空构造函数`() {
+ fun `empty constructor`() {
val code = CnDistrictCode()
assertEquals("000000000000", code.toString())
assertTrue(code.empty)
@@ -23,7 +23,7 @@ class CnDistrictCodeTest {
}
@Test
- fun `测试无效长度的编码应该抛出异常`() {
+ fun `invalid length code should throw exception`() {
val invalidLengths = listOf(1, 3, 5, 7, 8, 10, 11)
invalidLengths.forEach { length ->
val invalidCode = "1".repeat(length)
@@ -32,7 +32,7 @@ class CnDistrictCodeTest {
}
@Test
- fun `测试省级编码`() {
+ fun `province level code`() {
val code = CnDistrictCode("11")
assertEquals("110000000000", code.toString())
assertFalse(code.empty)
@@ -46,7 +46,7 @@ class CnDistrictCodeTest {
}
@Test
- fun `测试市级编码`() {
+ fun `city level code`() {
val code = CnDistrictCode("1101")
assertEquals("110100000000", code.toString())
assertFalse(code.empty)
@@ -60,7 +60,7 @@ class CnDistrictCodeTest {
}
@Test
- fun `测试区县级编码`() {
+ fun `county level code`() {
val code = CnDistrictCode("110101")
assertEquals("110101000000", code.toString())
assertFalse(code.empty)
@@ -74,7 +74,7 @@ class CnDistrictCodeTest {
}
@Test
- fun `测试乡镇级编码`() {
+ fun `town level code`() {
val code = CnDistrictCode("110101001")
assertEquals("110101001000", code.toString())
assertFalse(code.empty)
@@ -88,7 +88,7 @@ class CnDistrictCodeTest {
}
@Test
- fun `测试村级编码`() {
+ fun `village level code`() {
val code = CnDistrictCode("110101001001")
assertEquals("110101001001", code.toString())
assertFalse(code.empty)
@@ -102,53 +102,53 @@ class CnDistrictCodeTest {
}
@Test
- fun `测试back方法 - 各级别返回值`() {
- // 村级返回乡镇级
+ fun `back method returns correct level for each step`() {
+ // Village level returns town level
val villageCode = CnDistrictCode("110101001001")
val townCode = villageCode.back()
assertEquals("110101001", townCode?.code)
assertEquals(4, townCode?.level)
- // 乡镇级返回区县级
+ // Town level returns county level
val countyCode = townCode?.back()
assertEquals("110101", countyCode?.code)
assertEquals(3, countyCode?.level)
- // 区县级返回市级
+ // County level returns city level
val cityCode = countyCode?.back()
assertEquals("1101", cityCode?.code)
assertEquals(2, cityCode?.level)
- // 市级返回省级
+ // City level returns province level
val provinceCode = cityCode?.back()
assertEquals("11", provinceCode?.code)
assertEquals(1, provinceCode?.level)
- // 省级返回空编码
+ // Province level returns empty code
val emptyCode = provinceCode?.back()
assertEquals("", emptyCode?.code)
assertEquals(0, emptyCode?.level)
- // 空编码返回null
+ // Empty code returns null
val nullCode = emptyCode?.back()
assertNull(nullCode)
}
@Test
- fun `测试特殊编码情况`() {
- // 测试全零编码
+ fun `special code cases`() {
+ // All-zero code
val zeroCode = CnDistrictCode("000000000000")
assertTrue(zeroCode.empty)
assertEquals(0, zeroCode.level)
- // 测试部分零编码
+ // Partially zero code
val partialZeroCode = CnDistrictCode("110000000000")
assertFalse(partialZeroCode.empty)
assertEquals(1, partialZeroCode.level)
}
@Test
- fun `测试编码补全`() {
+ fun `code padding`() {
val codes =
mapOf("11" to "110000000000", "1101" to "110100000000", "110101" to "110101000000", "110101001" to "110101001000", "110101001001" to "110101001001")
@@ -160,20 +160,20 @@ class CnDistrictCodeTest {
}
@Test
- fun `测试level计算逻辑`() {
+ fun `level calculation logic`() {
val testCases =
mapOf(
- "000000000000" to 0, // 空编码
- "110000000000" to 1, // 省级
- "110100000000" to 2, // 市级
- "110101000000" to 3, // 区县级
- "110101001000" to 4, // 乡镇级
- "110101001001" to 5, // 村级
+ "000000000000" to 0, // Empty code
+ "110000000000" to 1, // Province level
+ "110100000000" to 2, // City level
+ "110101000000" to 3, // County level
+ "110101001000" to 4, // Town level
+ "110101001001" to 5, // Village level
)
testCases.forEach { (input, expectedLevel) ->
val districtCode = CnDistrictCode(input)
- assertEquals(expectedLevel, districtCode.level, "输入编码: $input")
+ assertEquals(expectedLevel, districtCode.level, "input code: $input")
}
}
diff --git a/data/data-extract/src/test/kotlin/io/github/truenine/composeserver/data/extract/service/ILazyAddressServiceTest.kt b/data/data-extract/src/test/kotlin/io/github/truenine/composeserver/data/extract/service/ILazyAddressServiceTest.kt
index 8dcb00016..7b8c329d9 100644
--- a/data/data-extract/src/test/kotlin/io/github/truenine/composeserver/data/extract/service/ILazyAddressServiceTest.kt
+++ b/data/data-extract/src/test/kotlin/io/github/truenine/composeserver/data/extract/service/ILazyAddressServiceTest.kt
@@ -32,46 +32,46 @@ class ILazyAddressServiceTest {
/** Comprehensive test data covering multiple administrative levels and various hierarchical relationships for testing backward traversal */
private val comprehensiveTestData =
"""
- 110000000000,北京市,1,000000000000
- 120000000000,天津市,1,000000000000
- 130000000000,河北省,1,000000000000
- 110100000000,北京市市辖区,2,110000000000
- 110200000000,北京市县,2,110000000000
- 120100000000,天津市市辖区,2,120000000000
- 130100000000,石家庄市,2,130000000000
- 130200000000,唐山市,2,130000000000
- 110101000000,东城区,3,110100000000
- 110102000000,西城区,3,110100000000
- 110105000000,朝阳区,3,110100000000
- 110221000000,昌平区,3,110200000000
- 120101000000,和平区,3,120100000000
- 120102000000,河东区,3,120100000000
- 130102000000,长安区,3,130100000000
- 130104000000,桥西区,3,130100000000
- 130203000000,古冶区,3,130200000000
- 110101001000,东华门街道,4,110101000000
- 110101002000,景山街道,4,110101000000
- 110101003000,交道口街道,4,110101000000
- 110102004000,什刹海街道,4,110102000000
- 110105005000,建国门外街道,4,110105000000
- 110221006000,城北街道,4,110221000000
- 120101007000,劝业场街道,4,120101000000
- 120102008000,大王庄街道,4,120102000000
- 130102009000,青园街道,4,130102000000
- 130104010000,振头街道,4,130104000000
- 130203011000,林西街道,4,130203000000
- 110101001001,东华门社区,5,110101001000
- 110101001002,多福巷社区,5,110101001000
- 110101002003,故宫社区,5,110101002000
- 110101003004,府学胡同社区,5,110101003000
- 110102004005,德胜门社区,5,110102004000
- 110105005006,建外街道社区,5,110105005000
- 110221006007,城北第一社区,5,110221006000
- 120101007008,劝业场社区,5,120101007000
- 120102008009,大王庄第一社区,5,120102008000
- 130102009010,青园第一社区,5,130102009000
- 130104010011,振头第一社区,5,130104010000
- 130203011012,林西第一社区,5,130203011000
+ 110000000000,Beijing Municipality,1,000000000000
+ 120000000000,Tianjin Municipality,1,000000000000
+ 130000000000,Hebei Province,1,000000000000
+ 110100000000,Beijing Districts,2,110000000000
+ 110200000000,Beijing Counties,2,110000000000
+ 120100000000,Tianjin Districts,2,120000000000
+ 130100000000,Shijiazhuang City,2,130000000000
+ 130200000000,Tangshan City,2,130000000000
+ 110101000000,Dongcheng District,3,110100000000
+ 110102000000,Xicheng District,3,110100000000
+ 110105000000,Chaoyang District,3,110100000000
+ 110221000000,Changping District,3,110200000000
+ 120101000000,Heping District,3,120100000000
+ 120102000000,Hedong District,3,120100000000
+ 130102000000,Chang'an District,3,130100000000
+ 130104000000,Qiaoxi District,3,130100000000
+ 130203000000,Guye District,3,130200000000
+ 110101001000,Donghuamen Subdistrict,4,110101000000
+ 110101002000,Jingshan Subdistrict,4,110101000000
+ 110101003000,Jiaodaokou Subdistrict,4,110101000000
+ 110102004000,Shichahai Subdistrict,4,110102000000
+ 110105005000,Jianguomenwai Subdistrict,4,110105000000
+ 110221006000,Chengbei Subdistrict,4,110221000000
+ 120101007000,Quanyechang Subdistrict,4,120101000000
+ 120102008000,Dawangzhuang Subdistrict,4,120102000000
+ 130102009000,Qingyuan Subdistrict,4,130102000000
+ 130104010000,Zhentou Subdistrict,4,130104000000
+ 130203011000,Linxi Subdistrict,4,130203000000
+ 110101001001,Donghuamen Community,5,110101001000
+ 110101001002,Duofuxiang Community,5,110101001000
+ 110101002003,Gugong Community,5,110101002000
+ 110101003004,Fuxuehutong Community,5,110101003000
+ 110102004005,Deshengmen Community,5,110102004000
+ 110105005006,Jiangwaijiedao Community,5,110105005000
+ 110221006007,Chengbei First Community,5,110221006000
+ 120101007008,Quanyechang Community,5,120101007000
+ 120102008009,Dawangzhuang First Community,5,120102008000
+ 130102009010,Qingyuan First Community,5,130102009000
+ 130104010011,Zhentou First Community,5,130104010000
+ 130203011012,Linxi First Community,5,130203011000
"""
.trimIndent()
@@ -117,42 +117,42 @@ class ILazyAddressServiceTest {
// --- Companion Object Tests ---
@Test
- fun `verifyCode 校验 有效的12位代码 返回 true`() {
+ fun `verifyCode valid 12-digit code returns true`() {
assertTrue(ILazyAddressService.verifyCode("110101001001"))
}
@Test
- fun `verifyCode 校验 有效的省级代码 返回 true`() {
+ fun `verifyCode valid province code returns true`() {
assertTrue(ILazyAddressService.verifyCode("110000000000"))
}
@Test
- fun `verifyCode 校验 有效的市级代码 返回 true`() {
+ fun `verifyCode valid city code returns true`() {
assertTrue(ILazyAddressService.verifyCode("110100000000"))
}
@Test
- fun `verifyCode 校验 有效的县级代码 返回 true`() {
+ fun `verifyCode valid county code returns true`() {
assertTrue(ILazyAddressService.verifyCode("110101000000"))
}
@Test
- fun `verifyCode 校验 有效的乡级代码 返回 true`() {
+ fun `verifyCode valid town code returns true`() {
assertTrue(ILazyAddressService.verifyCode("110101001000"))
}
@Test
- fun `verifyCode 校验 长度超过12位 返回 false`() {
+ fun `verifyCode code longer than 12 digits returns false`() {
assertFalse(ILazyAddressService.verifyCode("1101010010011"))
}
@Test
- fun `verifyCode 校验 包含非数字字符 返回 false`() {
+ fun `verifyCode code with non-digit character returns false`() {
assertFalse(ILazyAddressService.verifyCode("11010100100A"))
}
@Test
- fun `convertToFillCode 处理 有效的短代码 返回 补全后的12位代码`() {
+ fun `convertToFillCode valid short code returns padded 12-digit code`() {
assertEquals("110000000000", ILazyAddressService.convertToFillCode("11"))
assertEquals("110100000000", ILazyAddressService.convertToFillCode("1101"))
assertEquals("110101000000", ILazyAddressService.convertToFillCode("110101"))
@@ -161,19 +161,19 @@ class ILazyAddressServiceTest {
}
@Test
- fun `convertToFillCode 处理 无效的代码 返回 原始字符串`() {
+ fun `convertToFillCode invalid code returns original string`() {
assertEquals("11010A", ILazyAddressService.convertToFillCode("11010A"))
assertEquals("", ILazyAddressService.convertToFillCode(""))
assertEquals("", ILazyAddressService.convertToFillCode(""))
}
@Test
- fun `convertToFillCode 处理 已经是12位的代码 返回 原始字符串`() {
+ fun `convertToFillCode 12-digit code returns original string`() {
assertEquals("110101001001", ILazyAddressService.convertToFillCode("110101001001"))
}
@Test
- fun `createCnDistrictCode 使用 有效的完整代码 返回 CnDistrictCode实例`() {
+ fun `createCnDistrictCode with valid full code returns instance`() {
val code = "110101001001"
val districtCode = ILazyAddressService.createCnDistrictCode(code)
assertNotNull(districtCode)
@@ -182,28 +182,28 @@ class ILazyAddressServiceTest {
}
@Test
- fun `createCnDistrictCode 使用 有效的省级代码 返回 CnDistrictCode实例`() {
+ fun `createCnDistrictCode with valid province code returns instance`() {
val inputCode = "110000000000"
- val expectedMinimalCode = "11" // 假设 CnDistrictCode.code 返回简化代码
+ val expectedMinimalCode = "11" // Assume CnDistrictCode.code returns minimal code
val districtCode = ILazyAddressService.createCnDistrictCode(inputCode)
assertNotNull(districtCode)
- assertEquals(expectedMinimalCode, districtCode.code) // 校验简化后的 code
+ assertEquals(expectedMinimalCode, districtCode.code) // Verify minimized code
assertEquals(1, districtCode.level)
}
@Test
- fun `createCnDistrictCode 使用 有效的短代码 返回 CnDistrictCode实例`() {
+ fun `createCnDistrictCode with valid short code returns instance`() {
val code = "1101"
val districtCode = ILazyAddressService.createCnDistrictCode(code)
assertNotNull(districtCode)
- assertEquals(code, districtCode.code) // 短代码本身就是简化形式
- assertEquals(2, districtCode.level) // level 根据实际长度计算
+ assertEquals(code, districtCode.code) // Short code is already minimal
+ assertEquals(2, districtCode.level) // Level is derived from code length
}
@Test
- fun `createCnDistrictCode 使用 无效的代码 返回 null`() {
+ fun `createCnDistrictCode with invalid code returns null`() {
assertNull(ILazyAddressService.createCnDistrictCode("11010A"))
- assertNull(ILazyAddressService.createCnDistrictCode("1234567890123")) // 超长
+ assertNull(ILazyAddressService.createCnDistrictCode("1234567890123")) // Too long
assertNull(ILazyAddressService.createCnDistrictCode(""))
assertNull(ILazyAddressService.createCnDistrictCode(null))
}
@@ -211,38 +211,38 @@ class ILazyAddressServiceTest {
// --- Default Method Tests ---
@Test
- fun `lastYearVersionOrNull 给定 有效年份 且 存在更早版本 返回 最近的更早版本`() {
+ fun `lastYearVersionOrNull with valid year and earlier versions returns closest earlier`() {
assertEquals("2023", service.lastYearVersionOrNull("2024"))
assertEquals("2021", service.lastYearVersionOrNull("2023"))
}
@Test
- fun `lastYearVersionOrNull 给定 最早年份 返回 null`() {
+ fun `lastYearVersionOrNull with earliest year returns null`() {
assertNull(service.lastYearVersionOrNull("2021"))
}
@Test
- fun `lastYearVersionOrNull 给定 不在支持列表中的年份 返回 最近的更早版本`() {
- assertEquals("2021", service.lastYearVersionOrNull("2022")) // 假设支持 ["2024", "2023", "2021"]
+ fun `lastYearVersionOrNull with unsupported year returns closest earlier`() {
+ assertEquals("2021", service.lastYearVersionOrNull("2022")) // Assume supported ["2024", "2023", "2021"]
}
@Test
- fun `lastYearVersionOrNull 给定 无效年份字符串 返回 null`() {
+ fun `lastYearVersionOrNull with invalid year string returns null`() {
assertNull(service.lastYearVersionOrNull("abc"))
assertNull(service.lastYearVersionOrNull(""))
}
@Test
- fun `lastYearVersion 返回 支持列表中的最新年份`() {
+ fun `lastYearVersion returns latest supported year`() {
assertEquals("2024", service.lastYearVersion)
}
@Test
- fun `lastYearVersion 当支持列表为空时 返回 默认年份`() {
+ fun `lastYearVersion returns default when supported list is empty`() {
val emptyService =
object : ILazyAddressService {
override val supportedYearVersions: List = emptyList()
- override val supportedDefaultYearVersion: String = "2020" // 假设默认是 2020
+ override val supportedDefaultYearVersion: String = "2020" // Assume default year is 2020
override fun fetchChildren(parentCode: String, yearVersion: String): List = emptyList()
@@ -263,8 +263,8 @@ class ILazyAddressServiceTest {
}
@Test
- fun `supportedMaxLevel 默认 返回 5`() {
- assertEquals(5, service.supportedMaxLevel) // 测试默认实现
+ fun `supportedMaxLevel default returns 5`() {
+ assertEquals(5, service.supportedMaxLevel) // Verify default implementation
}
// === Core Interface Implementation Tests ===
@@ -273,9 +273,9 @@ class ILazyAddressServiceTest {
fun `fetchChildren returns direct children correctly`() {
val provinces = implementationService.fetchChildren("000000000000", "2024")
assertEquals(3, provinces.size)
- assertTrue(provinces.any { it.name == "北京市" })
- assertTrue(provinces.any { it.name == "天津市" })
- assertTrue(provinces.any { it.name == "河北省" })
+ assertTrue(provinces.any { it.name == "Beijing Municipality" })
+ assertTrue(provinces.any { it.name == "Tianjin Municipality" })
+ assertTrue(provinces.any { it.name == "Hebei Province" })
assertTrue(provinces.all { it.level == 1 })
}
@@ -301,7 +301,7 @@ class ILazyAddressServiceTest {
fun `fetchDistrict finds specific district correctly`() {
val district = implementationService.fetchDistrict("110101", "2024")
assertNotNull(district)
- assertEquals("东城区", district.name)
+ assertEquals("Dongcheng District", district.name)
assertEquals(3, district.level)
assertEquals("110101", district.code.code)
}
@@ -313,8 +313,8 @@ class ILazyAddressServiceTest {
assertNotNull(districtShort)
assertNotNull(districtFull)
- assertEquals("东城区", districtShort.name)
- assertEquals("东城区", districtFull.name)
+ assertEquals("Dongcheng District", districtShort.name)
+ assertEquals("Dongcheng District", districtFull.name)
assertEquals(districtShort.level, districtFull.level)
}
@@ -325,35 +325,35 @@ class ILazyAddressServiceTest {
val village = implementationService.fetchDistrict("110101001001", "2024")
assertNotNull(village)
assertEquals(5, village.level)
- assertEquals("东华门社区", village.name)
+ assertEquals("Donghuamen Community", village.name)
val parentTown = village.code.back()
assertNotNull(parentTown)
val town = implementationService.fetchDistrict(parentTown.code, "2024")
assertNotNull(town)
assertEquals(4, town.level)
- assertEquals("东华门街道", town.name)
+ assertEquals("Donghuamen Subdistrict", town.name)
val parentCounty = town.code.back()
assertNotNull(parentCounty)
val county = implementationService.fetchDistrict(parentCounty.code, "2024")
assertNotNull(county)
assertEquals(3, county.level)
- assertEquals("东城区", county.name)
+ assertEquals("Dongcheng District", county.name)
val parentCity = county.code.back()
assertNotNull(parentCity)
val city = implementationService.fetchDistrict(parentCity.code, "2024")
assertNotNull(city)
assertEquals(2, city.level)
- assertEquals("北京市市辖区", city.name)
+ assertEquals("Beijing Districts", city.name)
val parentProvince = city.code.back()
assertNotNull(parentProvince)
val province = implementationService.fetchDistrict(parentProvince.code, "2024")
assertNotNull(province)
assertEquals(1, province.level)
- assertEquals("北京市", province.name)
+ assertEquals("Beijing Municipality", province.name)
val parentCountry = province.code.back()
assertNotNull(parentCountry)
diff --git a/data/data-extract/src/test/kotlin/io/github/truenine/composeserver/data/extract/service/impl/LazyAddressCsvServiceImplTest.kt b/data/data-extract/src/test/kotlin/io/github/truenine/composeserver/data/extract/service/impl/LazyAddressCsvServiceImplTest.kt
index 1b9a81a12..04c328c6d 100644
--- a/data/data-extract/src/test/kotlin/io/github/truenine/composeserver/data/extract/service/impl/LazyAddressCsvServiceImplTest.kt
+++ b/data/data-extract/src/test/kotlin/io/github/truenine/composeserver/data/extract/service/impl/LazyAddressCsvServiceImplTest.kt
@@ -19,9 +19,9 @@ class LazyAddressCsvServiceImplTest {
private val testCsvContent =
"""
- 110000000000,北京市,1,000000000000
- 110100000000,北京市市辖区,2,110000000000
- 110101000000,东城区,3,110100000000
+ 110000000000,Beijing Municipality,1,000000000000
+ 110100000000,Beijing Districts,2,110000000000
+ 110101000000,Dongcheng District,3,110100000000
"""
.trimIndent()
@@ -29,7 +29,7 @@ class LazyAddressCsvServiceImplTest {
fun setup() {
resourceHolder = mockk(relaxed = true)
- // 设置默认的mock行为
+ // Set up default mock behavior
val testResource =
object : ByteArrayResource(testCsvContent.toByteArray()) {
override fun getFilename(): String = "area_code_2024.csv"
@@ -42,34 +42,34 @@ class LazyAddressCsvServiceImplTest {
}
@Test
- fun `测试初始化和默认年份版本`() {
+ fun `initialize and default year version`() {
assertEquals("2024", service.supportedDefaultYearVersion)
assertTrue(service.supportedYearVersions.contains("2024"))
}
@Test
- fun `测试添加和删除支持的年份`() {
- // 测试添加新的年份定义
+ fun `add and remove supported year`() {
+ // Test adding new year definition
val newCsvDefine = LazyAddressCsvServiceImpl.CsvDefine("area_code_2023.csv")
service.addSupportedYear("2023", newCsvDefine)
assertTrue(service.supportedYearVersions.contains("2023"))
- // 测试删除年份
+ // Test removing year definition
service.removeSupportedYear("2023")
assertTrue("2023" !in service.supportedYearVersions)
}
@Test
- fun `测试查找子区域`() {
+ fun `fetchChildren finds child regions`() {
val children = service.fetchChildren("110000", "2024")
assertNotNull(children)
assertTrue(children.isNotEmpty())
assertEquals("1101", children.first().code.code)
- assertEquals("北京市市辖区", children.first().name)
+ assertEquals("Beijing Districts", children.first().name)
}
@Test
- fun `测试递归查找子区域`() {
+ fun `fetchChildrenRecursive finds child regions`() {
val allChildren = service.fetchChildrenRecursive("110000", 3, "2024")
assertNotNull(allChildren)
assertTrue(allChildren.size >= 2)
@@ -77,21 +77,21 @@ class LazyAddressCsvServiceImplTest {
}
@Test
- fun `测试查找特定区域`() {
+ fun `fetchDistrict finds specific region`() {
val district = service.fetchDistrict("110101", "2024")
assertNotNull(district)
- assertEquals("东城区", district.name)
+ assertEquals("Dongcheng District", district.name)
assertEquals(3, district.level)
}
@Test
- fun `测试查找不存在的区域`() {
+ fun `fetchDistrict for non-existing region`() {
val district = service.fetchDistrict("999999", "2024")
assertNull(district)
}
@Test
- fun `测试CSV资源加载`() {
+ fun `csv resource loading`() {
val resource = service.getCsvResource("2024")
assertNotNull(resource)
@@ -102,7 +102,7 @@ class LazyAddressCsvServiceImplTest {
}
@Test
- fun `测试运算符重载功能`() {
+ fun `operator overloading for year mapping`() {
val newCsvDefine = LazyAddressCsvServiceImpl.CsvDefine("area_code_2023.csv")
service += "2023" to newCsvDefine
assertTrue(service.supportedYearVersions.contains("2023"))
@@ -112,7 +112,7 @@ class LazyAddressCsvServiceImplTest {
}
@Test
- fun `测试查找国家级子区域`() {
+ fun `fetchAllProvinces finds national children`() {
val children = service.fetchAllProvinces()
assertNotNull(children)
assertTrue(children.isNotEmpty())
@@ -120,7 +120,7 @@ class LazyAddressCsvServiceImplTest {
}
@Test
- fun `测试无效的区域代码`() {
+ fun `invalid region code`() {
val children = service.fetchChildren("invalid", "2024")
assertTrue(children.isEmpty())
@@ -129,7 +129,7 @@ class LazyAddressCsvServiceImplTest {
}
@Test
- fun `测试递归查找时深度限制`() {
+ fun `fetchChildrenRecursive respects depth limit`() {
val children = service.fetchChildrenRecursive("110000", 0, "2024")
assertTrue(children.isEmpty())
@@ -138,11 +138,11 @@ class LazyAddressCsvServiceImplTest {
}
@Test
- fun `测试缓存机制`() {
- // 第一次调用会加载数据
+ fun `cache mechanism`() {
+ // First call loads data
service.fetchChildren("110000", "2024")
- // 第二次调用应该使用缓存
+ // Second call should use cache
val testResource = ByteArrayResource("".toByteArray(), "area_code_2024.csv")
every { resourceHolder.getConfigResource(any()) } returns testResource
@@ -152,7 +152,7 @@ class LazyAddressCsvServiceImplTest {
}
@Test
- fun `测试不存在的年份版本`() {
+ fun `nonexistent year version`() {
val children = service.fetchChildren("110000", "1900")
assertTrue(children.isEmpty())
@@ -161,27 +161,27 @@ class LazyAddressCsvServiceImplTest {
}
@Test
- fun `测试CSV格式错误处理`() {
+ fun `invalid CSV format is handled gracefully`() {
val invalidCsvContent =
"""
- 110000
- 110100,北京市
- invalid,data,here
+ 110000
+ 110100,Beijing City
+ invalid,data,here
"""
.trimIndent()
val invalidResource = ByteArrayResource(invalidCsvContent.toByteArray(), "area_code_2024.csv")
every { resourceHolder.getConfigResource(any()) } returns invalidResource
- // 优化后的代码会优雅地处理错误,过滤掉无效行
+ // Optimized code should handle errors gracefully and filter invalid rows
val result = service.getCsvSequence("2024")?.toList()
assertNotNull(result)
- // 应该只有有效的行被处理,无效行被过滤掉
- assertTrue(result.isEmpty()) // 因为所有行都是无效的
+ // Only valid rows should be processed, invalid rows should be filtered out
+ assertTrue(result.isEmpty()) // All rows are invalid in this dataset
}
@Test
- fun `测试资源不可用情况`() {
+ fun `unavailable resource`() {
every { resourceHolder.getConfigResource(any()) } returns null
val resource = service.getCsvResource("2024")
@@ -192,55 +192,55 @@ class LazyAddressCsvServiceImplTest {
}
@Test
- fun `traverseChildrenRecursive 正常递归遍历所有子节点`() {
+ fun `traverseChildrenRecursive traverses all child nodes`() {
val visited = mutableListOf>()
service.traverseChildrenRecursive("110000", 3, "2024") { children, depth, parent ->
children.forEach { district -> visited += district.code.code to depth }
- true // 继续递归
+ true // Continue recursion
}
- // 应该遍历到所有下级
- assertTrue(visited.any { it.first == "1101" && it.second == 1 }) // 市
- assertTrue(visited.any { it.first == "110101" && it.second == 2 }) // 区
+ // Should traverse all lower-level regions
+ assertTrue(visited.any { it.first == "1101" && it.second == 1 }) // City level
+ assertTrue(visited.any { it.first == "110101" && it.second == 2 }) // District level
}
@Test
- fun `traverseChildrenRecursive 回调返回false时中断分支`() {
+ fun `traverseChildrenRecursive stops branch when callback returns false`() {
val visited = mutableListOf()
service.traverseChildrenRecursive("110000", 3, "2024") { children, depth, parent ->
children.forEach { district -> visited += district.code.code }
- // 只遍历到市级
+ // Traverse only to city level
children.all { it.level < 2 }
}
- // 只会访问到省和市,不会访问到区县
+ // Should visit provinces and cities only, not counties
assertTrue(visited.contains("1101"))
assertFalse(visited.contains("110101"))
}
@Test
- fun `traverseChildrenRecursive 只遍历一层`() {
+ fun `traverseChildrenRecursive single level`() {
val visited = mutableListOf()
service.traverseChildrenRecursive("110000", 1, "2024") { children, depth, parent ->
children.forEach { district -> visited += district.code.code }
true
}
- // 只会访问到市级
+ // Only city level should be visited
assertEquals(listOf("1101"), visited)
}
@Test
- fun `traverseChildrenRecursive parentDistrict 参数正确`() {
+ fun `traverseChildrenRecursive parentDistrict parameter is correct`() {
val parentMap = mutableMapOf()
service.traverseChildrenRecursive("110000", 3, "2024") { children, depth, parent ->
children.forEach { district -> parentMap[district.code.code] = parent?.code?.code }
true
}
- // 市的父是 null,区的父是市
+ // City parent is null, district parent is the city
assertNull(parentMap["1101"])
assertEquals("1101", parentMap["110101"])
}
@Test
- fun `traverseChildrenRecursive 空数据和无效parentCode`() {
+ fun `traverseChildrenRecursive empty data and invalid parentCode`() {
val visited = mutableListOf()
service.traverseChildrenRecursive("999999", 3, "2024") { children, depth, parent ->
children.forEach { district -> visited += district.code.code }
@@ -257,7 +257,7 @@ class LazyAddressCsvServiceImplTest {
}
@Test
- fun `空CSV文件 fetchChildren 返回空`() {
+ fun `empty CSV fetchChildren returns empty`() {
val emptyResource =
object : ByteArrayResource("".toByteArray()) {
override fun getFilename() = "area_code_2024.csv"
@@ -268,10 +268,10 @@ class LazyAddressCsvServiceImplTest {
}
@Test
- fun `只有省级数据 fetchChildrenRecursive 只返回省`() {
+ fun `province-only data fetchChildrenRecursive returns only provinces`() {
val provinceOnly =
"""
- 110000000000,北京市,1,000000000000
+ 110000000000,Beijing Municipality,1,000000000000
"""
.trimIndent()
val resource =
@@ -288,10 +288,10 @@ class LazyAddressCsvServiceImplTest {
}
@Test
- fun `CSV脏数据 level非数字 graceful fail`() {
+ fun `CSV dirty data non-numeric level graceful fail`() {
val badCsv =
"""
- 110000000000,北京市,notanumber,000000000000
+ 110000000000,Beijing Municipality,notanumber,000000000000
"""
.trimIndent()
val resource =
@@ -300,21 +300,21 @@ class LazyAddressCsvServiceImplTest {
}
every { resourceHolder.getConfigResource(any()) } returns resource
- // 优化后的代码会优雅地处理错误,过滤掉无效行
+ // Optimized code should handle errors gracefully and filter invalid rows
val result = service.getCsvSequence("2024")?.toList()
assertNotNull(result)
- // 无效的数字格式行应该被过滤掉
+ // Rows with invalid numeric formats should be filtered out
assertTrue(result.isEmpty())
}
@Test
- fun `parentCode为空 fetchChildren 返回空`() {
+ fun `empty parentCode fetchChildren returns empty`() {
val children = service.fetchChildren("", "2024")
assertTrue(children.isEmpty())
}
@Test
- fun `年份为空 fetchChildren 返回空`() {
+ fun `empty year fetchChildren returns empty`() {
val children = service.fetchChildren("110000", "")
assertTrue(children.isEmpty())
}
@@ -388,8 +388,8 @@ class LazyAddressCsvServiceImplTest {
fun `test error handling with malformed CSV data`() {
val malformedCsv =
"""
- 110000000000,北京市,invalid_level,000000000000
- 110100000000,北京市市辖区,2,110000000000
+ 110000000000,Beijing Municipality,invalid_level,000000000000
+ 110100000000,Beijing Districts,2,110000000000
"""
.trimIndent()
diff --git a/data/data-extract/src/test/kotlin/io/github/truenine/composeserver/data/extract/service/impl/LazyAddressServiceImplTest.kt b/data/data-extract/src/test/kotlin/io/github/truenine/composeserver/data/extract/service/impl/LazyAddressServiceImplTest.kt
index 463d00052..e62b4a26e 100644
--- a/data/data-extract/src/test/kotlin/io/github/truenine/composeserver/data/extract/service/impl/LazyAddressServiceImplTest.kt
+++ b/data/data-extract/src/test/kotlin/io/github/truenine/composeserver/data/extract/service/impl/LazyAddressServiceImplTest.kt
@@ -22,17 +22,17 @@ class LazyAddressServiceImplTest {
}
@Test
- fun `traverseChildrenRecursive 正常递归遍历所有子节点`() {
- // 模拟数据:省-市-区
- every { chstApi.homePage().body } returns "北京市 "
+ fun `traverseChildrenRecursive traverses all child nodes`() {
+ // Mock data: province -> city -> county
+ every { chstApi.homePage().body } returns "Beijing Municipality "
every { chstApi.getCityPage(any()) } returns
mockk(relaxed = true) {
every { body } returns
- "北京市市辖区 北京市市辖区 "
+ "Beijing Districts Beijing Districts "
}
every { chstApi.getCountyPage(any(), any()) } returns
- mockk(relaxed = true) { every { body } returns "110101 东城区 " }
- // 遍历
+ mockk(relaxed = true) { every { body } returns "110101 Dongcheng District " }
+ // Traverse
val visited = mutableListOf>()
service.traverseChildrenRecursive("000000000000", 3, "2023") { children, depth, parent ->
children.forEach { district -> visited += district.code.code to depth }
@@ -44,19 +44,19 @@ class LazyAddressServiceImplTest {
}
@Test
- fun `traverseChildrenRecursive 回调返回false时中断分支`() {
- every { chstApi.homePage().body } returns "北京市 "
+ fun `traverseChildrenRecursive stops branch when callback returns false`() {
+ every { chstApi.homePage().body } returns "Beijing Municipality "
every { chstApi.getCityPage(any()) } returns
mockk(relaxed = true) {
every { body } returns
- "北京市市辖区 北京市市辖区 "
+ "Beijing Districts Beijing Districts "
}
every { chstApi.getCountyPage(any(), any()) } returns
- mockk(relaxed = true) { every { body } returns "110101 东城区 " }
+ mockk(relaxed = true) { every { body } returns "110101 Dongcheng District " }
val visited = mutableListOf()
service.traverseChildrenRecursive("000000000000", 3, "2023") { children, depth, parent ->
children.forEach { district -> visited += district.code.code }
- // 只遍历到省级
+ // Traverse only to province level
children.all { it.level < 1 }
}
assertTrue(visited.contains("110000"))
@@ -65,12 +65,12 @@ class LazyAddressServiceImplTest {
}
@Test
- fun `traverseChildrenRecursive 只遍历一层`() {
- every { chstApi.homePage().body } returns "北京市 "
+ fun `traverseChildrenRecursive single level`() {
+ every { chstApi.homePage().body } returns "Beijing Municipality "
every { chstApi.getCityPage(any()) } returns
mockk(relaxed = true) {
every { body } returns
- "北京市市辖区 北京市市辖区 "
+ "Beijing Districts Beijing Districts "
}
val visited = mutableListOf()
service.traverseChildrenRecursive("000000000000", 1, "2023") { children, depth, parent ->
@@ -82,15 +82,15 @@ class LazyAddressServiceImplTest {
}
@Test
- fun `traverseChildrenRecursive parentDistrict 参数正确`() {
- every { chstApi.homePage().body } returns "北京市 "
+ fun `traverseChildrenRecursive parentDistrict parameter is correct`() {
+ every { chstApi.homePage().body } returns "Beijing Municipality "
every { chstApi.getCityPage(any()) } returns
mockk(relaxed = true) {
every { body } returns
- "北京市市辖区 北京市市辖区 "
+ "Beijing Districts Beijing Districts "
}
every { chstApi.getCountyPage(any(), any()) } returns
- mockk(relaxed = true) { every { body } returns "110101 东城区 " }
+ mockk(relaxed = true) { every { body } returns "110101 Dongcheng District " }
val parentMap = mutableMapOf()
service.traverseChildrenRecursive("000000000000", 3, "2023") { children, depth, parent ->
children.forEach { district -> parentMap[district.code.code] = parent?.code?.code }
@@ -102,7 +102,7 @@ class LazyAddressServiceImplTest {
}
@Test
- fun `traverseChildrenRecursive 空数据和无效parentCode`() {
+ fun `traverseChildrenRecursive empty data and invalid parentCode`() {
every { chstApi.homePage().body } returns ""
val visited = mutableListOf()
service.traverseChildrenRecursive("999999", 3, "2023") { children, depth, parent ->
diff --git a/depend/depend-http-exchange/build.gradle.kts b/depend/depend-http-exchange/build.gradle.kts
index a93e68d17..7545b232e 100644
--- a/depend/depend-http-exchange/build.gradle.kts
+++ b/depend/depend-http-exchange/build.gradle.kts
@@ -14,7 +14,7 @@ dependencies {
api(projects.shared)
implementation(libs.org.springframework.spring.core)
- implementation(libs.com.fasterxml.jackson.core.jackson.databind)
+ implementation(libs.tools.jackson.core.jackson.databind)
implementation(libs.org.springframework.spring.web)
implementation(libs.io.netty.netty.handler)
implementation(libs.org.springframework.spring.webflux)
diff --git a/depend/depend-http-exchange/src/main/kotlin/io/github/truenine/composeserver/depend/httpexchange/WebClientFns.kt b/depend/depend-http-exchange/src/main/kotlin/io/github/truenine/composeserver/depend/httpexchange/WebClientFns.kt
index 1238f31c1..9843284c6 100644
--- a/depend/depend-http-exchange/src/main/kotlin/io/github/truenine/composeserver/depend/httpexchange/WebClientFns.kt
+++ b/depend/depend-http-exchange/src/main/kotlin/io/github/truenine/composeserver/depend/httpexchange/WebClientFns.kt
@@ -1,6 +1,5 @@
package io.github.truenine.composeserver.depend.httpexchange
-import com.fasterxml.jackson.databind.ObjectMapper
import io.github.truenine.composeserver.IAnyEnum
import io.github.truenine.composeserver.consts.IHeaders
import io.github.truenine.composeserver.depend.httpexchange.encoder.AnyEnumEncoder
@@ -9,8 +8,8 @@ import java.time.Duration
import java.time.temporal.ChronoUnit
import org.springframework.core.MethodParameter
import org.springframework.http.codec.EncoderHttpMessageWriter
-import org.springframework.http.codec.json.Jackson2JsonDecoder
-import org.springframework.http.codec.json.Jackson2JsonEncoder
+import org.springframework.http.codec.json.JacksonJsonDecoder
+import org.springframework.http.codec.json.JacksonJsonEncoder
import org.springframework.util.MimeType
import org.springframework.web.bind.annotation.RequestParam
import org.springframework.web.reactive.function.client.WebClient
@@ -18,19 +17,21 @@ import org.springframework.web.reactive.function.client.support.WebClientAdapter
import org.springframework.web.service.invoker.HttpRequestValues
import org.springframework.web.service.invoker.HttpServiceArgumentResolver
import org.springframework.web.service.invoker.HttpServiceProxyFactory
+import tools.jackson.databind.ObjectMapper
+import tools.jackson.databind.json.JsonMapper
/**
- * # 自定义的json编解码器
- * 使用你自定义的jackson ObjectMapper创建
+ * # Custom json encoder/decoder
+ * Create with your custom jackson ObjectMapper
*
- * @param objectMapper mapper
+ * @param jsonMapper mapper
* @return WebClient
* @see [WebClient]
* @see [ObjectMapper]
* @see [org.springframework.web.service.annotation.HttpExchange]
*/
inline fun jsonWebClientRegister(
- objectMapper: ObjectMapper,
+ jsonMapper: JsonMapper,
timeout: Duration = Duration.of(10, ChronoUnit.SECONDS),
builder: (client: WebClient.Builder, factory: HttpServiceProxyFactory.Builder) -> Pair,
): T {
@@ -47,8 +48,8 @@ inline fun jsonWebClientRegister(
it.defaultCodecs().enableLoggingRequestDetails(true)
it.writers.add(0, EncoderHttpMessageWriter(AnyEnumEncoder()))
- it.defaultCodecs().jackson2JsonDecoder(Jackson2JsonDecoder(objectMapper, *jsonHandleMediaTypes))
- it.defaultCodecs().jackson2JsonEncoder(Jackson2JsonEncoder(objectMapper, *jsonHandleMediaTypes))
+ it.defaultCodecs().jacksonJsonDecoder(JacksonJsonDecoder(jsonMapper, *jsonHandleMediaTypes))
+ it.defaultCodecs().jacksonJsonEncoder(JacksonJsonEncoder(jsonMapper, *jsonHandleMediaTypes))
}
clientBuilder.defaultHeader(IHeaders.ACCEPT, MediaTypes.JSON.value, MediaTypes.TEXT.value)
@@ -70,7 +71,7 @@ class ArgsResolver : HttpServiceArgumentResolver {
parameter.getParameterAnnotation(RequestParam::class.java)?.name
?: parameter.getParameterAnnotation(RequestParam::class.java)?.value
?: parameter.parameterName
- ?: throw IllegalArgumentException("参数解析异常")
+ ?: throw IllegalArgumentException("Parameter parsing exception")
requestValues.addRequestParameter(name, argument.value.toString())
return true
}
diff --git a/depend/depend-jackson/build.gradle.kts b/depend/depend-jackson/build.gradle.kts
index 430ffcff3..3ff583132 100644
--- a/depend/depend-jackson/build.gradle.kts
+++ b/depend/depend-jackson/build.gradle.kts
@@ -11,22 +11,27 @@ description =
.trimIndent()
dependencies {
- api(libs.com.fasterxml.jackson.core.jackson.databind) {
+ api(libs.tools.jackson.core.jackson.databind) {
exclude(group = libs.com.google.guava.guava.jre.get().module.group, module = libs.com.google.guava.guava.jre.get().module.name)
}
implementation(libs.com.google.guava.guava.jre)
- api(libs.com.fasterxml.jackson.module.jackson.module.kotlin)
+ api(libs.tools.jackson.module.jackson.module.kotlin)
implementation(libs.org.springframework.spring.web)
- implementation(libs.com.fasterxml.jackson.datatype.jackson.datatype.jsr310)
- implementation(libs.com.fasterxml.jackson.datatype.jackson.datatype.jdk8)
- implementation(libs.com.fasterxml.jackson.datatype.jackson.datatype.guava)
- implementation(libs.com.fasterxml.jackson.datatype.jackson.datatype.joda)
+ implementation(libs.tools.jackson.datatype.jackson.datatype.guava)
api(projects.shared)
testImplementation(projects.testtoolkit.testtoolkitSpringmvc)
testImplementation(libs.org.springframework.boot.spring.boot.starter.json)
testImplementation(libs.org.springframework.boot.spring.boot.starter.web)
+
+ kaptTest(libs.com.fasterxml.jackson.core.jackson.annotations)
+}
+
+// Disable KAPT for test sources to avoid Jackson 3.x annotation processing issues
+afterEvaluate {
+ tasks.findByName("kaptTestKotlin")?.enabled = false
+ tasks.findByName("kaptGenerateStubsTestKotlin")?.enabled = false
}
diff --git a/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/autoconfig/JacksonAutoConfiguration.kt b/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/autoconfig/JacksonAutoConfiguration.kt
index 9da9a1b12..a226fefca 100644
--- a/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/autoconfig/JacksonAutoConfiguration.kt
+++ b/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/autoconfig/JacksonAutoConfiguration.kt
@@ -5,38 +5,38 @@ import com.fasterxml.jackson.annotation.JsonIgnoreProperties
import com.fasterxml.jackson.annotation.JsonInclude
import com.fasterxml.jackson.annotation.JsonTypeInfo
import com.fasterxml.jackson.annotation.PropertyAccessor
-import com.fasterxml.jackson.databind.AnnotationIntrospector
-import com.fasterxml.jackson.databind.DeserializationFeature
-import com.fasterxml.jackson.databind.ObjectMapper
-import com.fasterxml.jackson.databind.SerializationFeature
-import com.fasterxml.jackson.databind.cfg.MapperConfig
-import com.fasterxml.jackson.databind.introspect.Annotated
-import com.fasterxml.jackson.databind.introspect.AnnotatedClass
-import com.fasterxml.jackson.databind.introspect.AnnotatedMember
-import com.fasterxml.jackson.databind.introspect.AnnotationIntrospectorPair
-import com.fasterxml.jackson.databind.introspect.JacksonAnnotationIntrospector
-import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule
-import com.fasterxml.jackson.module.kotlin.KotlinModule
import io.github.truenine.composeserver.DateTimeConverter
import io.github.truenine.composeserver.depend.jackson.modules.DatetimeCustomModule
import io.github.truenine.composeserver.depend.jackson.modules.KotlinCustomModule
import io.github.truenine.composeserver.logger
+import java.text.SimpleDateFormat
import java.time.ZoneOffset
import java.util.*
-import org.springframework.beans.factory.config.ConfigurableBeanFactory
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean
-import org.springframework.boot.autoconfigure.jackson.Jackson2ObjectMapperBuilderCustomizer
import org.springframework.boot.context.properties.EnableConfigurationProperties
-import org.springframework.context.ApplicationContext
import org.springframework.context.annotation.Bean
import org.springframework.context.annotation.Configuration
-import org.springframework.context.annotation.Scope
import org.springframework.core.Ordered
import org.springframework.core.annotation.Order
-import org.springframework.http.converter.json.Jackson2ObjectMapperBuilder
+import tools.jackson.databind.AnnotationIntrospector
+import tools.jackson.databind.DefaultTyping
+import tools.jackson.databind.DeserializationFeature
+import tools.jackson.databind.JavaType
+import tools.jackson.databind.ObjectMapper
+import tools.jackson.databind.SerializationFeature
+import tools.jackson.databind.cfg.MapperConfig
+import tools.jackson.databind.introspect.Annotated
+import tools.jackson.databind.introspect.AnnotatedClass
+import tools.jackson.databind.introspect.AnnotatedMember
+import tools.jackson.databind.introspect.AnnotationIntrospectorPair
+import tools.jackson.databind.introspect.JacksonAnnotationIntrospector
+import tools.jackson.databind.json.JsonMapper
+import tools.jackson.databind.jsontype.BasicPolymorphicTypeValidator
+import tools.jackson.databind.jsontype.impl.DefaultTypeResolverBuilder
+import tools.jackson.module.kotlin.KotlinModule
/**
- * jackson json 序列化策略配置
+ * Jackson JSON serialization strategy configuration
*
* @author TrueNine
* @since 2023-02-23
@@ -49,79 +49,51 @@ class JacksonAutoConfiguration(private val jacksonProperties: JacksonProperties)
log.debug("jackson auto config...")
}
- private fun customize(builder: Jackson2ObjectMapperBuilder, customizers: List) {
- log.debug("start customizing jackson,builder: {}, customizers: {}", builder, customizers)
- for (customizer in customizers) {
- customizer.customize(builder)
+ private fun createBaseJsonMapperBuilder(): JsonMapper.Builder {
+ val kotlinModule = KotlinModule.Builder().build()
+
+ val builder = JsonMapper.builder()
+ builder.addModule(kotlinModule)
+
+ // Register custom modules
+ builder.addModule(DatetimeCustomModule())
+ builder.addModule(KotlinCustomModule())
+
+ builder.defaultTimeZone(TimeZone.getTimeZone(ZoneOffset.UTC))
+ builder.defaultLocale(Locale.US)
+ builder.defaultDateFormat(SimpleDateFormat(DateTimeConverter.DATETIME))
+
+ builder.enable(DeserializationFeature.ACCEPT_EMPTY_STRING_AS_NULL_OBJECT)
+ builder.enable(DeserializationFeature.ACCEPT_EMPTY_ARRAY_AS_NULL_OBJECT)
+
+ if (jacksonProperties.failOnUnknownProperties) {
+ builder.enable(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES)
+ } else {
+ builder.disable(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES)
}
- }
- @Bean
- @Scope(ConfigurableBeanFactory.SCOPE_PROTOTYPE)
- @ConditionalOnMissingBean(Jackson2ObjectMapperBuilder::class)
- fun jacksonObjectMapperBuilder(
- applicationContext: ApplicationContext,
- customizers: List?,
- ): Jackson2ObjectMapperBuilder {
- log.debug("replace spring web default jackson config, customizers: {}", customizers)
- val builder = Jackson2ObjectMapperBuilder()
- builder.applicationContext(applicationContext)
- if (customizers != null) {
- customize(builder, customizers)
+ builder.changeDefaultPropertyInclusion { incl -> incl.withValueInclusion(jacksonProperties.serializationInclusion) }
+
+ // Timestamp behavior is primarily controlled by DatetimeCustomModule; log configuration here
+ if (jacksonProperties.enableTimestampSerialization && jacksonProperties.writeDatesAsTimestamps) {
+ log.debug("enabled timestamp serialization with unit: {}", jacksonProperties.timestampUnit)
+ } else {
+ log.debug("disabled timestamp serialization")
}
+
return builder
}
+ @Order(Ordered.HIGHEST_PRECEDENCE)
@Bean(name = [DEFAULT_OBJECT_MAPPER_BEAN_NAME])
@ConditionalOnMissingBean(value = [ObjectMapper::class])
@org.springframework.context.annotation.Primary
@org.springframework.beans.factory.annotation.Qualifier(DEFAULT_OBJECT_MAPPER_BEAN_NAME)
- fun jacksonObjectMapper(builder: Jackson2ObjectMapperBuilder): ObjectMapper {
- log.debug("create jackson objectMapper, builder: {}", builder)
- return builder.createXmlMapper(false).build()
- }
+ fun jacksonObjectMapper(): ObjectMapper {
+ log.debug("create default JsonMapper")
+ val mapper = createBaseJsonMapperBuilder().build()
- @Bean
- fun jackson2ObjectMapperBuilderCustomizer(): Jackson2ObjectMapperBuilderCustomizer {
- log.debug("config jackson custom jackson2ObjectMapperBuilderCustomizer with properties: {}", jacksonProperties)
-
- // 移除硬编码时区,使用UTC作为基准
- val datetimeModuleCustom = DatetimeCustomModule()
- val kotlinModuleCustom = KotlinCustomModule()
- val kotlinModule = KotlinModule.Builder().build()
- val javaTimeModule = JavaTimeModule()
-
- return Jackson2ObjectMapperBuilderCustomizer { b ->
- b.modules(javaTimeModule, kotlinModule, datetimeModuleCustom, kotlinModuleCustom)
-
- // 使用UTC时区,避免时区问题
- b.timeZone(TimeZone.getTimeZone(ZoneOffset.UTC))
- b.locale(Locale.US)
- b.simpleDateFormat(DateTimeConverter.DATETIME)
- b.defaultViewInclusion(true)
- b.featuresToEnable(DeserializationFeature.ACCEPT_EMPTY_STRING_AS_NULL_OBJECT, DeserializationFeature.ACCEPT_EMPTY_ARRAY_AS_NULL_OBJECT)
-
- // 根据配置启用或禁用时间戳序列化
- if (jacksonProperties.enableTimestampSerialization && jacksonProperties.writeDatesAsTimestamps) {
- b.featuresToEnable(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS)
- log.debug("enabled timestamp serialization with unit: {}", jacksonProperties.timestampUnit)
- } else {
- b.featuresToDisable(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS)
- log.debug("disabled timestamp serialization")
- }
-
- b.featuresToDisable(SerializationFeature.WRITE_DURATIONS_AS_TIMESTAMPS)
-
- // 根据配置设置序列化包含策略
- b.serializationInclusion(jacksonProperties.serializationInclusion)
-
- // 根据配置设置未知属性处理
- if (jacksonProperties.failOnUnknownProperties) {
- b.featuresToEnable(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES)
- } else {
- b.featuresToDisable(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES)
- }
- }
+ return mapper
}
companion object {
@@ -131,45 +103,72 @@ class JacksonAutoConfiguration(private val jacksonProperties: JacksonProperties)
@JvmStatic private val log = logger()
}
- /** 安全的忽略注解内省器,只在特定条件下忽略属性 */
+ /** Safe ignore annotation introspector, only ignores properties under specific conditions */
class SafeIgnoreAnnotationIntrospector : JacksonAnnotationIntrospector() {
override fun findPropertyIgnoralByName(config: MapperConfig<*>?, a: Annotated?): JsonIgnoreProperties.Value? {
- // 只在特定条件下忽略属性,避免所有属性都被忽略
+ // Only ignore properties under specific conditions to avoid ignoring all properties
return null
}
override fun _isIgnorable(a: Annotated?): Boolean = false
- override fun hasIgnoreMarker(m: AnnotatedMember?): Boolean = false
+ override fun hasIgnoreMarker(config: MapperConfig<*>?, m: AnnotatedMember?): Boolean = false
- override fun isIgnorableType(ac: AnnotatedClass?): Boolean = false
+ override fun isIgnorableType(config: MapperConfig<*>?, ac: AnnotatedClass?): Boolean = false
}
class IgnoreIntroPair(primary: AnnotationIntrospector, secondary: AnnotationIntrospector) : AnnotationIntrospectorPair(primary, secondary) {
override fun findPropertyIgnoralByName(config: MapperConfig<*>?, a: Annotated?): JsonIgnoreProperties.Value = JsonIgnoreProperties.Value.empty()
- override fun hasIgnoreMarker(m: AnnotatedMember?): Boolean = false
+ override fun hasIgnoreMarker(config: MapperConfig<*>?, m: AnnotatedMember?): Boolean = false
- override fun isIgnorableType(ac: AnnotatedClass?): Boolean = false
+ override fun isIgnorableType(config: MapperConfig<*>?, ac: AnnotatedClass?): Boolean = false
}
@Order(Ordered.LOWEST_PRECEDENCE)
@Bean(name = [NON_IGNORE_OBJECT_MAPPER_BEAN_NAME])
@org.springframework.beans.factory.annotation.Qualifier("nonIgnoreObjectMapper")
- fun nonIgnoreObjectMapper(mapper: ObjectMapper): ObjectMapper {
- log.debug("register non-ignore objectMapper, defaultMapper = {}", mapper)
- return mapper.copy().apply {
- disable(SerializationFeature.FAIL_ON_EMPTY_BEANS)
- // 确保KotlinModule只注册一次,避免重复注册
- if (!registeredModuleIds.contains(KotlinModule::class.java.name)) {
- registerModules(KotlinModule.Builder().build())
+ fun nonIgnoreObjectMapper(): JsonMapper {
+ log.debug("register non-ignore objectMapper")
+ // Create a base mapper to avoid circular dependency
+ val baseMapper = createBaseJsonMapperBuilder().build()
+
+ val builder = JsonMapper.builder()
+
+ // Preserve modules from the base mapper
+ baseMapper.registeredModules().forEach { module -> builder.addModule(module) }
+
+ builder.disable(SerializationFeature.FAIL_ON_EMPTY_BEANS)
+ builder.changeDefaultPropertyInclusion { incl -> incl.withValueInclusion(JsonInclude.Include.NON_NULL) }
+ builder.changeDefaultVisibility { vc -> vc.withVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY) }
+ // Use a safe annotation introspector, paired with the original introspector
+ val originalIntrospector = baseMapper.deserializationConfig().annotationIntrospector
+ builder.annotationIntrospector(IgnoreIntroPair(originalIntrospector, SafeIgnoreAnnotationIntrospector()))
+ val polymorphicTypeValidator = BasicPolymorphicTypeValidator.builder().allowIfBaseType(Any::class.java).build()
+ val defaultTypingBuilder =
+ object : DefaultTypeResolverBuilder(polymorphicTypeValidator, DefaultTyping.NON_FINAL_AND_ENUMS, JsonTypeInfo.As.PROPERTY) {
+ override fun useForType(t: JavaType): Boolean {
+ if (isJacksonNaturalType(t)) {
+ return false
+ }
+ if (super.useForType(t)) {
+ return true
+ }
+ return !t.isPrimitive
+ }
}
- setSerializationInclusion(JsonInclude.Include.NON_NULL)
- setVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY)
- activateDefaultTyping(polymorphicTypeValidator, ObjectMapper.DefaultTyping.EVERYTHING, JsonTypeInfo.As.PROPERTY)
- // 使用安全的注解内省器,与原有的内省器配对
- val originalIntrospector = deserializationConfig.annotationIntrospector
- setAnnotationIntrospector(IgnoreIntroPair(originalIntrospector, SafeIgnoreAnnotationIntrospector()))
+ builder.setDefaultTyping(defaultTypingBuilder)
+ return builder.build()
+ }
+
+ private fun isJacksonNaturalType(javaType: JavaType): Boolean {
+ val rawClass = javaType.rawClass
+ if (rawClass.isPrimitive) {
+ return true
}
+ return rawClass == String::class.java ||
+ CharSequence::class.java.isAssignableFrom(rawClass) ||
+ rawClass == java.lang.Boolean::class.java ||
+ rawClass == Character::class.java
}
}
diff --git a/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/autoconfig/JacksonProperties.kt b/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/autoconfig/JacksonProperties.kt
index e4027915e..df306d7d4 100644
--- a/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/autoconfig/JacksonProperties.kt
+++ b/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/autoconfig/JacksonProperties.kt
@@ -4,36 +4,36 @@ import com.fasterxml.jackson.annotation.JsonInclude
import org.springframework.boot.context.properties.ConfigurationProperties
/**
- * Jackson配置属性类
+ * Jackson configuration properties class
*
- * 提供统一的Jackson配置管理,支持时间戳序列化等核心功能的配置
+ * Provides centralized Jackson configuration management, supporting core features like timestamp serialization.
*
* @author TrueNine
* @since 2025-01-16
*/
@ConfigurationProperties(prefix = "compose.depend.jackson")
data class JacksonProperties(
- /** 是否启用时间戳序列化 默认为true,将所有时间类型序列化为时间戳 */
+ /** Whether to enable timestamp serialization. Defaults to true, serializing all time types as timestamps. */
var enableTimestampSerialization: Boolean = true,
- /** 时间戳单位配置 默认使用毫秒时间戳 */
+ /** Timestamp unit configuration. Defaults to using millisecond timestamps. */
var timestampUnit: TimestampUnit = TimestampUnit.MILLISECONDS,
- /** 序列化包含策略 默认不包含null值 */
+ /** Serialization inclusion policy. Defaults to not including null values. */
var serializationInclusion: JsonInclude.Include = JsonInclude.Include.NON_NULL,
- /** 遇到未知属性时是否失败 默认为false,忽略未知属性 */
+ /** Whether to fail on unknown properties. Defaults to false, ignoring unknown properties. */
var failOnUnknownProperties: Boolean = false,
- /** 是否将日期写为时间戳 默认为true,与enableTimestampSerialization保持一致 */
+ /** Whether to write dates as timestamps. Defaults to true, consistent with enableTimestampSerialization. */
var writeDatesAsTimestamps: Boolean = true,
)
-/** 时间戳单位枚举 */
+/** Timestamp unit enum */
enum class TimestampUnit {
- /** 毫秒时间戳(默认) */
+ /** Millisecond timestamp (default) */
MILLISECONDS,
- /** 秒时间戳 */
+ /** Second timestamp */
SECONDS,
}
diff --git a/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/autoconfig/README.md b/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/autoconfig/README.md
index 1897073eb..bd432ebfd 100644
--- a/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/autoconfig/README.md
+++ b/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/autoconfig/README.md
@@ -1,20 +1,20 @@
-# Jackson配置管理组件
+# Jackson configuration management module
-本模块提供了统一的Jackson配置管理功能,包括配置属性类和ObjectMapper持有者。
+This module provides centralized Jackson configuration management, including a configuration properties class and an ObjectMapper holder.
-## JacksonProperties配置类
+## JacksonProperties configuration class
-`JacksonProperties`是一个Spring Boot配置属性类,提供了Jackson的核心配置选项:
+`JacksonProperties` is a Spring Boot configuration properties class exposing core Jackson options:
-### 配置属性
+### Properties
-- `compose.jackson.enableTimestampSerialization`: 是否启用时间戳序列化(默认:true)
-- `compose.jackson.timestampUnit`: 时间戳单位,MILLISECONDS或SECONDS(默认:MILLISECONDS)
-- `compose.jackson.serializationInclusion`: 序列化包含策略(默认:NON_NULL)
-- `compose.jackson.failOnUnknownProperties`: 遇到未知属性时是否失败(默认:false)
-- `compose.jackson.writeDatesAsTimestamps`: 是否将日期写为时间戳(默认:true)
+- `compose.jackson.enableTimestampSerialization`: Whether to enable timestamp serialization (default: true)
+- `compose.jackson.timestampUnit`: Timestamp unit, `MILLISECONDS` or `SECONDS` (default: `MILLISECONDS`)
+- `compose.jackson.serializationInclusion`: Serialization inclusion strategy (default: `NON_NULL`)
+- `compose.jackson.failOnUnknownProperties`: Whether to fail on unknown properties (default: false)
+- `compose.jackson.writeDatesAsTimestamps`: Whether to write dates as timestamps (default: true)
-### 使用示例
+### Example
```yaml
compose:
@@ -26,37 +26,37 @@ compose:
writeDatesAsTimestamps: true
```
-## ObjectMapperHolder配置持有者
+## ObjectMapperHolder configuration holder
-`ObjectMapperHolder`是一个Spring组件,提供统一的ObjectMapper访问接口:
+`ObjectMapperHolder` is a Spring component that provides unified access to different `ObjectMapper` instances:
-### 主要方法
+### Key methods
-- `getDefaultMapper()`: 获取默认配置的ObjectMapper
-- `getNonIgnoreMapper()`: 获取非忽略配置的ObjectMapper
-- `getMapper(ignoreUnknown: Boolean = true)`: 根据参数获取相应配置的ObjectMapper
+- `getDefaultMapper()`: Get the default configured ObjectMapper
+- `getNonIgnoreMapper()`: Get the ObjectMapper that does not ignore unknown properties
+- `getMapper(ignoreUnknown: Boolean = true)`: Get an ObjectMapper according to the `ignoreUnknown` flag
-### 使用示例
+### Usage example
```kotlin
@Resource
private lateinit var objectMapperHolder: ObjectMapperHolder
fun example() {
- // 获取默认mapper(忽略未知属性)
+ // Get default mapper (ignores unknown properties)
val defaultMapper = objectMapperHolder.getDefaultMapper()
-
- // 获取非忽略mapper(不忽略未知属性)
+
+ // Get non-ignore mapper (does not ignore unknown properties)
val nonIgnoreMapper = objectMapperHolder.getNonIgnoreMapper()
-
- // 根据需要选择mapper
+
+ // Choose mapper as needed
val mapper = objectMapperHolder.getMapper(ignoreUnknown = false)
}
```
-## Bean命名规范
+## Bean naming convention
-- `defaultObjectMapper`: 默认ObjectMapper Bean
-- `nonIgnoreObjectMapper`: 非忽略ObjectMapper Bean
+- `defaultObjectMapper`: Default ObjectMapper bean
+- `nonIgnoreObjectMapper`: Non-ignore ObjectMapper bean
-这些Bean名称在`JacksonAutoConfiguration`中定义,确保了命名的一致性。
+These bean names are defined in `JacksonAutoConfiguration` to ensure consistent naming.
diff --git a/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/holders/ObjectMapperHolder.kt b/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/holders/ObjectMapperHolder.kt
index 406c1a7a1..bcd80ba90 100644
--- a/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/holders/ObjectMapperHolder.kt
+++ b/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/holders/ObjectMapperHolder.kt
@@ -1,16 +1,16 @@
package io.github.truenine.composeserver.depend.jackson.holders
-import com.fasterxml.jackson.databind.ObjectMapper
import io.github.truenine.composeserver.depend.jackson.autoconfig.JacksonAutoConfiguration.Companion.DEFAULT_OBJECT_MAPPER_BEAN_NAME
import io.github.truenine.composeserver.depend.jackson.autoconfig.JacksonAutoConfiguration.Companion.NON_IGNORE_OBJECT_MAPPER_BEAN_NAME
import io.github.truenine.composeserver.logger
import jakarta.annotation.Resource
import org.springframework.stereotype.Component
+import tools.jackson.databind.ObjectMapper
/**
- * ObjectMapper配置持有者
+ * ObjectMapper configuration holder.
*
- * 提供统一的ObjectMapper访问接口,支持获取不同配置的ObjectMapper实例
+ * Provides unified access to ObjectMapper instances with different configurations.
*
* @author TrueNine
* @since 2025-01-16
@@ -23,9 +23,9 @@ class ObjectMapperHolder {
@Resource(name = NON_IGNORE_OBJECT_MAPPER_BEAN_NAME) private lateinit var nonIgnoreMapper: ObjectMapper
/**
- * 获取默认的ObjectMapper
+ * Get the default ObjectMapper.
*
- * @return 默认配置的ObjectMapper
+ * @return Default configured ObjectMapper
*/
fun getDefaultMapper(): ObjectMapper {
log.debug("getting default ObjectMapper: {}", DEFAULT_OBJECT_MAPPER_BEAN_NAME)
@@ -33,9 +33,9 @@ class ObjectMapperHolder {
}
/**
- * 获取非忽略配置的ObjectMapper
+ * Get the ObjectMapper that does not ignore unknown properties.
*
- * @return 非忽略配置的ObjectMapper
+ * @return Non-ignore configured ObjectMapper
*/
fun getNonIgnoreMapper(): ObjectMapper {
log.debug("getting non-ignore ObjectMapper: {}", NON_IGNORE_OBJECT_MAPPER_BEAN_NAME)
@@ -43,10 +43,10 @@ class ObjectMapperHolder {
}
/**
- * 根据是否忽略未知属性获取相应的ObjectMapper
+ * Get ObjectMapper according to whether unknown properties should be ignored.
*
- * @param ignoreUnknown 是否忽略未知属性,默认为true
- * @return 相应配置的ObjectMapper
+ * @param ignoreUnknown Whether to ignore unknown properties, default true
+ * @return ObjectMapper with corresponding configuration
*/
fun getMapper(ignoreUnknown: Boolean = true): ObjectMapper {
return if (ignoreUnknown) {
diff --git a/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/modules/DatetimeCustomModule.kt b/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/modules/DatetimeCustomModule.kt
index 81ace8fa0..6fe927c83 100644
--- a/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/modules/DatetimeCustomModule.kt
+++ b/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/modules/DatetimeCustomModule.kt
@@ -1,10 +1,5 @@
package io.github.truenine.composeserver.depend.jackson.modules
-import com.fasterxml.jackson.databind.JsonDeserializer
-import com.fasterxml.jackson.databind.JsonSerializer
-import com.fasterxml.jackson.databind.module.SimpleDeserializers
-import com.fasterxml.jackson.databind.module.SimpleModule
-import com.fasterxml.jackson.databind.module.SimpleSerializers
import io.github.truenine.composeserver.depend.jackson.serializers.InstantTimestampDeserializer
import io.github.truenine.composeserver.depend.jackson.serializers.InstantTimestampSerializer
import io.github.truenine.composeserver.depend.jackson.serializers.LocalDateTimeTimestampDeserializer
@@ -23,11 +18,16 @@ import java.time.LocalDateTime
import java.time.LocalTime
import java.time.OffsetDateTime
import java.time.ZonedDateTime
+import tools.jackson.databind.ValueDeserializer
+import tools.jackson.databind.ValueSerializer
+import tools.jackson.databind.module.SimpleDeserializers
+import tools.jackson.databind.module.SimpleModule
+import tools.jackson.databind.module.SimpleSerializers
/**
- * 时间类型自定义模块
+ * Custom module for date-time types.
*
- * 使用时间戳序列化器,将所有时间类型序列化为UTC时间戳(毫秒),确保时区无关性
+ * Uses timestamp serializers to serialize all date-time types to UTC timestamps (in milliseconds), ensuring time-zone independence.
*
* @author TrueNine
* @since 2025-01-16
@@ -37,10 +37,10 @@ class DatetimeCustomModule : SimpleModule() {
override fun setupModule(context: SetupContext?) {
super.setupModule(context)
- // 创建时间戳序列化器容器
- val serializers = ArrayList>(6)
+ // Create a container for timestamp serializers
+ val serializers = ArrayList>(6)
- // 注册所有时间类型的时间戳序列化器,确保时间戳序列化优先级最高
+ // Register timestamp serializers for all date-time types, ensuring highest priority
serializers.add(LocalDateTimeTimestampSerializer())
serializers.add(LocalDateTimestampSerializer())
serializers.add(LocalTimeTimestampSerializer())
@@ -48,11 +48,11 @@ class DatetimeCustomModule : SimpleModule() {
serializers.add(ZonedDateTimeTimestampSerializer())
serializers.add(OffsetDateTimeTimestampSerializer())
- // 添加到上下文
+ // Add to the context
context?.addSerializers(SimpleSerializers(serializers))
- // 创建时间戳反序列化器容器
- val deserializers = ArrayList>(6)
+ // Create a container for timestamp deserializers
+ val deserializers = ArrayList>(6)
deserializers.add(LocalDateTimeTimestampDeserializer())
deserializers.add(LocalDateTimestampDeserializer())
diff --git a/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/modules/KotlinCustomModule.kt b/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/modules/KotlinCustomModule.kt
index c80c5eafc..8b7d149ae 100644
--- a/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/modules/KotlinCustomModule.kt
+++ b/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/modules/KotlinCustomModule.kt
@@ -1,33 +1,33 @@
package io.github.truenine.composeserver.depend.jackson.modules
-import com.fasterxml.jackson.databind.module.SimpleDeserializers
-import com.fasterxml.jackson.databind.module.SimpleModule
-import com.fasterxml.jackson.databind.module.SimpleSerializers
import io.github.truenine.composeserver.depend.jackson.serializers.IPageParamLikeSerializer
import io.github.truenine.composeserver.depend.jackson.serializers.KPairDeserializer
import io.github.truenine.composeserver.depend.jackson.serializers.KPairSerializer
import io.github.truenine.composeserver.domain.IPageParam
import io.github.truenine.composeserver.domain.IPageParamLike
+import tools.jackson.core.Version
+import tools.jackson.databind.module.SimpleDeserializers
+import tools.jackson.databind.module.SimpleModule
+import tools.jackson.databind.module.SimpleSerializers
/**
- * Kotlin自定义模块
+ * Custom Kotlin Jackson module.
*
- * 提供Kotlin特有类型的序列化和反序列化支持,包括:
- * - Pair类型的序列化/反序列化
- * - IPageParam和IPageParamLike的序列化/反序列化
+ * Provides serialization and deserialization support for Kotlin-specific types, including:
+ * - Pair type serialization / deserialization
+ * - IPageParam and IPageParamLike serialization / deserialization
*
- * 该模块与时间戳序列化模块兼容,不会干扰时间类型的序列化行为
+ * This module is compatible with timestamp serializers and does not interfere with time type handling.
*/
-class KotlinCustomModule :
- SimpleModule(KotlinCustomModule::class.java.name, com.fasterxml.jackson.core.Version(1, 0, 0, "", "io.github.truenine", "composeserver")) {
+class KotlinCustomModule : SimpleModule(KotlinCustomModule::class.java.name, Version(1, 0, 0, "", "io.github.truenine", "composeserver")) {
override fun setupModule(context: SetupContext) {
super.setupModule(context)
- // 注册序列化器
+ // Register serializers
context.addSerializers(SimpleSerializers().apply { addSerializer(Pair::class.java, KPairSerializer()) })
- // 注册反序列化器
+ // Register deserializers
context.addDeserializers(
SimpleDeserializers().apply {
addDeserializer(Pair::class.java, KPairDeserializer())
diff --git a/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/AnyEnumConverter.kt b/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/AnyEnumConverter.kt
index 5ae9d9a6d..4098ac397 100644
--- a/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/AnyEnumConverter.kt
+++ b/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/AnyEnumConverter.kt
@@ -1,15 +1,15 @@
package io.github.truenine.composeserver.depend.jackson.serializers
-import com.fasterxml.jackson.core.JsonParser
-import com.fasterxml.jackson.core.JsonToken
-import com.fasterxml.jackson.databind.DeserializationContext
-import com.fasterxml.jackson.databind.deser.std.StdDeserializer
import io.github.truenine.composeserver.IAnyEnum
import io.github.truenine.composeserver.IIntEnum
import io.github.truenine.composeserver.IStringEnum
import kotlin.reflect.KClass
+import tools.jackson.core.JsonParser
+import tools.jackson.core.JsonToken
+import tools.jackson.databind.DeserializationContext
+import tools.jackson.databind.deser.std.StdDeserializer
-@Deprecated(message = "API 负担过大", level = DeprecationLevel.ERROR)
+@Deprecated(message = "API surface is too heavy", level = DeprecationLevel.ERROR)
class AnyEnumConverter(typingType: KClass>) : StdDeserializer>(Enum::class.java) {
private var isIntEnum: Boolean = IIntEnum::class.java.isAssignableFrom(typingType.java)
private var isStringEnum: Boolean = IStringEnum::class.java.isAssignableFrom(typingType.java)
@@ -18,7 +18,7 @@ class AnyEnumConverter(typingType: KClass>) : StdDeserializer>(E
private val enumOrdinalMap: Map> = typingType.java.enumConstants.associateBy { it.ordinal }
override fun deserialize(p: JsonParser?, ctxt: DeserializationContext?): Enum<*>? {
- val token = p?.currentToken
+ val token = p?.currentToken()
return when (token) {
JsonToken.VALUE_STRING -> {
val nameOrValue = p.text
diff --git a/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/AnyEnumSerializer.kt b/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/AnyEnumSerializer.kt
index a64b86842..a99c0dcd7 100644
--- a/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/AnyEnumSerializer.kt
+++ b/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/AnyEnumSerializer.kt
@@ -1,20 +1,20 @@
package io.github.truenine.composeserver.depend.jackson.serializers
-import com.fasterxml.jackson.core.JsonGenerator
-import com.fasterxml.jackson.databind.JsonSerializer
-import com.fasterxml.jackson.databind.SerializerProvider
import io.github.truenine.composeserver.IAnyEnum
import io.github.truenine.composeserver.IIntEnum
import io.github.truenine.composeserver.IStringEnum
+import tools.jackson.core.JsonGenerator
+import tools.jackson.databind.SerializationContext
+import tools.jackson.databind.ValueSerializer
-@Deprecated(message = "API 负担过大", level = DeprecationLevel.ERROR)
-class AnyEnumSerializer : JsonSerializer() {
+@Deprecated(message = "API surface is too heavy", level = DeprecationLevel.ERROR)
+class AnyEnumSerializer : ValueSerializer() {
override fun handledType(): Class {
return IAnyEnum::class.java
}
- override fun serialize(value: IAnyEnum?, gen: JsonGenerator?, serializers: SerializerProvider?) {
+ override fun serialize(value: IAnyEnum?, gen: JsonGenerator?, ctxt: SerializationContext?) {
when (value) {
is IStringEnum -> gen?.writeString(value.value)
is IIntEnum -> gen?.writeNumber(value.value)
diff --git a/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/IPageParamLikeSerializer.kt b/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/IPageParamLikeSerializer.kt
index dde75d44c..85c1155fc 100644
--- a/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/IPageParamLikeSerializer.kt
+++ b/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/IPageParamLikeSerializer.kt
@@ -1,38 +1,38 @@
package io.github.truenine.composeserver.depend.jackson.serializers
-import com.fasterxml.jackson.core.JsonParser
-import com.fasterxml.jackson.core.JsonToken
-import com.fasterxml.jackson.databind.DeserializationContext
-import com.fasterxml.jackson.databind.JsonDeserializer
-import com.fasterxml.jackson.databind.JsonMappingException
import io.github.truenine.composeserver.Pq
import io.github.truenine.composeserver.domain.IPageParam
+import tools.jackson.core.JsonParser
+import tools.jackson.core.JsonToken
+import tools.jackson.databind.DatabindException
+import tools.jackson.databind.DeserializationContext
+import tools.jackson.databind.ValueDeserializer
/**
- * IPageParam和IPageParamLike反序列化器
+ * Deserializer for IPageParam and IPageParamLike interfaces.
*
- * 支持从JSON对象反序列化为IPageParam实例 预期JSON格式: {"o": offset, "s": pageSize, "u": unPage}
+ * Supports deserialization from a JSON object to an IPageParam instance. Expected JSON format: {"o": offset, "s": pageSize, "u": unPage}
*/
-class IPageParamLikeSerializer : JsonDeserializer() {
+class IPageParamLikeSerializer : ValueDeserializer() {
override fun deserialize(p: JsonParser?, ctxt: DeserializationContext?): IPageParam? {
if (p == null) {
- throw JsonMappingException.from(ctxt, "JsonParser cannot be null for IPageParam deserialization")
+ throw DatabindException.from(ctxt, "JsonParser cannot be null for IPageParam deserialization")
}
- // 检查当前token是否为对象开始
- if (p.currentToken != JsonToken.START_OBJECT) {
- throw JsonMappingException.from(ctxt, "Expected START_OBJECT token for IPageParam deserialization, got: ${p.currentToken}")
+ // Check if the current token is the start of an object
+ if (p.currentToken() != JsonToken.START_OBJECT) {
+ throw DatabindException.from(ctxt, "Expected START_OBJECT token for IPageParam deserialization, got: ${p.currentToken()}")
}
var offset: Int? = null
var pageSize: Int? = null
var unPage: Boolean? = null
- // 遍历JSON对象的字段
+ // Iterate over the fields of the JSON object
while (p.nextToken() != JsonToken.END_OBJECT) {
val fieldName = p.currentName()
- p.nextToken() // 移动到字段值
+ p.nextToken() // Move to the field value
when (fieldName) {
"o" -> {
@@ -48,32 +48,32 @@ class IPageParamLikeSerializer : JsonDeserializer() {
}
else -> {
- // 跳过未知字段
+ // Skip unknown fields
p.skipChildren()
}
}
}
- // 使用Pq工厂方法创建IPageParam实例
+ // Use the Pq factory method to create an IPageParam instance
return Pq[offset, pageSize, unPage]
}
- /** 安全解析Int值的扩展函数 */
+ /** Extension function to safely parse an Int value */
private fun JsonParser.intValueOrNull(): Int? {
return when {
- currentToken.isNumeric -> intValue
- currentToken == JsonToken.VALUE_NULL -> null
- else -> throw JsonMappingException.from(null as DeserializationContext?, "Expected numeric value for int field, got: $currentToken")
+ currentToken().isNumeric -> intValue
+ currentToken() == JsonToken.VALUE_NULL -> null
+ else -> throw DatabindException.from(null as DeserializationContext?, "Expected numeric value for int field, got: ${currentToken()}")
}
}
- /** 安全解析Boolean值的扩展函数 */
+ /** Extension function to safely parse a Boolean value */
private fun JsonParser.booleanValueOrNull(): Boolean? {
- return when (currentToken) {
+ return when (currentToken()) {
JsonToken.VALUE_TRUE -> true
JsonToken.VALUE_FALSE -> false
JsonToken.VALUE_NULL -> null
- else -> throw JsonMappingException.from(null as DeserializationContext?, "Expected boolean value for boolean field, got: $currentToken")
+ else -> throw DatabindException.from(null as DeserializationContext?, "Expected boolean value for boolean field, got: ${currentToken()}")
}
}
}
diff --git a/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/ISO8601Deserializer.kt b/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/ISO8601Deserializer.kt
index ba3cadb9a..8c3bc82b1 100644
--- a/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/ISO8601Deserializer.kt
+++ b/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/ISO8601Deserializer.kt
@@ -1,8 +1,5 @@
package io.github.truenine.composeserver.depend.jackson.serializers
-import com.fasterxml.jackson.core.JsonParser
-import com.fasterxml.jackson.databind.DeserializationContext
-import com.fasterxml.jackson.databind.JsonDeserializer
import io.github.truenine.composeserver.toLocalDate
import io.github.truenine.composeserver.toLocalDateTime
import io.github.truenine.composeserver.toLocalTime
@@ -11,16 +8,19 @@ import java.time.LocalDateTime
import java.time.LocalTime
import java.time.ZoneOffset
import java.time.temporal.Temporal
+import tools.jackson.core.JsonParser
+import tools.jackson.databind.DeserializationContext
+import tools.jackson.databind.ValueDeserializer
/**
- * ISO8601时间反序列化抽象基类
+ * Abstract base class for ISO8601 timestamp deserialization.
*
- * 用于处理时间戳字符串反序列化为Java时间类型(LocalDate, LocalTime, LocalDateTime等)
+ * Handles converting timestamp strings to Java time types (LocalDate, LocalTime, LocalDateTime, etc.).
*
- * @param T 目标时间类型
- * @param zoneOffset 时区偏移量,用于时间戳转换
+ * @param T Target time type
+ * @param zoneOffset Zone offset used when converting timestamps
*/
-abstract class ISO8601Deserializer(protected val zoneOffset: ZoneOffset) : JsonDeserializer() {
+abstract class ISO8601Deserializer(protected val zoneOffset: ZoneOffset) : ValueDeserializer() {
override fun deserialize(p: JsonParser?, ctxt: DeserializationContext?): T? {
val timestamp: Long? = p?.valueAsString?.toLongOrNull()
@@ -28,28 +28,28 @@ abstract class ISO8601Deserializer(protected val zoneOffset: ZoneO
}
/**
- * 将时间戳转换为目标时间类型
+ * Convert a timestamp to the target time type.
*
- * @param timestamp 时间戳
- * @return 转换后的时间对象
+ * @param timestamp Timestamp value
+ * @return Converted time instance
*/
protected abstract fun convertTimestamp(timestamp: Long): T
- /** LocalDate 类型的反序列化器 */
+ /** LocalDate deserializer. */
class LocalDateDeserializerX(zoneOffset: ZoneOffset) : ISO8601Deserializer(zoneOffset) {
override fun convertTimestamp(timestamp: Long): LocalDate {
return timestamp.toLocalDate(zoneOffset)
}
}
- /** LocalDateTime 类型的反序列化器 */
+ /** LocalDateTime deserializer. */
class LocalDateTimeDeserializerZ(zoneOffset: ZoneOffset) : ISO8601Deserializer(zoneOffset) {
override fun convertTimestamp(timestamp: Long): LocalDateTime {
return timestamp.toLocalDateTime(zoneOffset)
}
}
- /** LocalTime 类型的反序列化器 */
+ /** LocalTime deserializer. */
class LocalTimeDeserializerY(zoneOffset: ZoneOffset) : ISO8601Deserializer(zoneOffset) {
override fun convertTimestamp(timestamp: Long): LocalTime {
return timestamp.toLocalTime(zoneOffset)
@@ -57,20 +57,20 @@ abstract class ISO8601Deserializer(protected val zoneOffset: ZoneO
}
companion object {
- /** 向后兼容别名 */
+ /** Backward-compatible alias. */
@JvmField val LocalDateDeserializer = LocalDateDeserializerX::class.java
- /** 向后兼容别名 */
+ /** Backward-compatible alias. */
@JvmField val LocalDateTimeDeserializer = LocalDateTimeDeserializerZ::class.java
- /** 向后兼容别名 */
+ /** Backward-compatible alias. */
@JvmField val LocalTimeDeserializer = LocalTimeDeserializerY::class.java
/**
- * 创建LocalDate反序列化器实例
+ * Create a LocalDate deserializer instance.
*
- * @param zoneOffset 时区偏移量
- * @return LocalDate反序列化器
+ * @param zoneOffset Zone offset
+ * @return LocalDate deserializer
*/
@JvmStatic
fun forLocalDate(zoneOffset: ZoneOffset): LocalDateDeserializerX {
@@ -78,10 +78,10 @@ abstract class ISO8601Deserializer(protected val zoneOffset: ZoneO
}
/**
- * 创建LocalDateTime反序列化器实例
+ * Create a LocalDateTime deserializer instance.
*
- * @param zoneOffset 时区偏移量
- * @return LocalDateTime反序列化器
+ * @param zoneOffset Zone offset
+ * @return LocalDateTime deserializer
*/
@JvmStatic
fun forLocalDateTime(zoneOffset: ZoneOffset): LocalDateTimeDeserializerZ {
@@ -89,10 +89,10 @@ abstract class ISO8601Deserializer(protected val zoneOffset: ZoneO
}
/**
- * 创建LocalTime反序列化器实例
+ * Create a LocalTime deserializer instance.
*
- * @param zoneOffset 时区偏移量
- * @return LocalTime反序列化器
+ * @param zoneOffset Zone offset
+ * @return LocalTime deserializer
*/
@JvmStatic
fun forLocalTime(zoneOffset: ZoneOffset): LocalTimeDeserializerY {
@@ -100,10 +100,10 @@ abstract class ISO8601Deserializer(protected val zoneOffset: ZoneO
}
/**
- * LocalDateDeserializer 的别名,用于向后兼容
+ * Alias for LocalDateDeserializer, kept for backward compatibility.
*
- * @param zoneOffset 时区偏移量
- * @return LocalDate反序列化器
+ * @param zoneOffset Zone offset
+ * @return LocalDate deserializer
*/
@JvmStatic
fun LocalDateDeserializer(zoneOffset: ZoneOffset): LocalDateDeserializerX {
@@ -111,10 +111,10 @@ abstract class ISO8601Deserializer(protected val zoneOffset: ZoneO
}
/**
- * LocalDateTimeDeserializer 的别名,用于向后兼容
+ * Alias for LocalDateTimeDeserializer, kept for backward compatibility.
*
- * @param zoneOffset 时区偏移量
- * @return LocalDateTime反序列化器
+ * @param zoneOffset Zone offset
+ * @return LocalDateTime deserializer
*/
@JvmStatic
fun LocalDateTimeDeserializer(zoneOffset: ZoneOffset): LocalDateTimeDeserializerZ {
@@ -122,10 +122,10 @@ abstract class ISO8601Deserializer(protected val zoneOffset: ZoneO
}
/**
- * LocalTimeDeserializer 的别名,用于向后兼容
+ * Alias for LocalTimeDeserializer, kept for backward compatibility.
*
- * @param zoneOffset 时区偏移量
- * @return LocalTime反序列化器
+ * @param zoneOffset Zone offset
+ * @return LocalTime deserializer
*/
@JvmStatic
fun LocalTimeDeserializer(zoneOffset: ZoneOffset): LocalTimeDeserializerY {
diff --git a/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/ISO8601Serializer.kt b/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/ISO8601Serializer.kt
index 09993c9e5..1dc32e0e5 100644
--- a/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/ISO8601Serializer.kt
+++ b/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/ISO8601Serializer.kt
@@ -1,128 +1,129 @@
package io.github.truenine.composeserver.depend.jackson.serializers
-import com.fasterxml.jackson.core.JsonGenerator
-import com.fasterxml.jackson.core.JsonToken
-import com.fasterxml.jackson.databind.JsonSerializer
-import com.fasterxml.jackson.databind.SerializerProvider
-import com.fasterxml.jackson.databind.jsontype.TypeSerializer
import io.github.truenine.composeserver.toMillis
import java.time.LocalDate
import java.time.LocalDateTime
import java.time.LocalTime
import java.time.ZoneOffset
+import tools.jackson.core.JsonGenerator
+import tools.jackson.core.JsonToken
+import tools.jackson.databind.SerializationContext
+import tools.jackson.databind.ValueSerializer
+import tools.jackson.databind.jsontype.TypeSerializer
/**
- * # ISO8601 标准毫秒时间戳序列化器
+ * # ISO8601 millisecond timestamp serializer
*
- * 为 Java 时间类型提供 ISO8601 标准的 JSON 序列化支持,将日期时间转换为时间戳格式
+ * Provides JSON serialization for Java time types using ISO8601-style timestamps.
*
- * @param T 需要序列化的时间类型,支持 LocalDate、LocalDateTime 和 LocalTime
+ * @param T Time type to serialize, supports LocalDate, LocalDateTime and LocalTime
* @author TrueNine
* @since 2025-04-26
*/
-sealed class ISO8601Serializer : JsonSerializer() {
+sealed class ISO8601Serializer : ValueSerializer() {
/**
- * ## 带类型信息的序列化
+ * ## Serialization with type information.
*
- * @param value 需要序列化的值
- * @param gen JSON生成器
- * @param serializers 序列化提供者
- * @param typeSer 类型序列化器
+ * @param value Value to serialize
+ * @param gen JSON generator
+ * @param serializers Serialization provider
+ * @param typeSer Type serializer
*/
- override fun serializeWithType(value: T, gen: JsonGenerator?, serializers: SerializerProvider?, typeSer: TypeSerializer) {
- // 使用 VALUE_NUMBER_INT 作为 shape,因为 date/time 类型似乎序列化为数字
+ override fun serializeWithType(value: T, gen: JsonGenerator?, ctxt: SerializationContext?, typeSer: TypeSerializer) {
+ // Use VALUE_NUMBER_INT as the shape because date/time types are serialized as numbers
val shape = JsonToken.VALUE_NUMBER_INT
- val typeIdDef = typeSer.writeTypePrefix(gen, typeSer.typeId(value, shape))
- serialize(value, gen, serializers)
- typeSer.writeTypeSuffix(gen, typeIdDef)
+ val typeIdDef = typeSer.typeId(value, shape)
+ typeSer.writeTypePrefix(gen, ctxt, typeIdDef)
+ serialize(value, gen, ctxt)
+ typeSer.writeTypeSuffix(gen, ctxt, typeIdDef)
}
/**
- * # LocalDate ISO8601 序列化器
+ * # LocalDate ISO8601 serializer
*
- * 将 LocalDate 类型转换为 ISO8601 标准的时间戳
+ * Converts LocalDate to an ISO8601-style timestamp.
*
- * @param zoneOffset 时区偏移量,用于时区转换
+ * @param zoneOffset Zone offset used for conversion
*/
class ISO8601DateSerializer(private val zoneOffset: ZoneOffset = ZoneOffset.UTC) : ISO8601Serializer() {
- /** 无参构造函数,用于Jackson反序列化 */
+ /** No-arg constructor for Jackson. */
constructor() : this(ZoneOffset.UTC)
/**
- * ## 返回处理的类型
+ * ## Handled type.
*
- * @return LocalDate 类
+ * @return LocalDate class
*/
override fun handledType(): Class = LocalDate::class.java
/**
- * ## 序列化 LocalDate
+ * ## Serialize LocalDate.
*
- * @param value LocalDate 对象
- * @param gen JSON生成器
- * @param serializers 序列化提供者
+ * @param value LocalDate value
+ * @param gen JSON generator
+ * @param serializers Serialization provider
*/
- override fun serialize(value: LocalDate, gen: JsonGenerator?, serializers: SerializerProvider?) {
+ override fun serialize(value: LocalDate, gen: JsonGenerator?, ctxt: SerializationContext?) {
gen?.writeNumber(value.toMillis(zoneOffset))
}
}
/**
- * # LocalDateTime ISO8601 序列化器
+ * # LocalDateTime ISO8601 serializer
*
- * 将 LocalDateTime 类型转换为 ISO8601 标准的时间戳
+ * Converts LocalDateTime to an ISO8601-style timestamp.
*
- * @param zoneOffset 时区偏移量,用于时区转换
+ * @param zoneOffset Zone offset used for conversion
*/
class ISO8601DateTimeSerializer(private val zoneOffset: ZoneOffset = ZoneOffset.UTC) : ISO8601Serializer() {
- /** 无参构造函数,用于Jackson反序列化 */
+ /** No-arg constructor for Jackson. */
constructor() : this(ZoneOffset.UTC)
/**
- * ## 返回处理的类型
+ * ## Handled type.
*
- * @return LocalDateTime 类
+ * @return LocalDateTime class
*/
override fun handledType(): Class = LocalDateTime::class.java
/**
- * ## 序列化 LocalDateTime
+ * ## Serialize LocalDateTime.
*
- * @param value LocalDateTime 对象
- * @param gen JSON生成器
- * @param serializers 序列化提供者
+ * @param value LocalDateTime value
+ * @param gen JSON generator
+ * @param serializers Serialization provider
*/
- override fun serialize(value: LocalDateTime, gen: JsonGenerator?, serializers: SerializerProvider?) {
+ override fun serialize(value: LocalDateTime, gen: JsonGenerator?, ctxt: SerializationContext?) {
gen?.writeNumber(value.toMillis(zoneOffset))
}
}
/**
- * # LocalTime ISO8601 序列化器
+ * # LocalTime ISO8601 serializer
*
- * 将 LocalTime 类型转换为 ISO8601 标准的时间戳
+ * Converts LocalTime to an ISO8601-style timestamp.
*
- * @param zoneOffset 时区偏移量,用于时区转换
+ * @param zoneOffset Zone offset used for conversion
*/
class ISO8601TimeSerializer(private val zoneOffset: ZoneOffset = ZoneOffset.UTC) : ISO8601Serializer() {
- /** 无参构造函数,用于Jackson反序列化 */
+ /** No-arg constructor for Jackson. */
constructor() : this(ZoneOffset.UTC)
/**
- * ## 返回处理的类型
+ * ## Handled type.
*
- * @return LocalTime 类
+ * @return LocalTime class
*/
override fun handledType(): Class = LocalTime::class.java
/**
- * ## 序列化 LocalTime
+ * ## Serialize LocalTime.
*
- * @param value LocalTime 对象
- * @param gen JSON生成器
- * @param serializers 序列化提供者
+ * @param value LocalTime value
+ * @param gen JSON generator
+ * @param serializers Serialization provider
*/
- override fun serialize(value: LocalTime, gen: JsonGenerator?, serializers: SerializerProvider?) {
+ override fun serialize(value: LocalTime, gen: JsonGenerator?, ctxt: SerializationContext?) {
gen?.writeNumber(value.toMillis(zoneOffset))
}
}
diff --git a/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/InstantTimestampSerializer.kt b/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/InstantTimestampSerializer.kt
index 055134fc8..0228a04f4 100644
--- a/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/InstantTimestampSerializer.kt
+++ b/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/InstantTimestampSerializer.kt
@@ -1,25 +1,25 @@
package io.github.truenine.composeserver.depend.jackson.serializers
-import com.fasterxml.jackson.core.JsonGenerator
-import com.fasterxml.jackson.core.JsonToken
-import com.fasterxml.jackson.databind.JsonSerializer
-import com.fasterxml.jackson.databind.SerializerProvider
-import com.fasterxml.jackson.databind.jsontype.TypeSerializer
import java.time.Instant
+import tools.jackson.core.JsonGenerator
+import tools.jackson.core.JsonToken
+import tools.jackson.databind.SerializationContext
+import tools.jackson.databind.ValueSerializer
+import tools.jackson.databind.jsontype.TypeSerializer
/**
- * Instant 时间戳序列化器
+ * Instant timestamp serializer.
*
- * 将 Instant 转换为时间戳(毫秒)
+ * Converts Instant to a timestamp in milliseconds.
*
* @author TrueNine
* @since 2025-01-16
*/
-class InstantTimestampSerializer : JsonSerializer() {
+class InstantTimestampSerializer : ValueSerializer() {
override fun handledType(): Class = Instant::class.java
- override fun serialize(value: Instant?, gen: JsonGenerator?, serializers: SerializerProvider?) {
+ override fun serialize(value: Instant?, gen: JsonGenerator?, ctxt: SerializationContext?) {
if (value == null) {
gen?.writeNull()
return
@@ -29,18 +29,19 @@ class InstantTimestampSerializer : JsonSerializer() {
gen?.writeNumber(timestamp)
}
- override fun serializeWithType(value: Instant?, gen: JsonGenerator?, serializers: SerializerProvider?, typeSer: TypeSerializer?) {
+ override fun serializeWithType(value: Instant?, gen: JsonGenerator?, ctxt: SerializationContext?, typeSer: TypeSerializer?) {
val shape = JsonToken.VALUE_NUMBER_INT
- val typeIdDef = typeSer?.writeTypePrefix(gen, typeSer.typeId(value, shape))
- serialize(value, gen, serializers)
- typeSer?.writeTypeSuffix(gen, typeIdDef)
+ val typeIdDef = typeSer?.typeId(value, shape)
+ typeSer?.writeTypePrefix(gen, ctxt, typeIdDef)
+ serialize(value, gen, ctxt)
+ typeSer?.writeTypeSuffix(gen, ctxt, typeIdDef)
}
}
/**
- * Instant 时间戳反序列化器
+ * Instant timestamp deserializer.
*
- * 支持从时间戳和多种字符串格式反序列化为 Instant
+ * Supports deserialization from timestamps and multiple string formats into Instant.
*
* @author TrueNine
* @since 2025-01-16
@@ -52,6 +53,6 @@ class InstantTimestampDeserializer : TimestampDeserializer() {
}
override fun convertFromString(text: String): Instant {
- return parseWithMultipleFormats(text) ?: throw IllegalArgumentException("无法解析 Instant 字符串: $text")
+ return parseWithMultipleFormats(text) ?: throw IllegalArgumentException("Failed to parse Instant string: $text")
}
}
diff --git a/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/KPairDeserializer.kt b/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/KPairDeserializer.kt
index 59cdd24d8..8b33300c7 100644
--- a/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/KPairDeserializer.kt
+++ b/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/KPairDeserializer.kt
@@ -1,40 +1,40 @@
package io.github.truenine.composeserver.depend.jackson.serializers
-import com.fasterxml.jackson.core.JsonParser
-import com.fasterxml.jackson.core.JsonToken
-import com.fasterxml.jackson.databind.DeserializationContext
-import com.fasterxml.jackson.databind.JsonDeserializer
-import com.fasterxml.jackson.databind.JsonMappingException
+import tools.jackson.core.JsonParser
+import tools.jackson.core.JsonToken
+import tools.jackson.databind.DatabindException
+import tools.jackson.databind.DeserializationContext
+import tools.jackson.databind.ValueDeserializer
/**
- * Kotlin Pair反序列化器
+ * Kotlin Pair deserializer.
*
- * 支持从JSON数组格式反序列化为Kotlin Pair对象 预期JSON格式: [first, second]
+ * Supports deserializing JSON array format into a Kotlin Pair instance. Expected JSON format: [first, second].
*/
-class KPairDeserializer : JsonDeserializer>() {
+class KPairDeserializer : ValueDeserializer>() {
override fun deserialize(p: JsonParser?, ctxt: DeserializationContext?): Pair<*, *> {
if (p == null) {
- throw JsonMappingException.from(ctxt, "JsonParser cannot be null for Pair deserialization")
+ throw DatabindException.from(ctxt, "JsonParser cannot be null for Pair deserialization")
}
- // 检查是否为数组开始
- if (p.currentToken != JsonToken.START_ARRAY) {
- throw JsonMappingException.from(ctxt, "Expected START_ARRAY token for Pair deserialization, got: ${p.currentToken}")
+ // Check that we are at the start of an array
+ if (p.currentToken() != JsonToken.START_ARRAY) {
+ throw DatabindException.from(ctxt, "Expected START_ARRAY token for Pair deserialization, got: ${p.currentToken()}")
}
- // 读取第一个元素
+ // Read first element
p.nextToken()
val first = p.readValueAs(Any::class.java)
- // 读取第二个元素
+ // Read second element
p.nextToken()
val second = p.readValueAs(Any::class.java)
- // 检查数组结束
+ // Ensure array ends after two elements
p.nextToken()
- if (p.currentToken != JsonToken.END_ARRAY) {
- throw JsonMappingException.from(ctxt, "Expected exactly 2 elements in array for Pair deserialization")
+ if (p.currentToken() != JsonToken.END_ARRAY) {
+ throw DatabindException.from(ctxt, "Expected exactly 2 elements in array for Pair deserialization")
}
return Pair(first, second)
diff --git a/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/KPairSerializer.kt b/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/KPairSerializer.kt
index 9570dc024..e090d390e 100644
--- a/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/KPairSerializer.kt
+++ b/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/KPairSerializer.kt
@@ -1,17 +1,19 @@
package io.github.truenine.composeserver.depend.jackson.serializers
-import com.fasterxml.jackson.core.JsonGenerator
-import com.fasterxml.jackson.databind.JsonSerializer
-import com.fasterxml.jackson.databind.SerializerProvider
+import tools.jackson.core.JsonGenerator
+import tools.jackson.databind.SerializationContext
+import tools.jackson.databind.ValueSerializer
/**
- * Kotlin Pair序列化器
+ * Kotlin Pair serializer.
*
- * 将Kotlin Pair对象序列化为JSON数组格式 输出格式: [first, second]
+ * Serializes a Kotlin Pair into JSON array format. Output format: [first, second].
*/
-class KPairSerializer : JsonSerializer>() {
+class KPairSerializer : ValueSerializer>() {
- override fun serialize(value: Pair<*, *>?, gen: JsonGenerator?, serializers: SerializerProvider?) {
+ override fun handledType(): Class> = Pair::class.java as Class>
+
+ override fun serialize(value: Pair<*, *>?, gen: JsonGenerator?, ctxt: SerializationContext?) {
if (gen == null) return
if (value == null) {
@@ -20,8 +22,8 @@ class KPairSerializer : JsonSerializer>() {
}
gen.writeStartArray()
- gen.writeObject(value.first)
- gen.writeObject(value.second)
+ ctxt?.writeValue(gen, value.first)
+ ctxt?.writeValue(gen, value.second)
gen.writeEndArray()
}
}
diff --git a/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/LocalDateTimeTimestampSerializer.kt b/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/LocalDateTimeTimestampSerializer.kt
index 1c0a025c5..9c7f16f5b 100644
--- a/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/LocalDateTimeTimestampSerializer.kt
+++ b/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/LocalDateTimeTimestampSerializer.kt
@@ -1,26 +1,27 @@
package io.github.truenine.composeserver.depend.jackson.serializers
-import com.fasterxml.jackson.core.JsonGenerator
-import com.fasterxml.jackson.core.JsonToken
-import com.fasterxml.jackson.databind.JsonSerializer
-import com.fasterxml.jackson.databind.SerializerProvider
-import com.fasterxml.jackson.databind.jsontype.TypeSerializer
+import java.time.Instant
import java.time.LocalDateTime
import java.time.ZoneOffset
+import tools.jackson.core.JsonGenerator
+import tools.jackson.core.JsonToken
+import tools.jackson.databind.SerializationContext
+import tools.jackson.databind.ValueSerializer
+import tools.jackson.databind.jsontype.TypeSerializer
/**
- * LocalDateTime 时间戳序列化器
+ * LocalDateTime timestamp serializer.
*
- * 将 LocalDateTime 转换为 UTC 时间戳(毫秒)
+ * Converts LocalDateTime to a UTC timestamp in milliseconds.
*
* @author TrueNine
* @since 2025-01-16
*/
-class LocalDateTimeTimestampSerializer : JsonSerializer() {
+class LocalDateTimeTimestampSerializer : ValueSerializer() {
override fun handledType(): Class = LocalDateTime::class.java
- override fun serialize(value: LocalDateTime?, gen: JsonGenerator?, serializers: SerializerProvider?) {
+ override fun serialize(value: LocalDateTime?, gen: JsonGenerator?, ctxt: SerializationContext?) {
if (value == null) {
gen?.writeNull()
return
@@ -30,18 +31,19 @@ class LocalDateTimeTimestampSerializer : JsonSerializer() {
gen?.writeNumber(timestamp)
}
- override fun serializeWithType(value: LocalDateTime?, gen: JsonGenerator?, serializers: SerializerProvider?, typeSer: TypeSerializer?) {
+ override fun serializeWithType(value: LocalDateTime?, gen: JsonGenerator?, ctxt: SerializationContext?, typeSer: TypeSerializer?) {
val shape = JsonToken.VALUE_NUMBER_INT
- val typeIdDef = typeSer?.writeTypePrefix(gen, typeSer.typeId(value, shape))
- serialize(value, gen, serializers)
- typeSer?.writeTypeSuffix(gen, typeIdDef)
+ val typeIdDef = typeSer?.typeId(value, shape)
+ typeSer?.writeTypePrefix(gen, ctxt, typeIdDef)
+ serialize(value, gen, ctxt)
+ typeSer?.writeTypeSuffix(gen, ctxt, typeIdDef)
}
}
/**
- * LocalDateTime 时间戳反序列化器
+ * LocalDateTime timestamp deserializer.
*
- * 支持从时间戳和多种字符串格式反序列化为 LocalDateTime
+ * Supports deserialization from timestamps and multiple string formats into LocalDateTime.
*
* @author TrueNine
* @since 2025-01-16
@@ -53,7 +55,7 @@ class LocalDateTimeTimestampDeserializer : TimestampDeserializer(
}
override fun convertFromString(text: String): LocalDateTime {
- val instant = parseWithMultipleFormats(text) ?: throw IllegalArgumentException("无法解析 LocalDateTime 字符串: $text")
+ val instant = parseWithMultipleFormats(text) ?: throw IllegalArgumentException("Failed to parse LocalDateTime string: $text")
return LocalDateTime.ofInstant(instant, ZoneOffset.UTC)
}
diff --git a/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/LocalDateTimestampSerializer.kt b/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/LocalDateTimestampSerializer.kt
index 040d0fe35..68a20e252 100644
--- a/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/LocalDateTimestampSerializer.kt
+++ b/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/LocalDateTimestampSerializer.kt
@@ -1,26 +1,27 @@
package io.github.truenine.composeserver.depend.jackson.serializers
-import com.fasterxml.jackson.core.JsonGenerator
-import com.fasterxml.jackson.core.JsonToken
-import com.fasterxml.jackson.databind.JsonSerializer
-import com.fasterxml.jackson.databind.SerializerProvider
-import com.fasterxml.jackson.databind.jsontype.TypeSerializer
+import java.time.Instant
import java.time.LocalDate
import java.time.ZoneOffset
+import tools.jackson.core.JsonGenerator
+import tools.jackson.core.JsonToken
+import tools.jackson.databind.SerializationContext
+import tools.jackson.databind.ValueSerializer
+import tools.jackson.databind.jsontype.TypeSerializer
/**
- * LocalDate 时间戳序列化器
+ * LocalDate timestamp serializer.
*
- * 将 LocalDate 转换为 UTC 时间戳(毫秒),使用当天开始时间
+ * Converts LocalDate to a UTC timestamp in milliseconds using the start of the day.
*
* @author TrueNine
* @since 2025-01-16
*/
-class LocalDateTimestampSerializer : JsonSerializer() {
+class LocalDateTimestampSerializer : ValueSerializer() {
override fun handledType(): Class = LocalDate::class.java
- override fun serialize(value: LocalDate?, gen: JsonGenerator?, serializers: SerializerProvider?) {
+ override fun serialize(value: LocalDate?, gen: JsonGenerator?, ctxt: SerializationContext?) {
if (value == null) {
gen?.writeNull()
return
@@ -30,18 +31,19 @@ class LocalDateTimestampSerializer : JsonSerializer() {
gen?.writeNumber(timestamp)
}
- override fun serializeWithType(value: LocalDate?, gen: JsonGenerator?, serializers: SerializerProvider?, typeSer: TypeSerializer?) {
+ override fun serializeWithType(value: LocalDate?, gen: JsonGenerator?, ctxt: SerializationContext?, typeSer: TypeSerializer?) {
val shape = JsonToken.VALUE_NUMBER_INT
- val typeIdDef = typeSer?.writeTypePrefix(gen, typeSer.typeId(value, shape))
- serialize(value, gen, serializers)
- typeSer?.writeTypeSuffix(gen, typeIdDef)
+ val typeIdDef = typeSer?.typeId(value, shape)
+ typeSer?.writeTypePrefix(gen, ctxt, typeIdDef)
+ serialize(value, gen, ctxt)
+ typeSer?.writeTypeSuffix(gen, ctxt, typeIdDef)
}
}
/**
- * LocalDate 时间戳反序列化器
+ * LocalDate timestamp deserializer.
*
- * 支持从时间戳和多种字符串格式反序列化为 LocalDate
+ * Supports deserialization from timestamps and multiple string formats into LocalDate.
*
* @author TrueNine
* @since 2025-01-16
@@ -53,7 +55,7 @@ class LocalDateTimestampDeserializer : TimestampDeserializer() {
}
override fun convertFromString(text: String): LocalDate {
- val instant = parseWithMultipleFormats(text) ?: throw IllegalArgumentException("无法解析 LocalDate 字符串: $text")
+ val instant = parseWithMultipleFormats(text) ?: throw IllegalArgumentException("Failed to parse LocalDate string: $text")
return LocalDate.ofInstant(instant, ZoneOffset.UTC)
}
diff --git a/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/LocalTimeTimestampSerializer.kt b/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/LocalTimeTimestampSerializer.kt
index 676443c5f..5b5136436 100644
--- a/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/LocalTimeTimestampSerializer.kt
+++ b/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/LocalTimeTimestampSerializer.kt
@@ -1,50 +1,52 @@
package io.github.truenine.composeserver.depend.jackson.serializers
-import com.fasterxml.jackson.core.JsonGenerator
-import com.fasterxml.jackson.core.JsonToken
-import com.fasterxml.jackson.databind.JsonSerializer
-import com.fasterxml.jackson.databind.SerializerProvider
-import com.fasterxml.jackson.databind.jsontype.TypeSerializer
+import java.time.Instant
import java.time.LocalDate
import java.time.LocalTime
import java.time.ZoneOffset
+import tools.jackson.core.JsonGenerator
+import tools.jackson.core.JsonToken
+import tools.jackson.databind.SerializationContext
+import tools.jackson.databind.ValueSerializer
+import tools.jackson.databind.jsontype.TypeSerializer
/**
- * LocalTime 时间戳序列化器
+ * LocalTime timestamp serializer.
*
- * 将 LocalTime 转换为 UTC 时间戳(毫秒),结合当前日期
+ * Converts LocalTime to a UTC timestamp in milliseconds, combined with the current date.
*
* @author TrueNine
* @since 2025-01-16
*/
-class LocalTimeTimestampSerializer : JsonSerializer() {
+class LocalTimeTimestampSerializer : ValueSerializer() {
override fun handledType(): Class = LocalTime::class.java
- override fun serialize(value: LocalTime?, gen: JsonGenerator?, serializers: SerializerProvider?) {
+ override fun serialize(value: LocalTime?, gen: JsonGenerator?, ctxt: SerializationContext?) {
if (value == null) {
gen?.writeNull()
return
}
- // LocalTime需要结合当前日期转换为时间戳
+ // LocalTime needs to be combined with the current date to convert to a timestamp
val today = LocalDate.now()
val timestamp = today.atTime(value).toInstant(ZoneOffset.UTC).toEpochMilli()
gen?.writeNumber(timestamp)
}
- override fun serializeWithType(value: LocalTime?, gen: JsonGenerator?, serializers: SerializerProvider?, typeSer: TypeSerializer?) {
+ override fun serializeWithType(value: LocalTime?, gen: JsonGenerator?, ctxt: SerializationContext?, typeSer: TypeSerializer?) {
val shape = JsonToken.VALUE_NUMBER_INT
- val typeIdDef = typeSer?.writeTypePrefix(gen, typeSer.typeId(value, shape))
- serialize(value, gen, serializers)
- typeSer?.writeTypeSuffix(gen, typeIdDef)
+ val typeIdDef = typeSer?.typeId(value, shape)
+ typeSer?.writeTypePrefix(gen, ctxt, typeIdDef)
+ serialize(value, gen, ctxt)
+ typeSer?.writeTypeSuffix(gen, ctxt, typeIdDef)
}
}
/**
- * LocalTime 时间戳反序列化器
+ * LocalTime timestamp deserializer.
*
- * 支持从时间戳和多种字符串格式反序列化为 LocalTime
+ * Supports deserialization from timestamps and multiple string formats into LocalTime.
*
* @author TrueNine
* @since 2025-01-16
@@ -56,7 +58,7 @@ class LocalTimeTimestampDeserializer : TimestampDeserializer() {
}
override fun convertFromString(text: String): LocalTime {
- val instant = parseWithMultipleFormats(text) ?: throw IllegalArgumentException("无法解析 LocalTime 字符串: $text")
+ val instant = parseWithMultipleFormats(text) ?: throw IllegalArgumentException("Failed to parse LocalTime string: $text")
return LocalTime.ofInstant(instant, ZoneOffset.UTC)
}
diff --git a/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/OffsetDateTimeTimestampSerializer.kt b/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/OffsetDateTimeTimestampSerializer.kt
index 40bac1a6f..75fa92c59 100644
--- a/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/OffsetDateTimeTimestampSerializer.kt
+++ b/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/OffsetDateTimeTimestampSerializer.kt
@@ -1,26 +1,27 @@
package io.github.truenine.composeserver.depend.jackson.serializers
-import com.fasterxml.jackson.core.JsonGenerator
-import com.fasterxml.jackson.core.JsonToken
-import com.fasterxml.jackson.databind.JsonSerializer
-import com.fasterxml.jackson.databind.SerializerProvider
-import com.fasterxml.jackson.databind.jsontype.TypeSerializer
+import java.time.Instant
import java.time.OffsetDateTime
import java.time.ZoneOffset
+import tools.jackson.core.JsonGenerator
+import tools.jackson.core.JsonToken
+import tools.jackson.databind.SerializationContext
+import tools.jackson.databind.ValueSerializer
+import tools.jackson.databind.jsontype.TypeSerializer
/**
- * OffsetDateTime 时间戳序列化器
+ * OffsetDateTime timestamp serializer.
*
- * 将 OffsetDateTime 转换为 UTC 时间戳(毫秒)
+ * Converts OffsetDateTime to a UTC timestamp in milliseconds.
*
* @author TrueNine
* @since 2025-01-16
*/
-class OffsetDateTimeTimestampSerializer : JsonSerializer() {
+class OffsetDateTimeTimestampSerializer : ValueSerializer() {
override fun handledType(): Class = OffsetDateTime::class.java
- override fun serialize(value: OffsetDateTime?, gen: JsonGenerator?, serializers: SerializerProvider?) {
+ override fun serialize(value: OffsetDateTime?, gen: JsonGenerator?, ctxt: SerializationContext?) {
if (value == null) {
gen?.writeNull()
return
@@ -30,18 +31,19 @@ class OffsetDateTimeTimestampSerializer : JsonSerializer() {
gen?.writeNumber(timestamp)
}
- override fun serializeWithType(value: OffsetDateTime?, gen: JsonGenerator?, serializers: SerializerProvider?, typeSer: TypeSerializer?) {
+ override fun serializeWithType(value: OffsetDateTime?, gen: JsonGenerator?, ctxt: SerializationContext?, typeSer: TypeSerializer?) {
val shape = JsonToken.VALUE_NUMBER_INT
- val typeIdDef = typeSer?.writeTypePrefix(gen, typeSer.typeId(value, shape))
- serialize(value, gen, serializers)
- typeSer?.writeTypeSuffix(gen, typeIdDef)
+ val typeIdDef = typeSer?.typeId(value, shape)
+ typeSer?.writeTypePrefix(gen, ctxt, typeIdDef)
+ serialize(value, gen, ctxt)
+ typeSer?.writeTypeSuffix(gen, ctxt, typeIdDef)
}
}
/**
- * OffsetDateTime 时间戳反序列化器
+ * OffsetDateTime timestamp deserializer.
*
- * 支持从时间戳和多种字符串格式反序列化为 OffsetDateTime
+ * Supports deserialization from timestamps and multiple string formats into OffsetDateTime.
*
* @author TrueNine
* @since 2025-01-16
@@ -53,7 +55,7 @@ class OffsetDateTimeTimestampDeserializer : TimestampDeserializer : JsonDeserializer() {
+abstract class TimestampDeserializer : ValueDeserializer() {
override fun deserialize(p: JsonParser?, ctxt: DeserializationContext?): T? {
if (p == null) return null
- return when (p.currentToken) {
+ return when (p.currentToken()) {
JsonToken.VALUE_NUMBER_INT -> {
- // 处理时间戳(毫秒)
+ // Handle timestamp (milliseconds)
val timestamp = p.longValue
convertFromTimestamp(timestamp)
}
@@ -39,16 +39,16 @@ abstract class TimestampDeserializer : JsonDeserializer() {
val text = p.text
if (text.isNullOrBlank()) return null
- // 尝试解析为时间戳
+ // Try to parse as a timestamp
text.toLongOrNull()?.let { timestamp ->
return convertFromTimestamp(timestamp)
}
- // 尝试解析为ISO8601格式
+ // Try to parse as ISO8601 format
try {
convertFromString(text)
} catch (e: DateTimeParseException) {
- throw IllegalArgumentException("无法解析时间字符串: $text", e)
+ throw IllegalArgumentException("Unable to parse time string: $text", e)
}
}
@@ -56,10 +56,10 @@ abstract class TimestampDeserializer : JsonDeserializer() {
}
}
- /** 从时间戳转换为目标类型 */
+ /** Convert from timestamp to target type */
protected abstract fun convertFromTimestamp(timestamp: Long): T
- /** 从字符串转换为目标类型(支持ISO8601等格式) */
+ /** Convert from string to target type (supports ISO8601, etc.) */
protected abstract fun convertFromString(text: String): T
companion object {
@@ -73,7 +73,7 @@ abstract class TimestampDeserializer : JsonDeserializer() {
DateTimeFormatter.ISO_LOCAL_TIME,
)
- /** 尝试使用多种ISO格式解析字符串 */
+ /** Try to parse a string using multiple ISO formats */
@JvmStatic
protected fun parseWithMultipleFormats(text: String): Instant? {
for (formatter in ISO_FORMATTERS) {
diff --git a/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/TimestampSerializer.kt b/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/TimestampSerializer.kt
index 298ffa9ce..9aa6a685b 100644
--- a/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/TimestampSerializer.kt
+++ b/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/TimestampSerializer.kt
@@ -1,10 +1,5 @@
package io.github.truenine.composeserver.depend.jackson.serializers
-import com.fasterxml.jackson.core.JsonGenerator
-import com.fasterxml.jackson.core.JsonToken
-import com.fasterxml.jackson.databind.JsonSerializer
-import com.fasterxml.jackson.databind.SerializerProvider
-import com.fasterxml.jackson.databind.jsontype.TypeSerializer
import java.time.Instant
import java.time.LocalDate
import java.time.LocalDateTime
@@ -12,18 +7,23 @@ import java.time.LocalTime
import java.time.OffsetDateTime
import java.time.ZoneOffset
import java.time.ZonedDateTime
+import tools.jackson.core.JsonGenerator
+import tools.jackson.core.JsonToken
+import tools.jackson.databind.SerializationContext
+import tools.jackson.databind.ValueSerializer
+import tools.jackson.databind.jsontype.TypeSerializer
/**
- * 统一的时间戳序列化器
+ * Unified timestamp serializer
*
- * 将所有时间类型转换为UTC时间戳(毫秒),确保时区无关性和高性能
+ * Converts all time types to UTC timestamps (milliseconds) to ensure timezone independence and high performance.
*
* @author TrueNine
* @since 2025-01-16
*/
-class TimestampSerializer : JsonSerializer() {
+class TimestampSerializer : ValueSerializer() {
- override fun serialize(value: Any?, gen: JsonGenerator?, serializers: SerializerProvider?) {
+ override fun serialize(value: Any?, gen: JsonGenerator?, ctxt: SerializationContext?) {
if (value == null) {
gen?.writeNull()
return
@@ -34,7 +34,7 @@ class TimestampSerializer : JsonSerializer() {
is LocalDateTime -> value.toInstant(ZoneOffset.UTC).toEpochMilli()
is LocalDate -> value.atStartOfDay(ZoneOffset.UTC).toInstant().toEpochMilli()
is LocalTime -> {
- // LocalTime需要结合当前日期转换为时间戳
+ // LocalTime needs to be combined with the current date to be converted to a timestamp
val today = LocalDate.now()
today.atTime(value).toInstant(ZoneOffset.UTC).toEpochMilli()
}
@@ -42,16 +42,17 @@ class TimestampSerializer : JsonSerializer() {
is Instant -> value.toEpochMilli()
is ZonedDateTime -> value.toInstant().toEpochMilli()
is OffsetDateTime -> value.toInstant().toEpochMilli()
- else -> throw IllegalArgumentException("不支持的时间类型: ${value::class.java}")
+ else -> throw IllegalArgumentException("Unsupported time type: ${value::class.java}")
}
gen?.writeNumber(timestamp)
}
- override fun serializeWithType(value: Any?, gen: JsonGenerator?, serializers: SerializerProvider?, typeSer: TypeSerializer?) {
+ override fun serializeWithType(value: Any?, gen: JsonGenerator?, ctxt: SerializationContext?, typeSer: TypeSerializer?) {
val shape = JsonToken.VALUE_NUMBER_INT
- val typeIdDef = typeSer?.writeTypePrefix(gen, typeSer.typeId(value, shape))
- serialize(value, gen, serializers)
- typeSer?.writeTypeSuffix(gen, typeIdDef)
+ val typeIdDef = typeSer?.typeId(value, shape)
+ typeSer?.writeTypePrefix(gen, ctxt, typeIdDef)
+ serialize(value, gen, ctxt)
+ typeSer?.writeTypeSuffix(gen, ctxt, typeIdDef)
}
}
diff --git a/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/ZonedDateTimeTimestampSerializer.kt b/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/ZonedDateTimeTimestampSerializer.kt
index 178fa0834..aa8b27c0e 100644
--- a/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/ZonedDateTimeTimestampSerializer.kt
+++ b/depend/depend-jackson/src/main/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/ZonedDateTimeTimestampSerializer.kt
@@ -1,26 +1,27 @@
package io.github.truenine.composeserver.depend.jackson.serializers
-import com.fasterxml.jackson.core.JsonGenerator
-import com.fasterxml.jackson.core.JsonToken
-import com.fasterxml.jackson.databind.JsonSerializer
-import com.fasterxml.jackson.databind.SerializerProvider
-import com.fasterxml.jackson.databind.jsontype.TypeSerializer
+import java.time.Instant
import java.time.ZoneOffset
import java.time.ZonedDateTime
+import tools.jackson.core.JsonGenerator
+import tools.jackson.core.JsonToken
+import tools.jackson.databind.SerializationContext
+import tools.jackson.databind.ValueSerializer
+import tools.jackson.databind.jsontype.TypeSerializer
/**
- * ZonedDateTime 时间戳序列化器
+ * ZonedDateTime timestamp serializer.
*
- * 将 ZonedDateTime 转换为 UTC 时间戳(毫秒)
+ * Converts ZonedDateTime to a UTC timestamp in milliseconds.
*
* @author TrueNine
* @since 2025-01-16
*/
-class ZonedDateTimeTimestampSerializer : JsonSerializer() {
+class ZonedDateTimeTimestampSerializer : ValueSerializer() {
override fun handledType(): Class = ZonedDateTime::class.java
- override fun serialize(value: ZonedDateTime?, gen: JsonGenerator?, serializers: SerializerProvider?) {
+ override fun serialize(value: ZonedDateTime?, gen: JsonGenerator?, ctxt: SerializationContext?) {
if (value == null) {
gen?.writeNull()
return
@@ -30,18 +31,19 @@ class ZonedDateTimeTimestampSerializer : JsonSerializer() {
gen?.writeNumber(timestamp)
}
- override fun serializeWithType(value: ZonedDateTime?, gen: JsonGenerator?, serializers: SerializerProvider?, typeSer: TypeSerializer?) {
+ override fun serializeWithType(value: ZonedDateTime?, gen: JsonGenerator?, ctxt: SerializationContext?, typeSer: TypeSerializer?) {
val shape = JsonToken.VALUE_NUMBER_INT
- val typeIdDef = typeSer?.writeTypePrefix(gen, typeSer.typeId(value, shape))
- serialize(value, gen, serializers)
- typeSer?.writeTypeSuffix(gen, typeIdDef)
+ val typeIdDef = typeSer?.typeId(value, shape)
+ typeSer?.writeTypePrefix(gen, ctxt, typeIdDef)
+ serialize(value, gen, ctxt)
+ typeSer?.writeTypeSuffix(gen, ctxt, typeIdDef)
}
}
/**
- * ZonedDateTime 时间戳反序列化器
+ * ZonedDateTime timestamp deserializer.
*
- * 支持从时间戳和多种字符串格式反序列化为 ZonedDateTime
+ * Supports deserialization from timestamps and multiple string formats into ZonedDateTime.
*
* @author TrueNine
* @since 2025-01-16
@@ -53,7 +55,7 @@ class ZonedDateTimeTimestampDeserializer : TimestampDeserializer(
}
override fun convertFromString(text: String): ZonedDateTime {
- val instant = parseWithMultipleFormats(text) ?: throw IllegalArgumentException("无法解析 ZonedDateTime 字符串: $text")
+ val instant = parseWithMultipleFormats(text) ?: throw IllegalArgumentException("Failed to parse ZonedDateTime string: $text")
return ZonedDateTime.ofInstant(instant, ZoneOffset.UTC)
}
diff --git a/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/AnyEnumDeserializerTest.kt b/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/AnyEnumDeserializerTest.kt
index 6b0002826..50b650775 100644
--- a/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/AnyEnumDeserializerTest.kt
+++ b/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/AnyEnumDeserializerTest.kt
@@ -1,6 +1,5 @@
package io.github.truenine.composeserver.depend.jackson
-import com.fasterxml.jackson.databind.ObjectMapper
import io.github.truenine.composeserver.enums.HttpStatus
import io.github.truenine.composeserver.enums.UserAgents
import io.github.truenine.composeserver.testtoolkit.log
@@ -9,6 +8,7 @@ import kotlin.test.assertEquals
import kotlin.test.assertNotNull
import org.junit.jupiter.api.Test
import org.springframework.boot.test.context.SpringBootTest
+import tools.jackson.databind.ObjectMapper
@SpringBootTest
class AnyEnumDeserializerTest {
@@ -16,7 +16,7 @@ class AnyEnumDeserializerTest {
@Resource set
@Test
- fun `确保 撤销了枚举类型后,测试逻辑仍然可以运行`() {
+ fun `ensure tests still run after removing enum types`() {
val stringTyping = UserAgents.CHROME_WIN_103
val intTyping = HttpStatus._403
val dd = AnyEnumRecord(stringTyping, intTyping)
diff --git a/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/ByteArrayDeserializerTest.kt b/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/ByteArrayDeserializerTest.kt
index 24e619ebf..366f74ecc 100644
--- a/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/ByteArrayDeserializerTest.kt
+++ b/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/ByteArrayDeserializerTest.kt
@@ -1,6 +1,5 @@
package io.github.truenine.composeserver.depend.jackson
-import com.fasterxml.jackson.databind.ObjectMapper
import io.github.truenine.composeserver.depend.jackson.autoconfig.JacksonAutoConfiguration
import io.github.truenine.composeserver.testtoolkit.log
import jakarta.annotation.Resource
@@ -8,6 +7,7 @@ import kotlin.test.assertContentEquals
import kotlin.test.assertEquals
import org.junit.jupiter.api.Test
import org.springframework.boot.test.context.SpringBootTest
+import tools.jackson.databind.ObjectMapper
@SpringBootTest
class ByteArrayDeserializerTest {
diff --git a/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/DataClassSerializerTest.kt b/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/DataClassSerializerTest.kt
index c9aa63e5a..c57f3d3e6 100644
--- a/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/DataClassSerializerTest.kt
+++ b/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/DataClassSerializerTest.kt
@@ -1,8 +1,5 @@
package io.github.truenine.composeserver.depend.jackson
-import com.fasterxml.jackson.annotation.JsonIgnore
-import com.fasterxml.jackson.databind.ObjectMapper
-import com.fasterxml.jackson.module.kotlin.readValue
import io.github.truenine.composeserver.datetime
import io.github.truenine.composeserver.depend.jackson.autoconfig.JacksonAutoConfiguration
import io.github.truenine.composeserver.testtoolkit.log
@@ -11,6 +8,8 @@ import kotlin.test.Test
import kotlin.test.assertTrue
import org.springframework.beans.factory.annotation.Qualifier
import org.springframework.boot.test.context.SpringBootTest
+import tools.jackson.databind.ObjectMapper
+import tools.jackson.module.kotlin.readValue
data class A(val a: String, val b: String)
@@ -104,7 +103,7 @@ class DataClassSerializerTest {
@Test
fun serialize_unicode_characters() {
- val a = A("测试中文", "🎉emoji")
+ val a = A("test chinese", "emoji")
val json = mapper.writeValueAsString(a)
log.info("unicode json: {}", json)
val obj = mapper.readValue(json)
@@ -154,5 +153,5 @@ class DataClassSerializerTest {
}
interface InterFace {
- data class InternalClass(val a: String, val b: String, @JsonIgnore val c: String?, @JsonIgnore val d: datetime? = null)
+ data class InternalClass(val a: String, val b: String, val c: String?, val d: datetime? = null)
}
diff --git a/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/DatetimeSerializeTest.kt b/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/DatetimeSerializeTest.kt
index bc5001b06..deb6f5f9f 100644
--- a/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/DatetimeSerializeTest.kt
+++ b/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/DatetimeSerializeTest.kt
@@ -1,7 +1,5 @@
package io.github.truenine.composeserver.depend.jackson
-import com.fasterxml.jackson.databind.ObjectMapper
-import com.fasterxml.jackson.module.kotlin.readValue
import io.github.truenine.composeserver.date
import io.github.truenine.composeserver.datetime
import io.github.truenine.composeserver.depend.jackson.autoconfig.JacksonAutoConfiguration
@@ -10,6 +8,8 @@ import io.github.truenine.composeserver.time
import jakarta.annotation.Resource
import kotlin.test.Test
import org.springframework.boot.test.context.SpringBootTest
+import tools.jackson.databind.ObjectMapper
+import tools.jackson.module.kotlin.readValue
@SpringBootTest
class DatetimeSerializeTest {
diff --git a/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/DatetimeSerializerTest.kt b/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/DatetimeSerializerTest.kt
index 954c895bb..80d19d9a4 100644
--- a/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/DatetimeSerializerTest.kt
+++ b/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/DatetimeSerializerTest.kt
@@ -1,8 +1,6 @@
package io.github.truenine.composeserver.depend.jackson
-import com.fasterxml.jackson.databind.ObjectMapper
import io.github.truenine.composeserver.datetime
-import io.github.truenine.composeserver.depend.jackson.modules.DatetimeCustomModule
import io.github.truenine.composeserver.testtoolkit.log
import jakarta.annotation.Resource
import kotlin.test.Test
@@ -11,6 +9,7 @@ import kotlin.test.assertNotNull
import org.junit.jupiter.api.BeforeEach
import org.junit.jupiter.api.Disabled
import org.springframework.boot.test.context.SpringBootTest
+import tools.jackson.databind.ObjectMapper
@SpringBootTest
class DatetimeSerializerTest {
@@ -19,12 +18,12 @@ class DatetimeSerializerTest {
@BeforeEach
fun setup() {
- // 使用时间戳序列化模块,确保时区无关性
- mapper.registerModule(DatetimeCustomModule())
+ // Spring Boot auto-configures ObjectMapper with DatetimeCustomModule
+ // No manual registration needed
}
@Test
- @Disabled("因为时区差异暂时禁用此测试")
+ @Disabled("Temporarily disabled due to time zone differences")
fun `ensure serialize to number`() {
val dt = datetime.now()
val dtJson = mapper.writeValueAsString(dt)
diff --git a/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/IPageParamEnhancedTest.kt b/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/IPageParamEnhancedTest.kt
index 1f3e2f49c..46e13440c 100644
--- a/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/IPageParamEnhancedTest.kt
+++ b/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/IPageParamEnhancedTest.kt
@@ -1,6 +1,5 @@
package io.github.truenine.composeserver.depend.jackson
-import com.fasterxml.jackson.databind.ObjectMapper
import io.github.truenine.composeserver.Pq
import io.github.truenine.composeserver.domain.IPageParam
import io.github.truenine.composeserver.domain.IPageParamLike
@@ -11,6 +10,7 @@ import kotlin.test.assertNotNull
import org.junit.jupiter.api.Nested
import org.junit.jupiter.api.Test
import org.springframework.boot.test.context.SpringBootTest
+import tools.jackson.databind.ObjectMapper
@SpringBootTest
class IPageParamEnhancedTest {
@@ -38,8 +38,8 @@ class IPageParamEnhancedTest {
assertNotNull(pageParam)
assertEquals(0, pageParam.o)
- assertEquals(Int.MAX_VALUE, pageParam.s) // unPage=true时应该设置为最大值
- // 验证unPage行为 - 注意u属性已弃用,但仍需验证功能
+ assertEquals(Int.MAX_VALUE, pageParam.s) // when unPage=true page size should be set to max value
+ // Verify unPage behavior - note: property u is deprecated but still needs to be validated
log.info("Deserialized unpage param: {}", pageParam)
}
@@ -49,8 +49,8 @@ class IPageParamEnhancedTest {
val pageParam = mapper.readValue(json, IPageParam::class.java)
assertNotNull(pageParam)
- assertEquals(0, pageParam.o) // 默认值
- assertEquals(42, pageParam.s) // 默认值
+ assertEquals(0, pageParam.o) // default value
+ assertEquals(42, pageParam.s) // default value
log.info("Deserialized page param with nulls: {}", pageParam)
}
@@ -60,7 +60,7 @@ class IPageParamEnhancedTest {
val pageParam = mapper.readValue(json, IPageParam::class.java)
assertNotNull(pageParam)
- assertEquals(0, pageParam.o) // 默认值
+ assertEquals(0, pageParam.o) // default value
assertEquals(15, pageParam.s)
log.info("Deserialized partial page param: {}", pageParam)
}
@@ -101,8 +101,8 @@ class IPageParamEnhancedTest {
val pageParam = mapper.readValue(json, IPageParam::class.java)
assertNotNull(pageParam)
- assertEquals(0, pageParam.o) // 默认值
- assertEquals(42, pageParam.s) // 默认值
+ assertEquals(0, pageParam.o) // default value
+ assertEquals(42, pageParam.s) // default value
log.info("Deserialized empty object: {}", pageParam)
}
}
@@ -114,15 +114,15 @@ class IPageParamEnhancedTest {
fun `round trip with Pq factory method`() {
val originalParam = Pq[5, 50]
- // 序列化
+ // Serialize
val json = mapper.writeValueAsString(originalParam)
log.info("Serialized Pq: {}", json)
- // 反序列化
+ // Deserialize
val deserializedParam = mapper.readValue(json, IPageParam::class.java)
log.info("Deserialized Pq: {}", deserializedParam)
- // 验证
+ // Verify
assertEquals(originalParam.o, deserializedParam.o)
assertEquals(originalParam.s, deserializedParam.s)
}
@@ -131,15 +131,15 @@ class IPageParamEnhancedTest {
fun `round trip with unpage param`() {
val originalParam = Pq.unPage()
- // 序列化
+ // Serialize
val json = mapper.writeValueAsString(originalParam)
log.info("Serialized unpage Pq: {}", json)
- // 反序列化
+ // Deserialize
val deserializedParam = mapper.readValue(json, IPageParam::class.java)
log.info("Deserialized unpage Pq: {}", deserializedParam)
- // 验证unPage行为 - 通过pageSize验证而不是直接访问u属性
+ // Verify unPage behavior via pageSize instead of directly reading deprecated property u
assertEquals(Int.MAX_VALUE, deserializedParam.s)
}
}
@@ -149,18 +149,18 @@ class IPageParamEnhancedTest {
@Test
fun `page param serialization does not interfere with time types`() {
- // 创建包含时间字段和分页参数的复合对象
+ // Create composite object containing both time fields and pagination parameters
val testData = mapOf("pageParam" to Pq[1, 20], "timestamp" to System.currentTimeMillis(), "dateTime" to java.time.LocalDateTime.now())
- // 序列化
+ // Serialize
val json = mapper.writeValueAsString(testData)
log.info("Serialized composite data: {}", json)
- // 反序列化
+ // Deserialize
val deserializedData = mapper.readValue(json, Map::class.java)
log.info("Deserialized composite data: {}", deserializedData)
- // 验证分页参数部分
+ // Verify pagination part
assertNotNull(deserializedData["pageParam"])
}
}
diff --git a/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/IPageParamLikeSerializerErrorHandlingTest.kt b/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/IPageParamLikeSerializerErrorHandlingTest.kt
index 47eb33d06..7eebd0f1f 100644
--- a/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/IPageParamLikeSerializerErrorHandlingTest.kt
+++ b/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/IPageParamLikeSerializerErrorHandlingTest.kt
@@ -1,7 +1,5 @@
package io.github.truenine.composeserver.depend.jackson
-import com.fasterxml.jackson.databind.JsonMappingException
-import com.fasterxml.jackson.databind.ObjectMapper
import io.github.truenine.composeserver.domain.IPageParam
import io.github.truenine.composeserver.testtoolkit.log
import jakarta.annotation.Resource
@@ -10,6 +8,8 @@ import kotlin.test.assertNotNull
import org.junit.jupiter.api.Nested
import org.junit.jupiter.api.Test
import org.springframework.boot.test.context.SpringBootTest
+import tools.jackson.databind.DatabindException
+import tools.jackson.databind.ObjectMapper
@SpringBootTest
class IPageParamLikeSerializerErrorHandlingTest {
@@ -23,7 +23,7 @@ class IPageParamLikeSerializerErrorHandlingTest {
fun `handle invalid json format gracefully`() {
val invalidJson = """{"o":"not_a_number","s":20}"""
- val exception = assertFailsWith { mapper.readValue(invalidJson, IPageParam::class.java) }
+ val exception = assertFailsWith { mapper.readValue(invalidJson, IPageParam::class.java) }
log.info("Caught expected exception: {}", exception.message)
assertNotNull(exception.message)
@@ -33,7 +33,7 @@ class IPageParamLikeSerializerErrorHandlingTest {
fun `handle invalid boolean value gracefully`() {
val invalidJson = """{"o":1,"s":20,"u":"not_a_boolean"}"""
- val exception = assertFailsWith { mapper.readValue(invalidJson, IPageParam::class.java) }
+ val exception = assertFailsWith { mapper.readValue(invalidJson, IPageParam::class.java) }
log.info("Caught expected exception for boolean: {}", exception.message)
assertNotNull(exception.message)
@@ -43,7 +43,7 @@ class IPageParamLikeSerializerErrorHandlingTest {
fun `handle non-object json gracefully`() {
val invalidJson = """["not", "an", "object"]"""
- val exception = assertFailsWith { mapper.readValue(invalidJson, IPageParam::class.java) }
+ val exception = assertFailsWith { mapper.readValue(invalidJson, IPageParam::class.java) }
log.info("Caught expected exception for non-object: {}", exception.message)
assertNotNull(exception.message)
@@ -53,7 +53,7 @@ class IPageParamLikeSerializerErrorHandlingTest {
fun `handle string json gracefully`() {
val invalidJson = """"just_a_string""""
- val exception = assertFailsWith { mapper.readValue(invalidJson, IPageParam::class.java) }
+ val exception = assertFailsWith { mapper.readValue(invalidJson, IPageParam::class.java) }
log.info("Caught expected exception for string: {}", exception.message)
assertNotNull(exception.message)
@@ -78,7 +78,7 @@ class IPageParamLikeSerializerErrorHandlingTest {
val pageParam = mapper.readValue(json, IPageParam::class.java)
assertNotNull(pageParam)
- // 验证负数被正确处理(根据Pq工厂方法的逻辑)
+ // Verify negative numbers are handled correctly (according to Pq factory logic)
log.info("Handled negative numbers: o={}, s={}", pageParam.o, pageParam.s)
}
@@ -101,10 +101,10 @@ class IPageParamLikeSerializerErrorHandlingTest {
val pageParam = mapper.readValue(json, IPageParam::class.java)
assertNotNull(pageParam)
- // 验证使用了Pq工厂方法创建的实例
+ // Verify that instance is created via Pq factory method
log.info("Factory method result: o={}, s={}", pageParam.o, pageParam.s)
- // 验证实例类型
+ // Verify instance type
log.info("Instance class: {}", pageParam::class.java.simpleName)
}
@@ -114,7 +114,7 @@ class IPageParamLikeSerializerErrorHandlingTest {
val pageParam = mapper.readValue(jsonWithExtraFields, IPageParam::class.java)
assertNotNull(pageParam)
- // 验证只处理了已知字段
+ // Verify that only known fields are processed
log.info("Processed with extra fields: o={}, s={}", pageParam.o, pageParam.s)
}
}
diff --git a/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/IPageParamTest.kt b/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/IPageParamTest.kt
index 29bb303a7..503acff0d 100644
--- a/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/IPageParamTest.kt
+++ b/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/IPageParamTest.kt
@@ -1,6 +1,5 @@
package io.github.truenine.composeserver.depend.jackson
-import com.fasterxml.jackson.databind.ObjectMapper
import io.github.truenine.composeserver.domain.IPageParam
import io.github.truenine.composeserver.domain.IPageParamLike
import io.github.truenine.composeserver.testtoolkit.log
@@ -9,6 +8,7 @@ import kotlin.test.assertEquals
import kotlin.test.assertNotNull
import org.junit.jupiter.api.Test
import org.springframework.boot.test.context.SpringBootTest
+import tools.jackson.databind.ObjectMapper
@SpringBootTest
class IPageParamTest {
diff --git a/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/JacksonAutoConfigTest.kt b/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/JacksonAutoConfigTest.kt
index 6b3c7c3cf..daa124385 100644
--- a/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/JacksonAutoConfigTest.kt
+++ b/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/JacksonAutoConfigTest.kt
@@ -1,17 +1,21 @@
package io.github.truenine.composeserver.depend.jackson
-import com.fasterxml.jackson.databind.ObjectMapper
import io.github.truenine.composeserver.testtoolkit.log
-import jakarta.annotation.Resource
import kotlin.test.Test
-import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest
+import kotlin.test.assertTrue
+import org.springframework.beans.factory.annotation.Autowired
+import org.springframework.boot.test.context.SpringBootTest
+import org.springframework.context.ApplicationContext
+import tools.jackson.databind.ObjectMapper
-@WebMvcTest
+@SpringBootTest
class JacksonAutoConfigTest {
- @Resource lateinit var mappers: List
+ @Autowired lateinit var applicationContext: ApplicationContext
@Test
fun mappers_should_be_registered() {
- log.info("mappers: {}", mappers)
+ val objectMappers = applicationContext.getBeansOfType(ObjectMapper::class.java).values
+ log.info("mappers: {}", objectMappers)
+ assertTrue(objectMappers.isNotEmpty(), "ObjectMapper beans should be registered")
}
}
diff --git a/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/JacksonSerializationConfigTest.kt b/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/JacksonSerializationConfigTest.kt
index 63fcc7806..7528d7094 100644
--- a/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/JacksonSerializationConfigTest.kt
+++ b/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/JacksonSerializationConfigTest.kt
@@ -1,7 +1,5 @@
package io.github.truenine.composeserver.depend.jackson
-import com.fasterxml.jackson.databind.ObjectMapper
-import com.fasterxml.jackson.module.kotlin.readValue
import io.github.truenine.composeserver.depend.jackson.autoconfig.JacksonAutoConfiguration
import io.github.truenine.composeserver.testtoolkit.log
import jakarta.annotation.Resource
@@ -14,14 +12,16 @@ import kotlin.test.assertNotNull
import kotlin.test.assertTrue
import org.junit.jupiter.api.Nested
import org.springframework.boot.test.context.SpringBootTest
+import tools.jackson.databind.ObjectMapper
+import tools.jackson.module.kotlin.readValue
/**
- * Jackson序列化配置测试
+ * Jackson serialization configuration tests
*
- * 测试Jackson ObjectMapper的配置和序列化行为,包括:
- * - 非JSON类型序列化
- * - 时间戳序列化验证
- * - 配置正确性验证
+ * Tests the configuration and serialization behavior of Jackson ObjectMapper, including:
+ * - Serialization of non-JSON types
+ * - Timestamp serialization validation
+ * - Configuration correctness validation
*/
@SpringBootTest
class JacksonSerializationConfigTest {
@@ -36,7 +36,7 @@ class JacksonSerializationConfigTest {
var id: Long
@JvmName("____getdwadawdawdawdawdawdawd")
get() {
- if (__internalId === null) throw IllegalStateException("数据库 id 当前为空,不能获取")
+ if (__internalId === null) throw IllegalStateException("Database ID is currently null, cannot retrieve")
return __internalId!!
}
@JvmName("____setdwadawdawdawdawdawdawd")
@@ -116,7 +116,7 @@ class JacksonSerializationConfigTest {
val readValue = mapper.readValue(json)
log.info("Deserialized IdJson: {}", readValue)
assertNotNull(readValue)
- assertFailsWith("数据库 id 当前为空,不能获取") { readValue.id }
+ assertFailsWith("Database ID is currently null, cannot retrieve") { readValue.id }
}
}
@@ -130,15 +130,15 @@ class JacksonSerializationConfigTest {
log.info("LocalDateTime serialized with plain mapper: {}", json)
- // 验证是否序列化为时间戳(数字)而不是ISO字符串
+ // Verify if serialized as a timestamp (number) instead of an ISO string
val timestamp = json.toLongOrNull()
if (timestamp != null) {
log.info("LocalDateTime correctly serialized as timestamp: {}", timestamp)
- assertTrue(timestamp > 0, "时间戳应该大于0")
+ assertTrue(timestamp > 0, "Timestamp should be greater than 0")
} else {
log.info("LocalDateTime serialized as string format: {}", json)
- // 如果不是时间戳,应该是有效的JSON字符串
- assertTrue(json.startsWith("\"") && json.endsWith("\""), "应该是有效的JSON字符串格式")
+ // If not a timestamp, it should be a valid JSON string
+ assertTrue(json.startsWith("\"") && json.endsWith("\""), "Should be a valid JSON string format")
}
}
@@ -149,27 +149,27 @@ class JacksonSerializationConfigTest {
log.info("Instant serialized with plain mapper: {}", json)
- // 验证是否序列化为时间戳
+ // Verify if serialized as a timestamp
val timestamp = json.toLongOrNull()
if (timestamp != null) {
log.info("Instant correctly serialized as timestamp: {}", timestamp)
assertEquals(1737000645000L, timestamp)
} else {
log.info("Instant serialized as string format: {}", json)
- assertTrue(json.startsWith("\"") && json.endsWith("\""), "应该是有效的JSON字符串格式")
+ assertTrue(json.startsWith("\"") && json.endsWith("\""), "Should be a valid JSON string format")
}
}
@Test
fun `verify ObjectMapper configuration consistency`() {
- // 验证两个ObjectMapper的基本配置
- assertNotNull(mapper, "非忽略ObjectMapper应该正确注入")
- assertNotNull(plainMapper, "默认ObjectMapper应该正确注入")
+ // Verify the basic configuration of the two ObjectMappers
+ assertNotNull(mapper, "Non-ignoring ObjectMapper should be injected correctly")
+ assertNotNull(plainMapper, "Default ObjectMapper should be injected correctly")
- log.info("Non-ignore mapper configuration: {}", mapper.serializationConfig.toString())
- log.info("Plain mapper configuration: {}", plainMapper.serializationConfig.toString())
+ log.info("Non-ignore mapper configuration: {}", mapper.serializationConfig().toString())
+ log.info("Plain mapper configuration: {}", plainMapper.serializationConfig().toString())
- // 验证配置的一致性
+ // Verify configuration consistency
val testData = mapOf("test" to "value", "number" to 123)
val json1 = mapper.writeValueAsString(testData)
val json2 = plainMapper.writeValueAsString(testData)
@@ -177,9 +177,9 @@ class JacksonSerializationConfigTest {
log.info("Test data serialized by non-ignore mapper: {}", json1)
log.info("Test data serialized by plain mapper: {}", json2)
- // 基本数据类型的序列化应该一致
- assertTrue(json1.contains("\"test\":\"value\""), "应该包含正确的字符串值")
- assertTrue(json2.contains("\"test\":\"value\""), "应该包含正确的字符串值")
+ // Serialization of basic data types should be consistent
+ assertTrue(json1.contains("\"test\":\"value\""), "Should contain the correct string value")
+ assertTrue(json2.contains("\"test\":\"value\""), "Should contain the correct string value")
}
}
}
diff --git a/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/JacksonSerializationTest.kt b/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/JacksonSerializationTest.kt
index e7a91538e..ccc2760ac 100644
--- a/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/JacksonSerializationTest.kt
+++ b/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/JacksonSerializationTest.kt
@@ -1,6 +1,5 @@
package io.github.truenine.composeserver.depend.jackson
-import com.fasterxml.jackson.databind.ObjectMapper
import io.github.truenine.composeserver.depend.jackson.autoconfig.JacksonAutoConfiguration
import io.github.truenine.composeserver.testtoolkit.log
import jakarta.annotation.Resource
@@ -13,11 +12,12 @@ import kotlin.test.assertNotNull
import kotlin.test.assertTrue
import org.junit.jupiter.api.Nested
import org.springframework.boot.test.context.SpringBootTest
+import tools.jackson.databind.ObjectMapper
/**
- * Jackson序列化反序列化测试
+ * Jackson serialization and deserialization tests.
*
- * 测试基本的JSON序列化功能和时间戳序列化行为
+ * Verifies basic JSON serialization and timestamp serialization behavior.
*/
@SpringBootTest
class JacksonSerializationTest {
@@ -33,16 +33,16 @@ class JacksonSerializationTest {
val json = defaultMapper.writeValueAsString(longValue)
log.info("Long value {} serialized to: {}", longValue, json)
- assertEquals("1234567890123451", json, "Long值应该序列化为JSON数字格式")
+ assertEquals("1234567890123451", json, "Long value should be serialized as JSON numeric format")
- // 验证反序列化
+ // Verify deserialization
val deserializedLong = defaultMapper.readValue(json, Long::class.java)
assertEquals(longValue, deserializedLong)
}
@Test
fun serialize_string_preserves_content() {
- val stringValue = "test string with special chars: 中文 🎉 \"quotes\""
+ val stringValue = "test string with special chars: unicode \"quotes\""
val json = defaultMapper.writeValueAsString(stringValue)
log.info("String value serialized to: {}", json)
@@ -74,14 +74,14 @@ class JacksonSerializationTest {
log.info("LocalDateTime {} serialized to: {}", localDateTime, json)
- // 验证序列化为时间戳
+ // Verify serialization to timestamp
val timestamp = json.toLongOrNull()
- assertNotNull(timestamp, "LocalDateTime应该序列化为时间戳")
- assertTrue(timestamp > 0, "时间戳应该大于0")
+ assertNotNull(timestamp, "LocalDateTime should be serialized as timestamp")
+ assertTrue(timestamp > 0, "Timestamp should be greater than 0")
- // 验证时间戳的合理性
+ // Verify timestamp correctness
val expectedTimestamp = localDateTime.toInstant(ZoneOffset.UTC).toEpochMilli()
- assertEquals(expectedTimestamp, timestamp, "时间戳应该基于UTC计算")
+ assertEquals(expectedTimestamp, timestamp, "Timestamp should be calculated based on UTC")
}
@Test
@@ -104,7 +104,7 @@ class JacksonSerializationTest {
log.info("Round trip: {} -> {} -> {}", originalDateTime, json, deserializedDateTime)
- // 由于时间戳精度限制,纳秒部分可能丢失,只比较到毫秒
+ // Due to timestamp precision limitations, nanoseconds may be lost; compare in milliseconds only
val originalMillis = originalDateTime.toInstant(ZoneOffset.UTC).toEpochMilli()
val deserializedMillis = deserializedDateTime.toInstant(ZoneOffset.UTC).toEpochMilli()
assertEquals(originalMillis, deserializedMillis)
@@ -118,13 +118,13 @@ class JacksonSerializationTest {
log.info("Instant {} serialized to: {}", instant, json)
val timestamp = json.toLongOrNull()
- assertNotNull(timestamp, "Instant应该序列化为时间戳")
+ assertNotNull(timestamp, "Instant should be serialized as timestamp")
assertEquals(1737000645000L, timestamp)
}
@Test
fun timezone_independence_verification() {
- // 验证时区无关性 - LocalDateTime始终按UTC处理
+ // Verify time zone independence - LocalDateTime is always handled as UTC
val localDateTime1 = LocalDateTime.of(2025, 1, 16, 12, 30, 45)
val localDateTime2 = LocalDateTime.of(2025, 1, 16, 12, 30, 45)
@@ -134,11 +134,11 @@ class JacksonSerializationTest {
log.info("LocalDateTime1: {} -> {}", localDateTime1, json1)
log.info("LocalDateTime2: {} -> {}", localDateTime2, json2)
- assertEquals(json1, json2, "相同的LocalDateTime应该序列化为相同的时间戳")
+ assertEquals(json1, json2, "Same LocalDateTime should be serialized to the same timestamp")
- // 验证序列化结果是时间戳
+ // Verify serialization result is a timestamp
val timestamp = json1.toLongOrNull()
- assertNotNull(timestamp, "LocalDateTime应该序列化为时间戳")
+ assertNotNull(timestamp, "LocalDateTime should be serialized as timestamp")
}
}
}
diff --git a/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/KotlinModuleCompatibilityTest.kt b/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/KotlinModuleCompatibilityTest.kt
index 2cf67467e..7463939ca 100644
--- a/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/KotlinModuleCompatibilityTest.kt
+++ b/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/KotlinModuleCompatibilityTest.kt
@@ -1,16 +1,17 @@
package io.github.truenine.composeserver.depend.jackson
-import com.fasterxml.jackson.databind.ObjectMapper
import io.github.truenine.composeserver.Pq
import io.github.truenine.composeserver.testtoolkit.log
import jakarta.annotation.Resource
import java.time.LocalDateTime
import java.time.ZonedDateTime
+import kotlin.test.assertEquals
import kotlin.test.assertNotNull
import kotlin.test.assertTrue
import org.junit.jupiter.api.Nested
import org.junit.jupiter.api.Test
import org.springframework.boot.test.context.SpringBootTest
+import tools.jackson.databind.ObjectMapper
@SpringBootTest
class KotlinModuleCompatibilityTest {
@@ -31,16 +32,16 @@ class KotlinModuleCompatibilityTest {
"timestamp" to System.currentTimeMillis(),
)
- // 序列化
+ // Serialize
val json = mapper.writeValueAsString(testData)
log.info("Serialized mixed data: {}", json)
- // 验证JSON包含预期的结构
+ // Verify that the JSON contains the expected structure
assertTrue(json.contains("\"pair\":[\"key\",\"value\"]"))
assertTrue(json.contains("\"pageParam\":{"))
assertTrue(json.contains("\"timestamp\":"))
- // 反序列化
+ // Deserialize
val deserializedData = mapper.readValue(json, Map::class.java)
log.info("Deserialized mixed data: {}", deserializedData)
@@ -53,15 +54,15 @@ class KotlinModuleCompatibilityTest {
fun `pair serialization works with time objects`() {
val timePair = Pair(LocalDateTime.now(), ZonedDateTime.now())
- // 序列化
+ // Serialize
val json = mapper.writeValueAsString(timePair)
log.info("Serialized time pair: {}", json)
- // 验证是数组格式
+ // Verify that it is in array format
assertTrue(json.startsWith("["))
assertTrue(json.endsWith("]"))
- // 反序列化
+ // Deserialize
val deserializedPair = mapper.readValue(json, Pair::class.java)
log.info("Deserialized time pair: {}", deserializedPair)
@@ -73,11 +74,11 @@ class KotlinModuleCompatibilityTest {
fun `page param with time fields serializes correctly`() {
val complexData = mapOf("pagination" to Pq[0, 10], "createdAt" to LocalDateTime.now(), "metadata" to Pair("version", "1.0"))
- // 序列化
+ // Serialize
val json = mapper.writeValueAsString(complexData)
log.info("Serialized complex data: {}", json)
- // 反序列化
+ // Deserialize
val deserializedData = mapper.readValue(json, Map::class.java)
log.info("Deserialized complex data: {}", deserializedData)
@@ -92,13 +93,13 @@ class KotlinModuleCompatibilityTest {
@Test
fun `verify kotlin module is properly registered`() {
- // 测试Pair序列化
+ // Test Pair serialization
val pair = Pair("test", 123)
val pairJson = mapper.writeValueAsString(pair)
log.info("Pair serialization test: {}", pairJson)
- assertTrue(pairJson == """["test",123]""")
+ assertEquals(pairJson, """["test",123]""")
- // 测试IPageParam序列化
+ // Test IPageParam serialization
val pageParam = Pq[2, 30]
val pageParamJson = mapper.writeValueAsString(pageParam)
log.info("PageParam serialization test: {}", pageParamJson)
@@ -108,7 +109,7 @@ class KotlinModuleCompatibilityTest {
@Test
fun `verify no conflicts with other modules`() {
- // 创建包含多种类型的复杂对象
+ // Create a complex object with various types
val complexObject =
mapOf(
"string" to "test",
@@ -121,14 +122,14 @@ class KotlinModuleCompatibilityTest {
"nested" to mapOf("inner" to "value"),
)
- // 序列化和反序列化应该都成功
+ // Serialization and deserialization should both succeed
val json = mapper.writeValueAsString(complexObject)
log.info("Complex object JSON: {}", json)
val deserialized = mapper.readValue(json, Map::class.java)
log.info("Deserialized complex object: {}", deserialized)
- // 验证所有字段都存在
+ // Verify that all fields exist
assertNotNull(deserialized["string"])
assertNotNull(deserialized["number"])
assertNotNull(deserialized["boolean"])
diff --git a/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/KotlinPairSerializationTest.kt b/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/KotlinPairSerializationTest.kt
index f6dd42c2b..101b20103 100644
--- a/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/KotlinPairSerializationTest.kt
+++ b/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/KotlinPairSerializationTest.kt
@@ -1,6 +1,5 @@
package io.github.truenine.composeserver.depend.jackson
-import com.fasterxml.jackson.databind.ObjectMapper
import io.github.truenine.composeserver.testtoolkit.log
import jakarta.annotation.Resource
import kotlin.test.assertEquals
@@ -8,6 +7,7 @@ import kotlin.test.assertNotNull
import org.junit.jupiter.api.Nested
import org.junit.jupiter.api.Test
import org.springframework.boot.test.context.SpringBootTest
+import tools.jackson.databind.ObjectMapper
@SpringBootTest
class KotlinPairSerializationTest {
@@ -98,15 +98,15 @@ class KotlinPairSerializationTest {
fun `round trip serialization preserves pair values`() {
val originalPair = Pair("test", 123)
- // 序列化
+ // Serialize
val json = mapper.writeValueAsString(originalPair)
log.info("Serialized: {}", json)
- // 反序列化
+ // Deserialize
val deserializedPair = mapper.readValue(json, Pair::class.java)
log.info("Deserialized: {}", deserializedPair)
- // 验证
+ // Verify
assertEquals(originalPair.first, deserializedPair.first)
assertEquals(originalPair.second, deserializedPair.second)
}
@@ -115,15 +115,15 @@ class KotlinPairSerializationTest {
fun `round trip with nested objects`() {
val nestedPair = Pair(Pair("inner1", "inner2"), Pair(100, 200))
- // 序列化
+ // Serialize
val json = mapper.writeValueAsString(nestedPair)
log.info("Serialized nested pair: {}", json)
- // 反序列化
+ // Deserialize
val deserializedPair = mapper.readValue(json, Pair::class.java)
log.info("Deserialized nested pair: {}", deserializedPair)
- // 验证外层
+ // Verify outer layer
assertNotNull(deserializedPair.first)
assertNotNull(deserializedPair.second)
}
diff --git a/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/PeriodSerializerTest.kt b/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/PeriodSerializerTest.kt
index 953e339c3..9580dcf0c 100644
--- a/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/PeriodSerializerTest.kt
+++ b/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/PeriodSerializerTest.kt
@@ -1,13 +1,13 @@
package io.github.truenine.composeserver.depend.jackson
-import com.fasterxml.jackson.databind.ObjectMapper
-import com.fasterxml.jackson.module.kotlin.readValue
import io.github.truenine.composeserver.testtoolkit.log
import jakarta.annotation.Resource
import java.time.Period
import kotlin.test.Test
import kotlin.test.assertEquals
import org.springframework.boot.test.context.SpringBootTest
+import tools.jackson.databind.ObjectMapper
+import tools.jackson.module.kotlin.readValue
@SpringBootTest
class PeriodSerializerTest {
diff --git a/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/SailedClassSerializerTest.kt b/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/SailedClassSerializerTest.kt
index c03eb920f..047db1959 100644
--- a/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/SailedClassSerializerTest.kt
+++ b/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/SailedClassSerializerTest.kt
@@ -1,11 +1,11 @@
package io.github.truenine.composeserver.depend.jackson
-import com.fasterxml.jackson.databind.ObjectMapper
-import com.fasterxml.jackson.databind.exc.InvalidDefinitionException
import kotlin.test.Test
import kotlin.test.assertFailsWith
-import kotlin.test.assertNotNull
+import org.junit.jupiter.api.Assertions.assertNotNull
import org.springframework.boot.test.context.SpringBootTest
+import tools.jackson.databind.ObjectMapper
+import tools.jackson.databind.exc.InvalidDefinitionException
@SpringBootTest
class SailedClassSerializerTest {
@@ -18,7 +18,7 @@ class SailedClassSerializerTest {
}
@Test
- fun `jackson 默认情况下不能序列化密封类`() {
+ fun `jackson cannot serialize sealed class by default`() {
val ipv4 = IpAddress.V4(127, 0, 0, 1)
val ipV4 = defaultMapper.writeValueAsString(ipv4)
assertNotNull(ipV4)
diff --git a/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/TimestampSerializationTest.kt b/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/TimestampSerializationTest.kt
index a453087ec..d2b7803d7 100644
--- a/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/TimestampSerializationTest.kt
+++ b/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/TimestampSerializationTest.kt
@@ -1,6 +1,5 @@
package io.github.truenine.composeserver.depend.jackson
-import com.fasterxml.jackson.databind.ObjectMapper
import io.github.truenine.composeserver.depend.jackson.autoconfig.JacksonAutoConfiguration
import io.github.truenine.composeserver.testtoolkit.log
import jakarta.annotation.Resource
@@ -18,15 +17,16 @@ import kotlin.test.assertNotNull
import kotlin.test.assertTrue
import org.junit.jupiter.api.Nested
import org.springframework.boot.test.context.SpringBootTest
+import tools.jackson.databind.ObjectMapper
/**
- * 时间戳序列化综合测试
+ * Comprehensive timestamp serialization tests.
*
- * 测试Spring Boot环境下所有时间类型的时间戳序列化功能,包括:
- * - 所有时间类型的时间戳序列化
- * - 时区无关性验证
- * - 往返序列化正确性
- * - 不同时区下的一致性
+ * Tests the timestamp serialization functionality for all time types in a Spring Boot environment, including:
+ * - Timestamp serialization for all time types
+ * - Timezone independence validation
+ * - Round-trip serialization correctness
+ * - Consistency across different timezones
*/
@SpringBootTest
class TimestampSerializationTest {
@@ -47,14 +47,14 @@ class TimestampSerializationTest {
log.info("LocalDateTime {} serialized to: {}", dateTime, json)
- // 验证序列化为数字时间戳
+ // Verify serialization to a numeric timestamp
val timestamp = json.toLongOrNull()
- assertNotNull(timestamp, "LocalDateTime应该序列化为数字时间戳")
- assertTrue(timestamp > 0, "时间戳应该大于0")
+ assertNotNull(timestamp, "LocalDateTime should serialize to a numeric timestamp")
+ assertTrue(timestamp > 0, "Timestamp should be greater than 0")
- // 验证时间戳的合理性(2025年的时间戳应该在合理范围内)
- assertTrue(timestamp > 1700000000000L, "时间戳应该在2025年范围内")
- assertTrue(timestamp < 1800000000000L, "时间戳应该在合理范围内")
+ // Verify the reasonableness of the timestamp (a timestamp for 2025 should be within a reasonable range)
+ assertTrue(timestamp > 1700000000000L, "Timestamp should be within the range for 2025")
+ assertTrue(timestamp < 1800000000000L, "Timestamp should be within a reasonable range")
}
@Test
@@ -77,7 +77,7 @@ class TimestampSerializationTest {
log.info("Round trip: {} -> {} -> {}", originalDateTime, json, deserializedDateTime)
- // 由于时间戳精度限制,纳秒部分可能丢失,只比较到毫秒
+ // Due to timestamp precision limitations, the nanosecond part may be lost, so we only compare up to milliseconds
val originalMillis = originalDateTime.toInstant(ZoneOffset.UTC).toEpochMilli()
val deserializedMillis = deserializedDateTime.toInstant(ZoneOffset.UTC).toEpochMilli()
assertEquals(originalMillis, deserializedMillis)
@@ -95,7 +95,7 @@ class TimestampSerializationTest {
log.info("Instant {} serialized to: {}", instant, json)
val timestamp = json.toLongOrNull()
- assertNotNull(timestamp, "Instant应该序列化为数字时间戳")
+ assertNotNull(timestamp, "Instant should serialize to a numeric timestamp")
assertEquals(1737000645000L, timestamp)
}
@@ -112,7 +112,7 @@ class TimestampSerializationTest {
@Test
fun `round trip Instant serialization preserves precision`() {
- // 使用毫秒精度的Instant避免精度丢失问题
+ // Use a millisecond-precision Instant to avoid precision loss issues
val originalInstant = Instant.ofEpochMilli(System.currentTimeMillis())
val json = defaultMapper.writeValueAsString(originalInstant)
@@ -134,10 +134,10 @@ class TimestampSerializationTest {
log.info("ZonedDateTime {} serialized to: {}", zonedDateTime, json)
val timestamp = json.toLongOrNull()
- assertNotNull(timestamp, "ZonedDateTime应该序列化为数字时间戳")
- assertTrue(timestamp > 0, "时间戳应该大于0")
+ assertNotNull(timestamp, "ZonedDateTime should serialize to a numeric timestamp")
+ assertTrue(timestamp > 0, "Timestamp should be greater than 0")
- // 验证时间戳与预期的UTC时间戳一致
+ // Verify that the timestamp is consistent with the expected UTC timestamp
val expectedTimestamp = zonedDateTime.toInstant().toEpochMilli()
assertEquals(expectedTimestamp, timestamp)
}
@@ -151,7 +151,7 @@ class TimestampSerializationTest {
log.info("Timestamp {} deserialized to ZonedDateTime: {}", timestamp, deserializedZonedDateTime)
- // 由于反序列化时使用UTC时区,需要比较Instant
+ // Since deserialization uses the UTC timezone, compare the Instants
assertEquals(originalZonedDateTime.toInstant(), deserializedZonedDateTime.toInstant())
}
@@ -164,7 +164,7 @@ class TimestampSerializationTest {
log.info("Round trip: {} -> {} -> {}", originalZonedDateTime, json, deserializedZonedDateTime)
- // 时区可能不同,但时间点应该相同
+ // Timezone may differ, but the instant in time should be the same
assertEquals(originalZonedDateTime.toInstant(), deserializedZonedDateTime.toInstant())
}
}
@@ -180,10 +180,10 @@ class TimestampSerializationTest {
log.info("OffsetDateTime {} serialized to: {}", offsetDateTime, json)
val timestamp = json.toLongOrNull()
- assertNotNull(timestamp, "OffsetDateTime应该序列化为数字时间戳")
- assertTrue(timestamp > 0, "时间戳应该大于0")
+ assertNotNull(timestamp, "OffsetDateTime should serialize to a numeric timestamp")
+ assertTrue(timestamp > 0, "Timestamp should be greater than 0")
- // 验证时间戳与预期的UTC时间戳一致
+ // Verify that the timestamp is consistent with the expected UTC timestamp
val expectedTimestamp = offsetDateTime.toInstant().toEpochMilli()
assertEquals(expectedTimestamp, timestamp)
}
@@ -197,7 +197,7 @@ class TimestampSerializationTest {
log.info("Timestamp {} deserialized to OffsetDateTime: {}", timestamp, deserializedOffsetDateTime)
- // 由于反序列化时使用UTC偏移,需要比较Instant
+ // Since deserialization uses a UTC offset, compare the Instants
assertEquals(originalOffsetDateTime.toInstant(), deserializedOffsetDateTime.toInstant())
}
@@ -210,7 +210,7 @@ class TimestampSerializationTest {
log.info("Round trip: {} -> {} -> {}", originalOffsetDateTime, json, deserializedOffsetDateTime)
- // 偏移量可能不同,但时间点应该相同
+ // Offset may differ, but the instant in time should be the same
assertEquals(originalOffsetDateTime.toInstant(), deserializedOffsetDateTime.toInstant())
}
}
@@ -220,7 +220,7 @@ class TimestampSerializationTest {
@Test
fun `different timezones serialize to same timestamp for same instant`() {
- // 相同的时间点,不同的时区表示
+ // Same instant in time, different timezone representations
val utcTime = ZonedDateTime.of(2025, 1, 16, 12, 30, 45, 0, ZoneOffset.UTC)
val shanghaiTime = ZonedDateTime.of(2025, 1, 16, 20, 30, 45, 0, ZoneId.of("Asia/Shanghai"))
val newYorkTime = ZonedDateTime.of(2025, 1, 16, 7, 30, 45, 0, ZoneId.of("America/New_York"))
@@ -236,15 +236,15 @@ class TimestampSerializationTest {
log.info("New York: {} -> {}", newYorkTime, newYorkJson)
log.info("London: {} -> {}", londonTime, londonJson)
- // 相同的时间点应该序列化为相同的时间戳
- assertEquals(utcJson, shanghaiJson, "相同时间点的不同时区应该序列化为相同时间戳")
- assertEquals(utcJson, newYorkJson, "相同时间点的不同时区应该序列化为相同时间戳")
- assertEquals(utcJson, londonJson, "相同时间点的不同时区应该序列化为相同时间戳")
+ // The same instant in time should serialize to the same timestamp
+ assertEquals(utcJson, shanghaiJson, "Different timezones for the same instant should serialize to the same timestamp")
+ assertEquals(utcJson, newYorkJson, "Different timezones for the same instant should serialize to the same timestamp")
+ assertEquals(utcJson, londonJson, "Different timezones for the same instant should serialize to the same timestamp")
}
@Test
fun `OffsetDateTime with different offsets serialize to same timestamp for same instant`() {
- // 相同的UTC时间点,不同的偏移量表示
+ // Same UTC instant, different offset representations
val utcOffset = OffsetDateTime.of(2025, 1, 16, 12, 30, 45, 0, ZoneOffset.UTC)
val plusEightOffset = OffsetDateTime.of(2025, 1, 16, 20, 30, 45, 0, ZoneOffset.ofHours(8))
val minusFiveOffset = OffsetDateTime.of(2025, 1, 16, 7, 30, 45, 0, ZoneOffset.ofHours(-5))
@@ -257,13 +257,13 @@ class TimestampSerializationTest {
log.info("+8 offset: {} -> {}", plusEightOffset, plusEightJson)
log.info("-5 offset: {} -> {}", minusFiveOffset, minusFiveJson)
- assertEquals(utcJson, plusEightJson, "相同时间点的不同偏移量应该序列化为相同时间戳")
- assertEquals(utcJson, minusFiveJson, "相同时间点的不同偏移量应该序列化为相同时间戳")
+ assertEquals(utcJson, plusEightJson, "Different offsets for the same instant should serialize to the same timestamp")
+ assertEquals(utcJson, minusFiveJson, "Different offsets for the same instant should serialize to the same timestamp")
}
@Test
fun `LocalDateTime serialization is timezone independent`() {
- // LocalDateTime没有时区信息,应该始终按UTC处理
+ // LocalDateTime has no timezone information, so it should always be treated as UTC
val localDateTime1 = LocalDateTime.of(2025, 1, 16, 12, 30, 45)
val localDateTime2 = LocalDateTime.of(2025, 1, 16, 12, 30, 45)
@@ -273,11 +273,11 @@ class TimestampSerializationTest {
log.info("LocalDateTime1: {} -> {}", localDateTime1, json1)
log.info("LocalDateTime2: {} -> {}", localDateTime2, json2)
- assertEquals(json1, json2, "相同的LocalDateTime应该序列化为相同的时间戳")
+ assertEquals(json1, json2, "The same LocalDateTime should serialize to the same timestamp")
- // 验证序列化结果是时间戳
+ // Verify that the serialization result is a timestamp
val timestamp = json1.toLongOrNull()
- assertNotNull(timestamp, "LocalDateTime应该序列化为时间戳")
+ assertNotNull(timestamp, "LocalDateTime should serialize to a timestamp")
}
}
@@ -292,15 +292,15 @@ class TimestampSerializationTest {
val json = defaultMapper.writeValueAsString(localDate)
log.info("LocalDate {} serialized to: {}", localDate, json)
- // LocalDate可能序列化为字符串或数组格式,取决于配置
- assertTrue(json.isNotEmpty(), "LocalDate序列化结果不应为空")
+ // LocalDate may be serialized to a string or an array format, depending on the configuration
+ assertTrue(json.isNotEmpty(), "LocalDate serialization result should not be empty")
- // 尝试反序列化验证
+ // Try to deserialize for verification
val deserializedDate = defaultMapper.readValue(json, LocalDate::class.java)
assertEquals(localDate, deserializedDate)
} catch (e: Exception) {
log.info("LocalDate serialization failed as expected: {}", e.message)
- // LocalDate可能不支持时间戳序列化,这是正常的
+ // LocalDate may not support timestamp serialization, which is normal
}
}
@@ -312,14 +312,14 @@ class TimestampSerializationTest {
val json = defaultMapper.writeValueAsString(localTime)
log.info("LocalTime {} serialized to: {}", localTime, json)
- assertTrue(json.isNotEmpty(), "LocalTime序列化结果不应为空")
+ assertTrue(json.isNotEmpty(), "LocalTime serialization result should not be empty")
- // 尝试反序列化验证
+ // Try to deserialize for verification
val deserializedTime = defaultMapper.readValue(json, LocalTime::class.java)
assertEquals(localTime, deserializedTime)
} catch (e: Exception) {
log.info("LocalTime serialization failed as expected: {}", e.message)
- // LocalTime可能不支持时间戳序列化,这是正常的
+ // LocalTime may not support timestamp serialization, which is normal
}
}
}
@@ -333,34 +333,34 @@ class TimestampSerializationTest {
val localDateTime = LocalDateTime.of(2025, 1, 16, 12, 30, 45)
val zonedDateTime = ZonedDateTime.of(2025, 1, 16, 12, 30, 45, 0, ZoneId.of("Asia/Shanghai"))
- // 测试Instant
+ // Test Instant
val instantJson1 = defaultMapper.writeValueAsString(instant)
val instantJson2 = nonIgnoreMapper.writeValueAsString(instant)
log.info("Instant - Default mapper: {}, Non-ignore mapper: {}", instantJson1, instantJson2)
- // 测试LocalDateTime
+ // Test LocalDateTime
val localDateTimeJson1 = defaultMapper.writeValueAsString(localDateTime)
val localDateTimeJson2 = nonIgnoreMapper.writeValueAsString(localDateTime)
log.info("LocalDateTime - Default mapper: {}, Non-ignore mapper: {}", localDateTimeJson1, localDateTimeJson2)
- // 测试ZonedDateTime
+ // Test ZonedDateTime
val zonedDateTimeJson1 = defaultMapper.writeValueAsString(zonedDateTime)
val zonedDateTimeJson2 = nonIgnoreMapper.writeValueAsString(zonedDateTime)
log.info("ZonedDateTime - Default mapper: {}, Non-ignore mapper: {}", zonedDateTimeJson1, zonedDateTimeJson2)
- // 验证两个mapper的时间戳序列化行为一致
- // 注意:非忽略mapper可能包含额外的类型信息,所以我们主要验证时间戳值
+ // Verify that the timestamp serialization behavior of the two mappers is consistent
+ // Note: The non-ignoring mapper may include additional type information, so we mainly verify the timestamp value
val instantTimestamp1 = instantJson1.toLongOrNull()
val instantTimestamp2 =
if (instantJson2.contains("@class")) {
- // 如果包含类型信息,提取数值部分
+ // If type information is included, extract the numeric part
instantJson2.substringAfterLast(":").substringBefore("}").toLongOrNull()
} else {
instantJson2.toLongOrNull()
}
if (instantTimestamp1 != null && instantTimestamp2 != null) {
- assertEquals(instantTimestamp1, instantTimestamp2, "两个ObjectMapper应该产生相同的Instant时间戳")
+ assertEquals(instantTimestamp1, instantTimestamp2, "Both ObjectMappers should produce the same Instant timestamp")
}
}
@@ -369,10 +369,10 @@ class TimestampSerializationTest {
val timestamp = 1737000645000L
val timestampJson = timestamp.toString()
- // 测试默认mapper能正确反序列化时间戳
+ // Test that the default mapper can correctly deserialize the timestamp
val instant1 = defaultMapper.readValue(timestampJson, Instant::class.java)
- // 非忽略mapper需要类型信息,所以我们使用它序列化后再反序列化
+ // The non-ignoring mapper needs type information, so we serialize it first and then deserialize it
val instant = Instant.ofEpochMilli(timestamp)
val nonIgnoreJson = nonIgnoreMapper.writeValueAsString(instant)
val instant2 = nonIgnoreMapper.readValue(nonIgnoreJson, Instant::class.java)
@@ -381,7 +381,7 @@ class TimestampSerializationTest {
log.info("Non-ignore mapper round trip: {} -> {} -> {}", instant, nonIgnoreJson, instant2)
assertEquals(Instant.ofEpochMilli(timestamp), instant1)
- assertEquals(instant, instant2, "非忽略mapper往返序列化应该保持一致")
+ assertEquals(instant, instant2, "Non-ignoring mapper round-trip serialization should remain consistent")
}
}
@@ -392,7 +392,7 @@ class TimestampSerializationTest {
fun `multiple round trips maintain consistency`() {
val originalInstant = Instant.ofEpochMilli(1737000645000L)
- // 进行多次往返序列化
+ // Perform multiple round-trip serializations
var currentInstant = originalInstant
repeat(5) { iteration ->
val json = defaultMapper.writeValueAsString(currentInstant)
@@ -400,7 +400,7 @@ class TimestampSerializationTest {
log.info("Round trip {}: {} -> {} -> {}", iteration + 1, if (iteration == 0) originalInstant else "previous", json, currentInstant)
- assertEquals(originalInstant, currentInstant, "第${iteration + 1}次往返后应该保持一致")
+ assertEquals(originalInstant, currentInstant, "Should remain consistent after the ${iteration + 1}-th round trip")
}
}
@@ -432,7 +432,7 @@ class TimestampSerializationTest {
assertEquals(event.id, deserializedEvent.id)
assertEquals(event.timestamp, deserializedEvent.timestamp)
- // 时间字段可能因为时区处理而略有不同,但时间点应该相同
+ // The time fields may differ slightly due to timezone handling, but the instants should be the same
assertEquals(event.timestamp.toEpochMilli(), deserializedEvent.timestamp.toEpochMilli())
assertEquals(event.zonedTime.toInstant(), deserializedEvent.zonedTime.toInstant())
assertEquals(event.offsetTime.toInstant(), deserializedEvent.offsetTime.toInstant())
diff --git a/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/TimestampSerializersTest.kt b/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/TimestampSerializersTest.kt
index 0d1d88f39..bf68be51b 100644
--- a/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/TimestampSerializersTest.kt
+++ b/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/TimestampSerializersTest.kt
@@ -1,7 +1,5 @@
package io.github.truenine.composeserver.depend.jackson
-import com.fasterxml.jackson.databind.ObjectMapper
-import com.fasterxml.jackson.databind.module.SimpleModule
import io.github.truenine.composeserver.depend.jackson.serializers.InstantTimestampDeserializer
import io.github.truenine.composeserver.depend.jackson.serializers.InstantTimestampSerializer
import io.github.truenine.composeserver.depend.jackson.serializers.LocalDateTimeTimestampDeserializer
@@ -23,11 +21,16 @@ import kotlin.test.assertNotNull
import kotlin.test.assertTrue
import org.junit.jupiter.api.BeforeEach
import org.junit.jupiter.api.Nested
+import tools.jackson.databind.ObjectMapper
+import tools.jackson.databind.json.JsonMapper
+import tools.jackson.databind.module.SimpleDeserializers
+import tools.jackson.databind.module.SimpleModule
+import tools.jackson.databind.module.SimpleSerializers
/**
- * 时间戳序列化器测试
+ * Timestamp serializer tests
*
- * 测试所有时间类型的时间戳序列化和反序列化功能
+ * Tests timestamp serialization and deserialization for all time types.
*/
class TimestampSerializersTest {
@@ -35,19 +38,24 @@ class TimestampSerializersTest {
@BeforeEach
fun setup() {
- mapper = ObjectMapper()
- val module =
- SimpleModule().apply {
- addSerializer(LocalDateTime::class.java, LocalDateTimeTimestampSerializer())
- addDeserializer(LocalDateTime::class.java, LocalDateTimeTimestampDeserializer())
- addSerializer(Instant::class.java, InstantTimestampSerializer())
- addDeserializer(Instant::class.java, InstantTimestampDeserializer())
- addSerializer(ZonedDateTime::class.java, ZonedDateTimeTimestampSerializer())
- addDeserializer(ZonedDateTime::class.java, ZonedDateTimeTimestampDeserializer())
- addSerializer(OffsetDateTime::class.java, OffsetDateTimeTimestampSerializer())
- addDeserializer(OffsetDateTime::class.java, OffsetDateTimeTimestampDeserializer())
- }
- mapper.registerModule(module)
+ val module = SimpleModule()
+
+ val serializers = SimpleSerializers()
+ serializers.addSerializer(LocalDateTime::class.java, LocalDateTimeTimestampSerializer())
+ serializers.addSerializer(Instant::class.java, InstantTimestampSerializer())
+ serializers.addSerializer(ZonedDateTime::class.java, ZonedDateTimeTimestampSerializer())
+ serializers.addSerializer(OffsetDateTime::class.java, OffsetDateTimeTimestampSerializer())
+
+ val deserializers = SimpleDeserializers()
+ deserializers.addDeserializer(LocalDateTime::class.java, LocalDateTimeTimestampDeserializer())
+ deserializers.addDeserializer(Instant::class.java, InstantTimestampDeserializer())
+ deserializers.addDeserializer(ZonedDateTime::class.java, ZonedDateTimeTimestampDeserializer())
+ deserializers.addDeserializer(OffsetDateTime::class.java, OffsetDateTimeTimestampDeserializer())
+
+ module.setSerializers(serializers)
+ module.setDeserializers(deserializers)
+
+ mapper = JsonMapper.builder().addModule(module).build()
}
@Nested
@@ -60,10 +68,10 @@ class TimestampSerializersTest {
log.info("LocalDateTime serialized to: {}", json)
- // 验证序列化为数字时间戳
+ // Verify serialization to a numeric timestamp
val timestamp = json.toLongOrNull()
- assertNotNull(timestamp, "序列化结果应该是数字时间戳")
- assertTrue(timestamp > 0, "时间戳应该大于0")
+ assertNotNull(timestamp, "Serialization result should be a numeric timestamp")
+ assertTrue(timestamp > 0, "Timestamp should be greater than 0")
}
@Test
@@ -102,7 +110,7 @@ class TimestampSerializersTest {
log.info("Instant serialized to: {}", json)
val timestamp = json.toLongOrNull()
- assertNotNull(timestamp, "序列化结果应该是数字时间戳")
+ assertNotNull(timestamp, "Serialization result should be a numeric timestamp")
assertEquals(1737000645000L, timestamp)
}
@@ -120,7 +128,7 @@ class TimestampSerializersTest {
@Test
fun `round trip Instant serialization`() {
- // 使用毫秒精度的Instant避免精度丢失问题
+ // Use a millisecond-precision Instant to avoid precision loss issues
val originalInstant = Instant.ofEpochMilli(System.currentTimeMillis())
val json = mapper.writeValueAsString(originalInstant)
@@ -143,8 +151,8 @@ class TimestampSerializersTest {
log.info("ZonedDateTime serialized to: {}", json)
val timestamp = json.toLongOrNull()
- assertNotNull(timestamp, "序列化结果应该是数字时间戳")
- assertTrue(timestamp > 0, "时间戳应该大于0")
+ assertNotNull(timestamp, "Serialization result should be a numeric timestamp")
+ assertTrue(timestamp > 0, "Timestamp should be greater than 0")
}
@Test
@@ -156,7 +164,7 @@ class TimestampSerializersTest {
log.info("Timestamp {} deserialized to ZonedDateTime: {}", timestamp, deserializedZonedDateTime)
- // 由于反序列化时使用UTC时区,需要比较Instant
+ // Since deserialization uses the UTC timezone, compare the Instants
assertEquals(originalZonedDateTime.toInstant(), deserializedZonedDateTime.toInstant())
}
@@ -169,7 +177,7 @@ class TimestampSerializersTest {
log.info("Round trip: {} -> {} -> {}", originalZonedDateTime, json, deserializedZonedDateTime)
- // 时区可能不同,但时间点应该相同
+ // Timezone may differ, but the instant in time should be the same
assertEquals(originalZonedDateTime.toInstant(), deserializedZonedDateTime.toInstant())
}
}
@@ -185,8 +193,8 @@ class TimestampSerializersTest {
log.info("OffsetDateTime serialized to: {}", json)
val timestamp = json.toLongOrNull()
- assertNotNull(timestamp, "序列化结果应该是数字时间戳")
- assertTrue(timestamp > 0, "时间戳应该大于0")
+ assertNotNull(timestamp, "Serialization result should be a numeric timestamp")
+ assertTrue(timestamp > 0, "Timestamp should be greater than 0")
}
@Test
@@ -198,7 +206,7 @@ class TimestampSerializersTest {
log.info("Timestamp {} deserialized to OffsetDateTime: {}", timestamp, deserializedOffsetDateTime)
- // 由于反序列化时使用UTC偏移,需要比较Instant
+ // Since deserialization uses a UTC offset, compare the Instants
assertEquals(originalOffsetDateTime.toInstant(), deserializedOffsetDateTime.toInstant())
}
@@ -211,7 +219,7 @@ class TimestampSerializersTest {
log.info("Round trip: {} -> {} -> {}", originalOffsetDateTime, json, deserializedOffsetDateTime)
- // 偏移量可能不同,但时间点应该相同
+ // Offset may differ, but the instant in time should be the same
assertEquals(originalOffsetDateTime.toInstant(), deserializedOffsetDateTime.toInstant())
}
}
@@ -233,9 +241,9 @@ class TimestampSerializersTest {
log.info("Shanghai: {} -> {}", shanghaiTime, shanghaiJson)
log.info("New York: {} -> {}", newYorkTime, newYorkJson)
- // 相同的时间点应该序列化为相同的时间戳
- assertEquals(utcJson, shanghaiJson, "相同时间点的不同时区应该序列化为相同时间戳")
- assertEquals(utcJson, newYorkJson, "相同时间点的不同时区应该序列化为相同时间戳")
+ // The same instant in time should serialize to the same timestamp
+ assertEquals(utcJson, shanghaiJson, "Different timezones for the same instant should serialize to the same timestamp")
+ assertEquals(utcJson, newYorkJson, "Different timezones for the same instant should serialize to the same timestamp")
}
}
}
diff --git a/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/autoconfig/JacksonPropertiesTest.kt b/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/autoconfig/JacksonPropertiesTest.kt
index 4db5e4619..a042c11e2 100644
--- a/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/autoconfig/JacksonPropertiesTest.kt
+++ b/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/autoconfig/JacksonPropertiesTest.kt
@@ -8,7 +8,7 @@ import org.junit.jupiter.api.Nested
import org.junit.jupiter.api.Test
/**
- * JacksonProperties配置类测试
+ * JacksonProperties configuration class tests
*
* @author TrueNine
* @since 2025-01-16
diff --git a/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/holders/ObjectMapperHolderTest.kt b/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/holders/ObjectMapperHolderTest.kt
index 2ddcf634d..4a34873f2 100644
--- a/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/holders/ObjectMapperHolderTest.kt
+++ b/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/holders/ObjectMapperHolderTest.kt
@@ -1,16 +1,17 @@
package io.github.truenine.composeserver.depend.jackson.holders
-import com.fasterxml.jackson.databind.ObjectMapper
import io.github.truenine.composeserver.depend.jackson.autoconfig.JacksonAutoConfiguration
+import jakarta.annotation.Resource
import kotlin.test.assertNotNull
import kotlin.test.assertSame
import org.junit.jupiter.api.Nested
import org.junit.jupiter.api.Test
import org.springframework.boot.test.context.SpringBootTest
import org.springframework.test.context.TestPropertySource
+import tools.jackson.databind.ObjectMapper
/**
- * ObjectMapperHolder配置持有者测试
+ * ObjectMapperHolder configuration holder tests
*
* @author TrueNine
* @since 2025-01-16
@@ -19,11 +20,11 @@ import org.springframework.test.context.TestPropertySource
@TestPropertySource(properties = ["compose.jackson.enableTimestampSerialization=true", "compose.jackson.timestampUnit=MILLISECONDS"])
class ObjectMapperHolderTest {
- @jakarta.annotation.Resource private lateinit var objectMapperHolder: ObjectMapperHolder
+ @Resource private lateinit var objectMapperHolder: ObjectMapperHolder
- @jakarta.annotation.Resource(name = "defaultObjectMapper") private lateinit var defaultMapper: ObjectMapper
+ @Resource(name = "defaultObjectMapper") private lateinit var defaultMapper: ObjectMapper
- @jakarta.annotation.Resource(name = "nonIgnoreObjectMapper") private lateinit var nonIgnoreMapper: ObjectMapper
+ @Resource(name = "nonIgnoreObjectMapper") private lateinit var nonIgnoreMapper: ObjectMapper
@Nested
inner class GetDefaultMapper {
@@ -32,8 +33,8 @@ class ObjectMapperHolderTest {
fun should_return_default_mapper() {
val mapper = objectMapperHolder.getDefaultMapper()
- assertNotNull(mapper, "默认mapper不应为null")
- assertSame(defaultMapper, mapper, "应返回相同的默认mapper实例")
+ assertNotNull(mapper, "Default mapper should not be null")
+ assertSame(defaultMapper, mapper, "Should return the same default mapper instance")
}
}
@@ -44,8 +45,8 @@ class ObjectMapperHolderTest {
fun should_return_non_ignore_mapper() {
val mapper = objectMapperHolder.getNonIgnoreMapper()
- assertNotNull(mapper, "非忽略mapper不应为null")
- assertSame(nonIgnoreMapper, mapper, "应返回相同的非忽略mapper实例")
+ assertNotNull(mapper, "Non-ignore mapper should not be null")
+ assertSame(nonIgnoreMapper, mapper, "Should return the same non-ignore mapper instance")
}
}
@@ -56,24 +57,24 @@ class ObjectMapperHolderTest {
fun should_return_default_mapper_when_ignore_unknown_is_true() {
val mapper = objectMapperHolder.getMapper(ignoreUnknown = true)
- assertNotNull(mapper, "mapper不应为null")
- assertSame(defaultMapper, mapper, "ignoreUnknown=true时应返回默认mapper")
+ assertNotNull(mapper, "Mapper should not be null")
+ assertSame(defaultMapper, mapper, "Should return default mapper when ignoreUnknown=true")
}
@Test
fun should_return_non_ignore_mapper_when_ignore_unknown_is_false() {
val mapper = objectMapperHolder.getMapper(ignoreUnknown = false)
- assertNotNull(mapper, "mapper不应为null")
- assertSame(nonIgnoreMapper, mapper, "ignoreUnknown=false时应返回非忽略mapper")
+ assertNotNull(mapper, "Mapper should not be null")
+ assertSame(nonIgnoreMapper, mapper, "Should return non-ignore mapper when ignoreUnknown=false")
}
@Test
fun should_return_default_mapper_when_no_parameter() {
val mapper = objectMapperHolder.getMapper()
- assertNotNull(mapper, "mapper不应为null")
- assertSame(defaultMapper, mapper, "无参数时应返回默认mapper")
+ assertNotNull(mapper, "Mapper should not be null")
+ assertSame(defaultMapper, mapper, "Should return default mapper when no parameter is provided")
}
}
}
diff --git a/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/ISO8601DeserializerTest.kt b/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/ISO8601DeserializerTest.kt
index 99d5046eb..ac1929619 100644
--- a/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/ISO8601DeserializerTest.kt
+++ b/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/ISO8601DeserializerTest.kt
@@ -1,9 +1,5 @@
package io.github.truenine.composeserver.depend.jackson.serializers
-import com.fasterxml.jackson.databind.ObjectMapper
-import com.fasterxml.jackson.databind.module.SimpleModule
-import com.fasterxml.jackson.module.kotlin.KotlinModule
-import com.fasterxml.jackson.module.kotlin.registerKotlinModule
import io.github.truenine.composeserver.toMillis
import java.time.LocalDate
import java.time.LocalDateTime
@@ -17,11 +13,16 @@ import org.junit.jupiter.api.Nested
import org.junit.jupiter.api.Test
import org.junit.jupiter.params.ParameterizedTest
import org.junit.jupiter.params.provider.ValueSource
+import tools.jackson.databind.ObjectMapper
+import tools.jackson.databind.json.JsonMapper
+import tools.jackson.databind.module.SimpleDeserializers
+import tools.jackson.databind.module.SimpleModule
+import tools.jackson.module.kotlin.KotlinModule
/**
- * ISO8601Deserializer 单元测试
+ * ISO8601Deserializer unit tests.
*
- * 测试各种类型的时间戳反序列化功能
+ * Tests deserialization of various timestamp-based time types.
*/
class ISO8601DeserializerTest {
@@ -30,60 +31,59 @@ class ISO8601DeserializerTest {
@BeforeEach
fun setup() {
- objectMapper = ObjectMapper()
- // 注册KotlinModule以支持Kotlin数据类
- objectMapper.registerModule(KotlinModule.Builder().build())
- objectMapper.registerKotlinModule()
-
- // 创建一个简单模块并添加反序列化器
+ // Create module and register deserializers
val module = SimpleModule()
- module.addDeserializer(LocalDate::class.java, ISO8601Deserializer.LocalDateDeserializerX(zoneOffset))
- module.addDeserializer(LocalDateTime::class.java, ISO8601Deserializer.LocalDateTimeDeserializerZ(zoneOffset))
- module.addDeserializer(LocalTime::class.java, ISO8601Deserializer.LocalTimeDeserializerY(zoneOffset))
- // 注册模块
- objectMapper.registerModule(module)
+ val deserializers = SimpleDeserializers()
+ deserializers.addDeserializer(LocalDate::class.java, ISO8601Deserializer.LocalDateDeserializerX(zoneOffset))
+ deserializers.addDeserializer(LocalDateTime::class.java, ISO8601Deserializer.LocalDateTimeDeserializerZ(zoneOffset))
+ deserializers.addDeserializer(LocalTime::class.java, ISO8601Deserializer.LocalTimeDeserializerY(zoneOffset))
+
+ module.setDeserializers(deserializers)
+
+ // Register KotlinModule to support Kotlin data classes
+ objectMapper = JsonMapper.builder().addModule(KotlinModule.Builder().build()).addModule(module).build()
}
@Nested
inner class CommonDeserializerFunctionsGroup {
@Test
- fun `正常反序列化时,应正确转换时间戳`() {
- // 创建测试数据
+ fun `deserialize should correctly convert timestamp`() {
+ // Create test data
val testDate = LocalDate.of(2023, 5, 15)
val timestamp = testDate.toMillis(zoneOffset)
val json = """{"date":"$timestamp"}"""
- // 反序列化
+ // Deserialize
val result = objectMapper.readValue(json, LocalDateWrapper::class.java)
- // 验证
+ // Verify
assertNotNull(result.date)
assertEquals(testDate, result.date)
}
@Test
- fun `反序列化空值时,应返回null`() {
- // 创建测试数据
+ fun `deserialize null value should return null`() {
+ // Create test data
val json = """{"date":null}"""
- // 反序列化
+ // Deserialize
val result = objectMapper.readValue(json, LocalDateWrapper::class.java)
- // 验证
+ // Verify
assertNull(result.date)
}
@Test
- fun `反序列化非数字值时,应返回null`() {
- // 创建测试数据
+ fun `deserialize non numeric value should return null`() {
+ // Create test data
val json = """{"date":"not-a-number"}"""
- // 反序列化
+ // Deserialize
val result = objectMapper.readValue(json, LocalDateWrapper::class.java)
- // 验证
+ // Verify
assertNull(result.date)
}
}
@@ -92,32 +92,32 @@ class ISO8601DeserializerTest {
inner class LocalDateDeserializerGroup {
@Test
- fun `正常反序列化LocalDate时,应正确还原日期`() {
- // 准备测试数据
+ fun `deserialize LocalDate should restore original date`() {
+ // Prepare test data
val originalDate = LocalDate.of(2023, 5, 15)
val timestamp = originalDate.toMillis(zoneOffset)
val json = """{"date":"$timestamp"}"""
- // 反序列化
+ // Deserialize
val result = objectMapper.readValue(json, LocalDateWrapper::class.java)
- // 验证
+ // Verify
assertNotNull(result.date)
assertEquals(originalDate, result.date)
}
@ParameterizedTest
@ValueSource(strings = ["1970-01-01", "2023-12-31", "2024-02-29"])
- fun `边界日期值反序列化时,应正确处理`(dateStr: String) {
- // 解析测试日期
+ fun `boundary LocalDate values should be handled correctly`(dateStr: String) {
+ // Parse test date
val testDate = LocalDate.parse(dateStr)
val timestamp = testDate.toMillis(zoneOffset)
val json = """{"date":"$timestamp"}"""
- // 反序列化
+ // Deserialize
val result = objectMapper.readValue(json, LocalDateWrapper::class.java)
- // 验证
+ // Verify
assertNotNull(result.date)
assertEquals(testDate, result.date)
}
@@ -127,40 +127,40 @@ class ISO8601DeserializerTest {
inner class LocalDateTimeDeserializerGroup {
@Test
- fun `正常反序列化LocalDateTime时,应正确还原日期时间`() {
- // 准备测试数据
+ fun `deserialize LocalDateTime should restore original value`() {
+ // Prepare test data
val originalDateTime = LocalDateTime.of(2023, 5, 15, 10, 30, 45)
val timestamp = originalDateTime.toMillis(zoneOffset)
val json = """{"dateTime":"$timestamp"}"""
- // 反序列化
+ // Deserialize
val result = objectMapper.readValue(json, LocalDateTimeWrapper::class.java)
- // 验证
+ // Verify
assertNotNull(result.dateTime)
assertEquals(originalDateTime, result.dateTime)
}
@Test
- fun `边界时间值反序列化时,应正确处理`() {
- // 测试最小时间
+ fun `boundary LocalDateTime values should be handled correctly`() {
+ // Test minimum time
val minDateTime = LocalDateTime.of(1970, 1, 1, 0, 0, 0)
val minTimestamp = minDateTime.toMillis(zoneOffset)
val minJson = """{"dateTime":"$minTimestamp"}"""
- // 反序列化
+ // Deserialize
val minResult = objectMapper.readValue(minJson, LocalDateTimeWrapper::class.java)
assertEquals(minDateTime, minResult.dateTime)
- // 测试当前时间
+ // Test current time
val nowDateTime = LocalDateTime.now()
val nowTimestamp = nowDateTime.toMillis(zoneOffset)
val nowJson = """{"dateTime":"$nowTimestamp"}"""
- // 反序列化
+ // Deserialize
val nowResult = objectMapper.readValue(nowJson, LocalDateTimeWrapper::class.java)
- // 由于毫秒精度可能不同,所以比较年月日时分秒
+ // Compare date-time components due to possible millisecond precision differences
assertEquals(nowDateTime.year, nowResult.dateTime?.year)
assertEquals(nowDateTime.month, nowResult.dateTime?.month)
assertEquals(nowDateTime.dayOfMonth, nowResult.dateTime?.dayOfMonth)
@@ -174,16 +174,16 @@ class ISO8601DeserializerTest {
inner class LocalTimeDeserializerGroup {
@Test
- fun `正常反序列化LocalTime时,应正确还原时间`() {
- // 准备测试数据
+ fun `deserialize LocalTime should restore original time`() {
+ // Prepare test data
val originalTime = LocalTime.of(10, 30, 45)
val timestamp = originalTime.toMillis(zoneOffset)
val json = """{"time":"$timestamp"}"""
- // 反序列化
+ // Deserialize
val result = objectMapper.readValue(json, LocalTimeWrapper::class.java)
- // 验证
+ // Verify
assertNotNull(result.time)
assertEquals(originalTime.hour, result.time.hour)
assertEquals(originalTime.minute, result.time.minute)
@@ -192,16 +192,16 @@ class ISO8601DeserializerTest {
@ParameterizedTest
@ValueSource(strings = ["00:00:00", "12:00:00", "23:59:59"])
- fun `边界时间值反序列化时,应正确处理`(timeStr: String) {
- // 解析测试时间
+ fun `boundary LocalTime values should be handled correctly`(timeStr: String) {
+ // Parse test time
val testTime = LocalTime.parse(timeStr)
val timestamp = testTime.toMillis(zoneOffset)
val json = """{"time":"$timestamp"}"""
- // 反序列化
+ // Deserialize
val result = objectMapper.readValue(json, LocalTimeWrapper::class.java)
- // 验证
+ // Verify
assertNotNull(result.time)
assertEquals(testTime.hour, result.time.hour)
assertEquals(testTime.minute, result.time.minute)
@@ -213,32 +213,32 @@ class ISO8601DeserializerTest {
inner class FactoryMethodsGroup {
@Test
- fun `forLocalDate工厂方法应创建正确的反序列化器`() {
- // 准备测试数据
+ fun `forLocalDate factory should create correct deserializer`() {
+ // Prepare test data
val testZoneOffset = ZoneOffset.ofHours(8)
val deserializer = ISO8601Deserializer.LocalDateDeserializerX(testZoneOffset)
- // 验证类型
+ // Verify type
assertEquals("LocalDateDeserializerX", deserializer.javaClass.simpleName)
}
@Test
- fun `forLocalDateTime工厂方法应创建正确的反序列化器`() {
- // 准备测试数据
+ fun `forLocalDateTime factory should create correct deserializer`() {
+ // Prepare test data
val testZoneOffset = ZoneOffset.ofHours(8)
val deserializer = ISO8601Deserializer.LocalDateTimeDeserializerZ(testZoneOffset)
- // 验证类型
+ // Verify type
assertEquals("LocalDateTimeDeserializerZ", deserializer.javaClass.simpleName)
}
@Test
- fun `forLocalTime工厂方法应创建正确的反序列化器`() {
- // 准备测试数据
+ fun `forLocalTime factory should create correct deserializer`() {
+ // Prepare test data
val testZoneOffset = ZoneOffset.ofHours(8)
val deserializer = ISO8601Deserializer.LocalTimeDeserializerY(testZoneOffset)
- // 验证类型
+ // Verify type
assertEquals("LocalTimeDeserializerY", deserializer.javaClass.simpleName)
}
}
@@ -247,30 +247,34 @@ class ISO8601DeserializerTest {
inner class ZoneOffsetGroup {
@Test
- fun `不同时区应正确转换时间戳`() {
- // 使用不同的时区创建反序列化器
+ fun `different time zones should convert timestamps correctly`() {
+ // Create deserializers with different zone offsets
val beijingZone = ZoneOffset.ofHours(8)
val module = SimpleModule()
module.addDeserializer(LocalDate::class.java, ISO8601Deserializer.LocalDateDeserializerX(beijingZone))
- val beijingMapper = ObjectMapper()
- beijingMapper.registerModule(KotlinModule.Builder().build())
- beijingMapper.registerModule(module)
+ val beijingMapper =
+ JsonMapper.builder()
+ .also {
+ it.addModule(KotlinModule.Builder().build())
+ it.addModule(module)
+ }
+ .build()
- // 准备测试数据
+ // Prepare test data
val originalDate = LocalDate.of(2023, 5, 15)
val utcTimestamp = originalDate.toMillis(ZoneOffset.UTC)
val json = """{"date":"$utcTimestamp"}"""
- // 反序列化
+ // Deserialize
val result = beijingMapper.readValue(json, LocalDateWrapper::class.java)
- // 验证结果与原始数据可能有时区差异
+ // Verify result (may differ due to time zone differences)
assertNotNull(result.date)
}
}
- // 测试用包装类
+ // Wrapper classes for testing
data class LocalDateWrapper(val date: LocalDate?)
data class LocalDateTimeWrapper(val dateTime: LocalDateTime?)
diff --git a/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/ISO8601SerializerTest.kt b/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/ISO8601SerializerTest.kt
index 8a2a97be5..d6135f12c 100644
--- a/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/ISO8601SerializerTest.kt
+++ b/depend/depend-jackson/src/test/kotlin/io/github/truenine/composeserver/depend/jackson/serializers/ISO8601SerializerTest.kt
@@ -1,10 +1,5 @@
package io.github.truenine.composeserver.depend.jackson.serializers
-import com.fasterxml.jackson.annotation.JsonTypeInfo
-import com.fasterxml.jackson.databind.ObjectMapper
-import com.fasterxml.jackson.databind.module.SimpleModule
-import com.fasterxml.jackson.module.kotlin.KotlinModule
-import com.fasterxml.jackson.module.kotlin.registerKotlinModule
import io.github.truenine.composeserver.toMillis
import java.time.LocalDate
import java.time.LocalDateTime
@@ -17,6 +12,12 @@ import org.junit.jupiter.api.Nested
import org.junit.jupiter.api.Test
import org.junit.jupiter.params.ParameterizedTest
import org.junit.jupiter.params.provider.ValueSource
+import tools.jackson.databind.ObjectMapper
+import tools.jackson.databind.json.JsonMapper
+import tools.jackson.databind.module.SimpleDeserializers
+import tools.jackson.databind.module.SimpleModule
+import tools.jackson.databind.module.SimpleSerializers
+import tools.jackson.module.kotlin.KotlinModule
class ISO8601SerializerTest {
@@ -25,72 +26,70 @@ class ISO8601SerializerTest {
@BeforeEach
fun setup() {
- objectMapper = ObjectMapper()
- // 注册KotlinModule以支持Kotlin数据类
- objectMapper.registerModule(KotlinModule.Builder().build())
- objectMapper.registerKotlinModule()
-
- // 创建一个简单模块并添加序列化器
- val serializerModule = SimpleModule()
- serializerModule.addSerializer(LocalDate::class.java, ISO8601Serializer.ISO8601DateSerializer(zoneOffset))
- serializerModule.addSerializer(LocalDateTime::class.java, ISO8601Serializer.ISO8601DateTimeSerializer(zoneOffset))
- serializerModule.addSerializer(LocalTime::class.java, ISO8601Serializer.ISO8601TimeSerializer(zoneOffset))
-
- // 创建一个简单模块并添加反序列化器
- val deserializerModule = SimpleModule()
- deserializerModule.addDeserializer(LocalDate::class.java, ISO8601Deserializer.LocalDateDeserializerX(zoneOffset))
- deserializerModule.addDeserializer(LocalDateTime::class.java, ISO8601Deserializer.LocalDateTimeDeserializerZ(zoneOffset))
- deserializerModule.addDeserializer(LocalTime::class.java, ISO8601Deserializer.LocalTimeDeserializerY(zoneOffset))
-
- // 注册模块
- objectMapper.registerModule(serializerModule)
- objectMapper.registerModule(deserializerModule)
+ // Create module and register serializers and deserializers
+ val module = SimpleModule()
+
+ val serializers = SimpleSerializers()
+ serializers.addSerializer(LocalDate::class.java, ISO8601Serializer.ISO8601DateSerializer(zoneOffset))
+ serializers.addSerializer(LocalDateTime::class.java, ISO8601Serializer.ISO8601DateTimeSerializer(zoneOffset))
+ serializers.addSerializer(LocalTime::class.java, ISO8601Serializer.ISO8601TimeSerializer(zoneOffset))
+
+ val deserializers = SimpleDeserializers()
+ deserializers.addDeserializer(LocalDate::class.java, ISO8601Deserializer.LocalDateDeserializerX(zoneOffset))
+ deserializers.addDeserializer(LocalDateTime::class.java, ISO8601Deserializer.LocalDateTimeDeserializerZ(zoneOffset))
+ deserializers.addDeserializer(LocalTime::class.java, ISO8601Deserializer.LocalTimeDeserializerY(zoneOffset))
+
+ module.setSerializers(serializers)
+ module.setDeserializers(deserializers)
+
+ // Register KotlinModule to support Kotlin data classes
+ objectMapper = JsonMapper.builder().addModule(KotlinModule.Builder().build()).addModule(module).build()
}
@Nested
inner class ISO8601DateSerializerGroup {
@Test
- fun `正常序列化LocalDate时,应返回对应的时间戳`() {
- // 创建测试数据
+ fun `serialize LocalDate should return matching timestamp`() {
+ // Create test data
val testDate = LocalDate.of(2023, 5, 15)
val testData = LocalDateWrapper(testDate)
- // 序列化
+ // Serialize
val json = objectMapper.writeValueAsString(testData)
- // 验证结果是否为数字格式
+ // Verify result is numeric
val expectedTimestamp = testDate.toMillis(zoneOffset)
val expectedJson = """{"date":$expectedTimestamp}"""
assertEquals(expectedJson, json)
}
@Test
- fun `正常反序列化LocalDate时,应正确还原日期`() {
- // 准备测试数据
+ fun `deserialize LocalDate should restore original date`() {
+ // Prepare test data
val originalDate = LocalDate.of(2023, 5, 15)
val timestamp = originalDate.toMillis(zoneOffset)
val json = """{"date":$timestamp}"""
- // 反序列化
+ // Deserialize
val result = objectMapper.readValue(json, LocalDateWrapper::class.java)
- // 验证
+ // Verify
assertNotNull(result.date)
assertEquals(originalDate, result.date)
}
@ParameterizedTest
@ValueSource(strings = ["1970-01-01", "2023-12-31", "2024-02-29"])
- fun `边界日期值序列化时,应正确处理`(dateStr: String) {
- // 解析测试日期
+ fun `boundary LocalDate values should be handled correctly`(dateStr: String) {
+ // Parse test date
val testDate = LocalDate.parse(dateStr)
val testData = LocalDateWrapper(testDate)
- // 序列化
+ // Serialize
val json = objectMapper.writeValueAsString(testData)
- // 反序列化进行验证
+ // Deserialize and verify
val result = objectMapper.readValue(json, LocalDateWrapper::class.java)
assertEquals(testDate, result.date)
}
@@ -100,59 +99,59 @@ class ISO8601SerializerTest {
inner class ISO8601DateTimeSerializerGroup {
@Test
- fun `正常序列化LocalDateTime时,应返回对应的时间戳`() {
- // 创建测试数据
+ fun `serialize LocalDateTime should return matching timestamp`() {
+ // Create test data
val testDateTime = LocalDateTime.of(2023, 5, 15, 10, 30, 45)
val testData = LocalDateTimeWrapper(testDateTime)
- // 序列化
+ // Serialize
val json = objectMapper.writeValueAsString(testData)
- // 验证结果是否为数字格式
+ // Verify result is numeric
val expectedTimestamp = testDateTime.toMillis(zoneOffset)
val expectedJson = """{"dateTime":$expectedTimestamp}"""
assertEquals(expectedJson, json)
}
@Test
- fun `正常反序列化LocalDateTime时,应正确还原日期时间`() {
- // 准备测试数据
+ fun `deserialize LocalDateTime should restore original value`() {
+ // Prepare test data
val originalDateTime = LocalDateTime.of(2023, 5, 15, 10, 30, 45)
val timestamp = originalDateTime.toMillis(zoneOffset)
val json = """{"dateTime":$timestamp}"""
- // 反序列化
+ // Deserialize
val result = objectMapper.readValue(json, LocalDateTimeWrapper::class.java)
- // 验证
+ // Verify
assertNotNull(result.dateTime)
assertEquals(originalDateTime, result.dateTime)
}
@Test
- fun `边界时间值序列化时,应正确处理`() {
- // 测试最小时间
+ fun `boundary LocalDateTime values should be handled correctly`() {
+ // Test minimum time
val minDateTime = LocalDateTime.of(1970, 1, 1, 0, 0, 0)
val minTestData = LocalDateTimeWrapper(minDateTime)
- // 序列化
+ // Serialize
val minJson = objectMapper.writeValueAsString(minTestData)
- // 反序列化验证
+ // Deserialize and verify
val minResult = objectMapper.readValue(minJson, LocalDateTimeWrapper::class.java)
assertEquals(minDateTime, minResult.dateTime)
- // 测试当前时间
+ // Test current time
val nowDateTime = LocalDateTime.now()
val nowTestData = LocalDateTimeWrapper(nowDateTime)
- // 序列化
+ // Serialize
val nowJson = objectMapper.writeValueAsString(nowTestData)
- // 反序列化验证
+ // Deserialize and verify
val nowResult = objectMapper.readValue(nowJson, LocalDateTimeWrapper::class.java)
- // 由于毫秒精度可能不同,所以比较年月日时分秒
+ // Compare date-time components due to possible millisecond precision differences
assertEquals(nowDateTime.year, nowResult.dateTime?.year)
assertEquals(nowDateTime.month, nowResult.dateTime?.month)
assertEquals(nowDateTime.dayOfMonth, nowResult.dateTime?.dayOfMonth)
@@ -166,31 +165,31 @@ class ISO8601SerializerTest {
inner class ISO8601TimeSerializerGroup {
@Test
- fun `正常序列化LocalTime时,应返回对应的时间戳`() {
- // 创建测试数据
+ fun `serialize LocalTime should return matching timestamp`() {
+ // Create test data
val testTime = LocalTime.of(10, 30, 45)
val testData = LocalTimeWrapper(testTime)
- // 序列化
+ // Serialize
val json = objectMapper.writeValueAsString(testData)
- // 验证结果是否为数字格式
+ // Verify result is numeric
val expectedTimestamp = testTime.toMillis(zoneOffset)
val expectedJson = """{"time":$expectedTimestamp}"""
assertEquals(expectedJson, json)
}
@Test
- fun `正常反序列化LocalTime时,应正确还原时间`() {
- // 准备测试数据
+ fun `deserialize LocalTime should restore original time`() {
+ // Prepare test data
val originalTime = LocalTime.of(10, 30, 45)
val timestamp = originalTime.toMillis(zoneOffset)
val json = """{"time":$timestamp}"""
- // 反序列化
+ // Deserialize
val result = objectMapper.readValue(json, LocalTimeWrapper::class.java)
- // 验证
+ // Verify
assertNotNull(result.time)
assertEquals(originalTime.hour, result.time.hour)
assertEquals(originalTime.minute, result.time.minute)
@@ -199,15 +198,15 @@ class ISO8601SerializerTest {
@ParameterizedTest
@ValueSource(strings = ["00:00:00", "12:00:00", "23:59:59"])
- fun `边界时间值序列化时,应正确处理`(timeStr: String) {
- // 解析测试时间
+ fun `boundary LocalTime values should be handled correctly`(timeStr: String) {
+ // Parse test time
val testTime = LocalTime.parse(timeStr)
val testData = LocalTimeWrapper(testTime)
- // 序列化
+ // Serialize
val json = objectMapper.writeValueAsString(testData)
- // 反序列化进行验证
+ // Deserialize and verify
val result = objectMapper.readValue(json, LocalTimeWrapper::class.java)
assertNotNull(result.time)
assertEquals(testTime.hour, result.time.hour)
@@ -220,39 +219,41 @@ class ISO8601SerializerTest {
inner class SerializeWithTypeGroup {
@Test
- fun `使用TypeInfo时,应正确序列化和反序列化`() {
- // 配置对象映射器支持多态性
- val polymorphicMapper = ObjectMapper()
- polymorphicMapper.registerModule(KotlinModule.Builder().build())
-
- // 创建并注册序列化和反序列化模块
- val serializerModule = SimpleModule()
- serializerModule.addSerializer(LocalDate::class.java, ISO8601Serializer.ISO8601DateSerializer(zoneOffset))
- serializerModule.addSerializer(LocalDateTime::class.java, ISO8601Serializer.ISO8601DateTimeSerializer(zoneOffset))
- serializerModule.addSerializer(LocalTime::class.java, ISO8601Serializer.ISO8601TimeSerializer(zoneOffset))
-
- val deserializerModule = SimpleModule()
- deserializerModule.addDeserializer(LocalDate::class.java, ISO8601Deserializer.LocalDateDeserializerX(zoneOffset))
- deserializerModule.addDeserializer(LocalDateTime::class.java, ISO8601Deserializer.LocalDateTimeDeserializerZ(zoneOffset))
- deserializerModule.addDeserializer(LocalTime::class.java, ISO8601Deserializer.LocalTimeDeserializerY(zoneOffset))
-
- polymorphicMapper.registerModule(serializerModule)
- polymorphicMapper.registerModule(deserializerModule)
-
- // 创建包含多种时间类型的复合对象
+ fun `serialize and deserialize correctly with TypeInfo`() {
+ val polymorphicMapper =
+ JsonMapper.builder()
+ .also {
+ // Create and register serializer and deserializer modules
+ val serializerModule = SimpleModule()
+ serializerModule.addSerializer(LocalDate::class.java, ISO8601Serializer.ISO8601DateSerializer(zoneOffset))
+ serializerModule.addSerializer(LocalDateTime::class.java, ISO8601Serializer.ISO8601DateTimeSerializer(zoneOffset))
+ serializerModule.addSerializer(LocalTime::class.java, ISO8601Serializer.ISO8601TimeSerializer(zoneOffset))
+
+ val deserializerModule = SimpleModule()
+ deserializerModule.addDeserializer(LocalDate::class.java, ISO8601Deserializer.LocalDateDeserializerX(zoneOffset))
+ deserializerModule.addDeserializer(LocalDateTime::class.java, ISO8601Deserializer.LocalDateTimeDeserializerZ(zoneOffset))
+ deserializerModule.addDeserializer(LocalTime::class.java, ISO8601Deserializer.LocalTimeDeserializerY(zoneOffset))
+
+ it.addModule(serializerModule)
+ it.addModule(deserializerModule)
+ }
+ .addModule(KotlinModule.Builder().build())
+ .build()
+
+ // Create composite object containing multiple time types
val dateTime = LocalDateTime.of(2023, 5, 15, 10, 30, 45)
val date = dateTime.toLocalDate()
val time = dateTime.toLocalTime()
val testData = TypeInfoWrapper(date = date, dateTime = dateTime, time = time)
- // 序列化
+ // Serialize
val json = polymorphicMapper.writeValueAsString(testData)
- // 反序列化
+ // Deserialize
val result = polymorphicMapper.readValue(json, TypeInfoWrapper::class.java)
- // 验证
+ // Verify
assertEquals(date, result.date)
assertEquals(dateTime, result.dateTime)
assertEquals(time.hour, result.time?.hour)
@@ -261,7 +262,7 @@ class ISO8601SerializerTest {
}
}
- // 测试用包装类
+ // Wrapper classes for testing
data class LocalDateWrapper(val date: LocalDate?)
@@ -269,9 +270,5 @@ class ISO8601SerializerTest {
data class LocalTimeWrapper(val time: LocalTime?)
- data class TypeInfoWrapper(
- @JsonTypeInfo(use = JsonTypeInfo.Id.CLASS) val date: LocalDate?,
- @JsonTypeInfo(use = JsonTypeInfo.Id.CLASS) val dateTime: LocalDateTime?,
- @JsonTypeInfo(use = JsonTypeInfo.Id.CLASS) val time: LocalTime?,
- )
+ data class TypeInfoWrapper(val date: LocalDate?, val dateTime: LocalDateTime?, val time: LocalTime?)
}
diff --git a/depend/depend-paho/build.gradle.kts b/depend/depend-paho/build.gradle.kts
index f0ae01913..306dd62ec 100644
--- a/depend/depend-paho/build.gradle.kts
+++ b/depend/depend-paho/build.gradle.kts
@@ -13,7 +13,7 @@ description =
dependencies {
implementation(libs.org.springframework.integration.spring.integration.mqtt)
implementation(libs.org.eclipse.paho.client.mqttv3)
- implementation(libs.com.fasterxml.jackson.core.jackson.databind)
+ implementation(libs.tools.jackson.core.jackson.databind)
api(projects.shared)
testImplementation(projects.testtoolkit.testtoolkitShared)
diff --git a/depend/depend-paho/src/main/kotlin/io/github/truenine/composeserver/depend/paho/autoconfig/SingleMqttConnectionAutoConfiguration.kt b/depend/depend-paho/src/main/kotlin/io/github/truenine/composeserver/depend/paho/autoconfig/SingleMqttConnectionAutoConfiguration.kt
index f1a1b0f8c..10deeea0a 100644
--- a/depend/depend-paho/src/main/kotlin/io/github/truenine/composeserver/depend/paho/autoconfig/SingleMqttConnectionAutoConfiguration.kt
+++ b/depend/depend-paho/src/main/kotlin/io/github/truenine/composeserver/depend/paho/autoconfig/SingleMqttConnectionAutoConfiguration.kt
@@ -1,6 +1,5 @@
package io.github.truenine.composeserver.depend.paho.autoconfig
-import com.fasterxml.jackson.databind.ObjectMapper
import io.github.truenine.composeserver.depend.paho.paho.MqttPahoClientWrapper
import io.github.truenine.composeserver.depend.paho.properties.SingleMqttProperties
import io.github.truenine.composeserver.slf4j
@@ -13,6 +12,7 @@ import org.springframework.context.annotation.Bean
import org.springframework.context.annotation.Configuration
import org.springframework.integration.mqtt.core.DefaultMqttPahoClientFactory
import org.springframework.integration.mqtt.core.MqttPahoClientFactory
+import tools.jackson.databind.ObjectMapper
private val log = slf4j(SingleMqttConnectionAutoConfiguration::class)
@@ -51,11 +51,11 @@ class SingleMqttConnectionAutoConfiguration(private val p: SingleMqttProperties,
options.keepAliveInterval = p.keepAliveSecond
options.mqttVersion = 3
if (!client.isConnected) {
- log.trace("等待创建 mqtt 连接 client = {}", client)
+ log.trace("Waiting to create MQTT connection for client = {}", client)
client.connect(options)
- log.trace("创建完成 mqtt 连接 client = {}", client)
+ log.trace("MQTT connection created for client = {}", client)
} else {
- log.trace("客户端已连接")
+ log.trace("Client is already connected")
client.disconnect()
client.connect(options)
}
diff --git a/depend/depend-paho/src/main/kotlin/io/github/truenine/composeserver/depend/paho/integration/BasicMqttMessingGateway.kt b/depend/depend-paho/src/main/kotlin/io/github/truenine/composeserver/depend/paho/integration/BasicMqttMessingGateway.kt
index ce8f33174..77d626003 100644
--- a/depend/depend-paho/src/main/kotlin/io/github/truenine/composeserver/depend/paho/integration/BasicMqttMessingGateway.kt
+++ b/depend/depend-paho/src/main/kotlin/io/github/truenine/composeserver/depend/paho/integration/BasicMqttMessingGateway.kt
@@ -5,32 +5,32 @@ import org.springframework.integration.mqtt.support.MqttHeaders
import org.springframework.messaging.handler.annotation.Header
/**
- * mqtt 基础消息发送器
+ * Basic MQTT message sender.
*
* @author TrueNine
* @since 2023-10-15
*/
interface BasicMqttMessingGateway {
/**
- * 将消息发送到默认主题,如果存在
+ * Sends a message to the default topic, if it exists.
*
- * @param data 发送数据
+ * @param data The data to be sent.
*/
fun send(data: T)
/**
- * 将消息发送到指定主题
+ * Sends a message to the specified topic.
*
- * @param topic 主题
- * @param data 发送数据
+ * @param topic The target topic.
+ * @param data The data to be sent.
*/
fun unsafeSendToTopic(@Header(MqttHeaders.TOPIC) topic: String, data: T)
/**
- * 将消息发送到指定主题
+ * Sends a message to the specified topic.
*
- * @param topic 主题
- * @param data 发送数据
+ * @param topic The target topic.
+ * @param data The data to be sent.
*/
fun sendToTopic(@Header(MqttHeaders.TOPIC) topic: String, data: T) {
return unsafeSendToTopic(topic.replaceFirstIfPrefix("/", ""), data)
diff --git a/depend/depend-paho/src/main/kotlin/io/github/truenine/composeserver/depend/paho/integration/JacksonSerializerMessageInterceptor.kt b/depend/depend-paho/src/main/kotlin/io/github/truenine/composeserver/depend/paho/integration/JacksonSerializerMessageInterceptor.kt
index 6be3e8cda..31f7394f2 100644
--- a/depend/depend-paho/src/main/kotlin/io/github/truenine/composeserver/depend/paho/integration/JacksonSerializerMessageInterceptor.kt
+++ b/depend/depend-paho/src/main/kotlin/io/github/truenine/composeserver/depend/paho/integration/JacksonSerializerMessageInterceptor.kt
@@ -1,11 +1,11 @@
package io.github.truenine.composeserver.depend.paho.integration
-import com.fasterxml.jackson.databind.ObjectMapper
import org.springframework.messaging.Message
import org.springframework.messaging.MessageChannel
import org.springframework.messaging.support.ChannelInterceptor
import org.springframework.messaging.support.GenericMessage
import org.springframework.stereotype.Service
+import tools.jackson.databind.ObjectMapper
@Service
class JacksonSerializerMessageInterceptor(private val objectMapper: ObjectMapper) : ChannelInterceptor {
diff --git a/depend/depend-paho/src/main/kotlin/io/github/truenine/composeserver/depend/paho/paho/MqttPahoClientWrapper.kt b/depend/depend-paho/src/main/kotlin/io/github/truenine/composeserver/depend/paho/paho/MqttPahoClientWrapper.kt
index 955611569..b10beadad 100644
--- a/depend/depend-paho/src/main/kotlin/io/github/truenine/composeserver/depend/paho/paho/MqttPahoClientWrapper.kt
+++ b/depend/depend-paho/src/main/kotlin/io/github/truenine/composeserver/depend/paho/paho/MqttPahoClientWrapper.kt
@@ -1,10 +1,10 @@
package io.github.truenine.composeserver.depend.paho.paho
-import com.fasterxml.jackson.databind.ObjectMapper
import java.io.Closeable
import kotlin.reflect.KClass
import org.eclipse.paho.client.mqttv3.IMqttClient
import org.eclipse.paho.client.mqttv3.MqttConnectOptions
+import tools.jackson.databind.ObjectMapper
class MqttPahoClientWrapper(private val client: IMqttClient, private val options: MqttConnectOptions, private val objectMapper: ObjectMapper) : Closeable {
val isConnected: Boolean
diff --git a/depend/depend-paho/src/test/resources/testng.xml b/depend/depend-paho/src/test/resources/testng.xml
index b5dc7f0c4..7818692a5 100644
--- a/depend/depend-paho/src/test/resources/testng.xml
+++ b/depend/depend-paho/src/test/resources/testng.xml
@@ -1,7 +1,7 @@
-
+
diff --git a/depend/depend-servlet/build.gradle.kts b/depend/depend-servlet/build.gradle.kts
index df55376e7..d70cfd033 100644
--- a/depend/depend-servlet/build.gradle.kts
+++ b/depend/depend-servlet/build.gradle.kts
@@ -13,7 +13,9 @@ description =
dependencies {
api(libs.org.springframework.boot.spring.boot.starter.web)
api(libs.jakarta.servlet.jakarta.servlet.api)
+ api(projects.depend.dependJackson)
+ implementation(libs.tools.jackson.core.jackson.databind)
implementation(libs.org.springframework.boot.spring.boot.starter.websocket)
implementation(libs.org.springframework.boot.spring.boot.autoconfigure)
diff --git a/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/HttpServletRequestFns.kt b/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/HttpServletRequestFns.kt
index 7f5207ee3..f02559140 100644
--- a/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/HttpServletRequestFns.kt
+++ b/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/HttpServletRequestFns.kt
@@ -7,14 +7,14 @@ import jakarta.servlet.http.HttpServletRequest
val HttpServletRequest.headerMap: Map
get() = headerNames.asSequence().map { it to getHeader(it) }.toMap()
-/** 获取当前设备的 deviceId */
+/** Get the deviceId of the current device */
val HttpServletRequest.deviceId: String?
get() = IHeaders.getDeviceId(this)
/**
- * ## 当前请求的 ip 地址
+ * ## IP address of the current request
*
- * 尽量获取到真实的ip地址
+ * Tries to get the real IP address as much as possible
*/
val HttpServletRequest.remoteRequestIp: String
get() = IInterAddr.getRequestIpAddress(this)
diff --git a/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/HttpServletResponseFns.kt b/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/HttpServletResponseFns.kt
index 5e01916e5..0eb5b9cfb 100644
--- a/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/HttpServletResponseFns.kt
+++ b/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/HttpServletResponseFns.kt
@@ -30,8 +30,8 @@ inline fun HttpServletResponse.useSse(
return this.useResponse(contentType = MediaTypes.SSE, charset = charset, locale = locale) { with(it) }
}
-/** ## 设置下载时的东西 */
-@Deprecated("流使用完毕就关了流")
+/** ## Set up for downloads */
+@Deprecated("The stream is closed after use")
fun HttpServletResponse.withDownload(
fileName: String,
contentType: MediaTypes = MediaTypes.BINARY,
diff --git a/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/SpringResponseEntityFns.kt b/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/SpringResponseEntityFns.kt
index 9d860bd0e..e1498f87a 100644
--- a/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/SpringResponseEntityFns.kt
+++ b/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/SpringResponseEntityFns.kt
@@ -62,7 +62,7 @@ data class ResponseEntityScope(
}
}
-/** 加以限制的 HTTP HEAD 返回 */
+/** Restricted HTTP HEAD response */
inline fun headMethodResponse(scope: ResponseEntityScope.() -> Unit): ResponseEntity {
val sc = ResponseEntityScope()
scope(sc)
diff --git a/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/annotations/HeadMapping.kt b/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/annotations/HeadMapping.kt
index 0f45510b2..ac042f4c9 100644
--- a/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/annotations/HeadMapping.kt
+++ b/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/annotations/HeadMapping.kt
@@ -9,11 +9,11 @@ import org.springframework.web.bind.annotation.RequestMethod
/**
* ## HTTP Method HEAD
*
- * 方法常用于检索资源的元数据,不响应 Body
- * - 应返回空数据,即使有数据也应当抛弃
- * - 应在请求头中体现,采取尽量少的资源索取策略,不应使用与 HTTP 无关的响应头
- * - see also [RFC HTTP protocol Method HEAD](https://www.rfc-editor.org/rfc/rfc7231#section-4.3.2)
- * - see also [MDN HTTP HEAD Method](https://developer.mozilla.org/zh-CN/docs/Web/HTTP/Methods/HEAD)
+ * This method is often used to retrieve metadata for a resource without returning the response body.
+ * - Should return empty data; any data present should be discarded.
+ * - Should be reflected in the request headers, adopting a minimal resource retrieval strategy. Response headers unrelated to HTTP should not be used.
+ * - See also [RFC HTTP protocol Method HEAD](https://www.rfc-editor.org/rfc/rfc7231#section-4.3.2)
+ * - See also [MDN HTTP HEAD Method](https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/HEAD)
*
* @see org.springframework.web.bind.annotation.GetMapping
* @author TrueNine
diff --git a/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/autoconfig/DefaultDependServletWebMvcAutoConfiguration.kt b/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/autoconfig/DefaultDependServletWebMvcAutoConfiguration.kt
index c7cfc1fa1..ad9cd1840 100644
--- a/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/autoconfig/DefaultDependServletWebMvcAutoConfiguration.kt
+++ b/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/autoconfig/DefaultDependServletWebMvcAutoConfiguration.kt
@@ -1,22 +1,37 @@
package io.github.truenine.composeserver.depend.servlet.autoconfig
+import io.github.truenine.composeserver.depend.jackson.autoconfig.JacksonAutoConfiguration
+import io.github.truenine.composeserver.depend.servlet.converters.ToolsJacksonHttpMessageConverter
import io.github.truenine.composeserver.depend.servlet.resolvers.IPageParamLikeArgumentResolver
import io.github.truenine.composeserver.slf4j
+import org.springframework.beans.factory.annotation.Qualifier
import org.springframework.context.annotation.Configuration
import org.springframework.context.annotation.Import
+import org.springframework.http.converter.HttpMessageConverter
import org.springframework.web.method.support.HandlerMethodArgumentResolver
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer
+import tools.jackson.databind.ObjectMapper
@Configuration
@Import(IPageParamLikeArgumentResolver::class)
-class DefaultDependServletWebMvcAutoConfiguration(private val iPageParamLikeArgumentResolver: IPageParamLikeArgumentResolver) : WebMvcConfigurer {
+class DefaultDependServletWebMvcAutoConfiguration(
+ private val iPageParamLikeArgumentResolver: IPageParamLikeArgumentResolver,
+ @Qualifier(JacksonAutoConfiguration.DEFAULT_OBJECT_MAPPER_BEAN_NAME) private val defaultObjectMapper: ObjectMapper,
+) : WebMvcConfigurer {
companion object {
@JvmStatic private val log = slf4j()
}
- override fun addArgumentResolvers(resolvers: MutableList) {
+ override fun addArgumentResolvers(resolvers: MutableList) {
super.addArgumentResolvers(resolvers)
resolvers.add(iPageParamLikeArgumentResolver)
log.trace("addArgumentResolvers: {}", resolvers)
}
+
+ override fun extendMessageConverters(converters: MutableList>) {
+ super.extendMessageConverters(converters)
+ converters.removeIf { it is ToolsJacksonHttpMessageConverter }
+ converters.add(0, ToolsJacksonHttpMessageConverter(defaultObjectMapper))
+ log.trace("registered ToolsJacksonHttpMessageConverter at the beginning of converters list")
+ }
}
diff --git a/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/autoconfig/DefaultJacksonObjectMapperConfiguration.kt b/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/autoconfig/DefaultJacksonObjectMapperConfiguration.kt
deleted file mode 100644
index 36215aa23..000000000
--- a/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/autoconfig/DefaultJacksonObjectMapperConfiguration.kt
+++ /dev/null
@@ -1,31 +0,0 @@
-package io.github.truenine.composeserver.depend.servlet.autoconfig
-
-import com.fasterxml.jackson.databind.ObjectMapper
-import io.github.truenine.composeserver.slf4j
-import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean
-import org.springframework.context.annotation.Bean
-import org.springframework.context.annotation.Configuration
-import org.springframework.context.annotation.Primary
-import org.springframework.core.Ordered
-import org.springframework.core.annotation.Order
-import org.springframework.http.converter.json.Jackson2ObjectMapperBuilder
-
-private val log = slf4j()
-
-@Configuration
-class DefaultJacksonObjectMapperConfiguration {
- companion object {
- /** ## 此 默认 bean 名称可能会变动 */
- const val SPRING_DEFAULT_OBJECT_MAPPER_BEAN_NAME = "jacksonObjectMapper"
- const val DEFAULT_OBJECT_MAPPER_BEAN_NAME = "defaultObjectMapper"
- }
-
- @Primary
- @Order(Ordered.HIGHEST_PRECEDENCE)
- @ConditionalOnMissingBean(ObjectMapper::class, name = [SPRING_DEFAULT_OBJECT_MAPPER_BEAN_NAME])
- @Bean(name = [DEFAULT_OBJECT_MAPPER_BEAN_NAME])
- fun defaultObjectMapper(builder: Jackson2ObjectMapperBuilder): ObjectMapper {
- log.debug("注册默认的 objectMapper")
- return builder.createXmlMapper(false).build()
- }
-}
diff --git a/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/autoconfig/MDCFilterAutoConfiguration.kt b/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/autoconfig/MDCFilterAutoConfiguration.kt
index 13eeee262..f42657a61 100644
--- a/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/autoconfig/MDCFilterAutoConfiguration.kt
+++ b/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/autoconfig/MDCFilterAutoConfiguration.kt
@@ -16,10 +16,10 @@ class MDCFilterAutoConfiguration {
@Bean
fun mdcFilter(): FilterRegistrationBean {
val bean = FilterRegistrationBean()
- bean.filter = CustomerMDCFilter()
+ bean.setFilter(CustomerMDCFilter())
bean.urlPatterns = listOf("/*")
bean.order = Ordered.HIGHEST_PRECEDENCE
- log.debug("注册 MDCFilter 并列为首个过滤器 bean = {}", bean)
+ log.debug("Registering MDCFilter and setting it as the first filter bean = {}", bean)
return bean
}
}
diff --git a/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/converters/AnyEnumConverterFactory.kt b/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/converters/AnyEnumConverterFactory.kt
index 6df62fc59..a3d9c2f1d 100644
--- a/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/converters/AnyEnumConverterFactory.kt
+++ b/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/converters/AnyEnumConverterFactory.kt
@@ -3,31 +3,31 @@ package io.github.truenine.composeserver.depend.servlet.converters
import io.github.truenine.composeserver.IAnyEnum
import io.github.truenine.composeserver.IIntEnum
import io.github.truenine.composeserver.IStringEnum
-import io.github.truenine.composeserver.slf4j
+import io.github.truenine.composeserver.logger
import java.util.concurrent.ConcurrentHashMap
import org.springframework.core.convert.converter.Converter
import org.springframework.core.convert.converter.ConverterFactory
-@Suppress("DEPRECATION_ERROR") private val log = slf4j()
+@Suppress("DEPRECATION_ERROR") private val log = logger()
-@Deprecated(message = "API 负担过大", level = DeprecationLevel.ERROR)
-open class AnyEnumConverterFactory : ConverterFactory {
+@Deprecated(message = "API burden is too high", level = DeprecationLevel.ERROR)
+open class AnyEnumConverterFactory : ConverterFactory {
companion object {
- @JvmStatic private val converters = ConcurrentHashMap, Converter>()
+ @JvmStatic private val converters = ConcurrentHashMap, Converter>()
}
@Suppress("UNCHECKED_CAST")
- override fun getConverter(targetType: Class): Converter {
+ override fun getConverter(targetType: Class): Converter {
return converters[targetType].let {
it
?: AnyEnumConverter(targetType).also { addedConverter ->
log.trace("inject any enums converter, the target class: {}", targetType)
converters[targetType] = addedConverter
}
- } as Converter
+ } as Converter
}
- private inner class AnyEnumConverter(targetClass: Class) : Converter {
+ private class AnyEnumConverter(targetClass: Class) : Converter {
private val isString = IStringEnum::class.java.isAssignableFrom(targetClass)
private val isInt = IIntEnum::class.java.isAssignableFrom(targetClass)
private val valueMappingMap = targetClass.enumConstants.associateBy { it?.value }
diff --git a/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/converters/JavaLocalDateConverter.kt b/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/converters/JavaLocalDateConverter.kt
index f4121878f..05d893bb0 100644
--- a/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/converters/JavaLocalDateConverter.kt
+++ b/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/converters/JavaLocalDateConverter.kt
@@ -7,9 +7,9 @@ import org.springframework.core.convert.converter.Converter
private val log = slf4j(JavaLocalDateConverter::class)
-open class JavaLocalDateConverter : Converter {
+open class JavaLocalDateConverter : Converter {
override fun convert(source: String): LocalDate? {
- log.trace("转换日期 = {}", source)
+ log.trace("Converting date = {}", source)
return source.toLongOrNull()?.toLocalDate()
}
}
diff --git a/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/converters/JavaLocalDateTimeConverter.kt b/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/converters/JavaLocalDateTimeConverter.kt
index 5c0735dbd..7a909768c 100644
--- a/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/converters/JavaLocalDateTimeConverter.kt
+++ b/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/converters/JavaLocalDateTimeConverter.kt
@@ -7,9 +7,9 @@ import org.springframework.core.convert.converter.Converter
private val log = slf4j(JavaLocalDateTimeConverter::class)
-open class JavaLocalDateTimeConverter : Converter {
+open class JavaLocalDateTimeConverter : Converter {
override fun convert(source: String): LocalDateTime? {
- log.trace("转换日期时间 = {}", source)
+ log.trace("Converting date-time = {}", source)
return source.toLongOrNull()?.toLocalDateTime()
}
}
diff --git a/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/converters/JavaLocalTimeConverter.kt b/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/converters/JavaLocalTimeConverter.kt
index fdd6dc9a5..cdfdd4dc8 100644
--- a/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/converters/JavaLocalTimeConverter.kt
+++ b/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/converters/JavaLocalTimeConverter.kt
@@ -7,9 +7,9 @@ import org.springframework.core.convert.converter.Converter
private val log = slf4j(JavaLocalTimeConverter::class)
-open class JavaLocalTimeConverter : Converter {
+open class JavaLocalTimeConverter : Converter {
override fun convert(source: String): LocalTime? {
- log.trace("转换时间 = {}", source)
+ log.trace("Converting time = {}", source)
return source.toLongOrNull()?.toLocalTime()
}
}
diff --git a/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/converters/StringArrayToByteArrayConverter.kt b/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/converters/StringArrayToByteArrayConverter.kt
index 2e92f97a5..02f6d68de 100644
--- a/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/converters/StringArrayToByteArrayConverter.kt
+++ b/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/converters/StringArrayToByteArrayConverter.kt
@@ -3,12 +3,12 @@ package io.github.truenine.composeserver.depend.servlet.converters
import org.springframework.core.convert.converter.Converter
/**
- * ## 此转换器针对 form data 直接提交的 byte 数组
+ * ## This converter is for byte arrays submitted directly via form data
*
* @author TrueNine
* @since 2024-02-29
*/
-@Deprecated(message = "API 负担过大", level = DeprecationLevel.ERROR)
+@Deprecated(message = "API burden is too high", level = DeprecationLevel.ERROR)
class StringArrayToByteArrayConverter : Converter, ByteArray> {
override fun convert(source: Array): ByteArray {
return source.map { it.toByte() }.toByteArray()
diff --git a/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/converters/ToolsJacksonHttpMessageConverter.kt b/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/converters/ToolsJacksonHttpMessageConverter.kt
new file mode 100644
index 000000000..5a851f45b
--- /dev/null
+++ b/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/converters/ToolsJacksonHttpMessageConverter.kt
@@ -0,0 +1,97 @@
+package io.github.truenine.composeserver.depend.servlet.converters
+
+import java.lang.reflect.Type
+import java.nio.charset.Charset
+import java.nio.charset.StandardCharsets
+import org.springframework.http.HttpInputMessage
+import org.springframework.http.HttpOutputMessage
+import org.springframework.http.MediaType
+import org.springframework.http.converter.AbstractHttpMessageConverter
+import org.springframework.http.converter.GenericHttpMessageConverter
+import tools.jackson.databind.ObjectMapper
+
+/** Jackson HTTP message converter that bridges Spring MVC with the relocated `tools.jackson` ObjectMapper. */
+class ToolsJacksonHttpMessageConverter(private val objectMapper: ObjectMapper) :
+ AbstractHttpMessageConverter(*SUPPORTED_MEDIA_TYPES), GenericHttpMessageConverter {
+
+ override fun getDefaultCharset(): Charset = StandardCharsets.UTF_8
+
+ override fun supports(clazz: Class<*>): Boolean = !isExcludedType(clazz)
+
+ override fun canRead(mediaType: MediaType?): Boolean {
+ if (mediaType == null) {
+ return true
+ }
+ if (mediaType.subtype.endsWith("+json", ignoreCase = true)) {
+ return true
+ }
+ return super.canRead(mediaType)
+ }
+
+ override fun canWrite(mediaType: MediaType?): Boolean {
+ if (mediaType == null) {
+ return true
+ }
+ if (mediaType.subtype.endsWith("+json", ignoreCase = true)) {
+ return true
+ }
+ return super.canWrite(mediaType)
+ }
+
+ override fun readInternal(clazz: Class, inputMessage: HttpInputMessage): Any {
+ inputMessage.body.use { stream ->
+ return objectMapper.readValue(stream, clazz)
+ }
+ }
+
+ override fun read(type: Type, contextClass: Class<*>?, inputMessage: HttpInputMessage): Any {
+ val javaType = objectMapper.typeFactory.constructType(type)
+ inputMessage.body.use { stream ->
+ return objectMapper.readValue(stream, javaType)
+ }
+ }
+
+ override fun canRead(type: Type, contextClass: Class<*>?, mediaType: MediaType?): Boolean {
+ if (type is Class<*> && !supports(type)) {
+ return false
+ }
+ return canRead(mediaType)
+ }
+
+ override fun canWrite(type: Type?, clazz: Class<*>, mediaType: MediaType?): Boolean {
+ if (!supports(clazz)) {
+ return false
+ }
+ return canWrite(mediaType)
+ }
+
+ override fun writeInternal(t: Any, outputMessage: HttpOutputMessage) {
+ outputMessage.body.use { stream -> objectMapper.writeValue(stream, t) }
+ }
+
+ override fun write(t: Any, type: Type?, mediaType: MediaType?, outputMessage: HttpOutputMessage) {
+ if (mediaType != null) {
+ outputMessage.headers.contentType = mediaType
+ } else if (outputMessage.headers.contentType == null) {
+ outputMessage.headers.contentType = MediaType.APPLICATION_JSON
+ }
+ writeInternal(t, outputMessage)
+ }
+
+ companion object {
+ private val SUPPORTED_MEDIA_TYPES = arrayOf(MediaType.APPLICATION_JSON, MediaType.APPLICATION_PROBLEM_JSON, MediaType.APPLICATION_NDJSON)
+ }
+}
+
+private fun isExcludedType(clazz: Class<*>?): Boolean {
+ if (clazz == null) {
+ return false
+ }
+ if (CharSequence::class.java.isAssignableFrom(clazz)) {
+ return true
+ }
+ if (clazz == ByteArray::class.java) {
+ return true
+ }
+ return false
+}
diff --git a/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/filter/MDCFilter.kt b/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/filter/MDCFilter.kt
index acc640d42..dd352778e 100644
--- a/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/filter/MDCFilter.kt
+++ b/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/filter/MDCFilter.kt
@@ -9,21 +9,21 @@ import jakarta.servlet.http.HttpServletRequest
import java.util.*
import org.slf4j.MDC
-/** # 抽象 MDC Filter */
+/** # Abstract MDC Filter */
abstract class MDCFilter : Filter {
/**
- * ## 提供 跟踪 id
+ * ## Provides a trace ID
*
- * @return 跟踪id
+ * @return trace ID
*/
open fun supportTranceId(): String? {
return UUID.randomUUID().toString()
}
/**
- * ## ip
+ * ## IP address
*
- * @return ip
+ * @return IP address
*/
open fun supportIp(req: HttpServletRequest): String? {
return req.remoteRequestIp
diff --git a/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/properties/ServletWebApplicationProperties.kt b/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/properties/ServletWebApplicationProperties.kt
index 81f0f2be2..2054b77b3 100644
--- a/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/properties/ServletWebApplicationProperties.kt
+++ b/depend/depend-servlet/src/main/kotlin/io/github/truenine/composeserver/depend/servlet/properties/ServletWebApplicationProperties.kt
@@ -6,7 +6,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties
import org.springframework.http.converter.StringHttpMessageConverter
/**
- * spring web mvc http servlet 配置属性
+ * spring web mvc http servlet configuration properties
*
* @author TrueNine
* @since 2023-02-20
diff --git a/depend/depend-servlet/src/test/kotlin/io/github/truenine/composeserver/depend/servlet/HttpServletRequestFnsTest.kt b/depend/depend-servlet/src/test/kotlin/io/github/truenine/composeserver/depend/servlet/HttpServletRequestFnsTest.kt
index c7c3c52a6..ecaa62d7c 100644
--- a/depend/depend-servlet/src/test/kotlin/io/github/truenine/composeserver/depend/servlet/HttpServletRequestFnsTest.kt
+++ b/depend/depend-servlet/src/test/kotlin/io/github/truenine/composeserver/depend/servlet/HttpServletRequestFnsTest.kt
@@ -10,7 +10,7 @@ import org.springframework.mock.web.MockHttpServletRequest
class HttpServletRequestFnsTest {
@Test
- fun `headerMap 应正确转换请求头为 Map`() {
+ fun `headerMap should correctly convert request headers to a Map`() {
val request = MockHttpServletRequest()
request.addHeader("Content-Type", "application/json")
request.addHeader("Accept", "application/json")
@@ -25,14 +25,14 @@ class HttpServletRequestFnsTest {
}
@Test
- fun `headerMap 空请求头应返回空 Map`() {
+ fun `headerMap should return an empty Map for empty request headers`() {
val request = MockHttpServletRequest()
val headerMap = request.headerMap
assertTrue(headerMap.isEmpty())
}
@Test
- fun `deviceId 应正确从请求头获取设备 ID`() {
+ fun `deviceId should correctly get the device ID from the request header`() {
val request = MockHttpServletRequest()
request.addHeader(IHeaders.X_DEVICE_ID, "test-device-123")
@@ -42,18 +42,18 @@ class HttpServletRequestFnsTest {
}
@Test
- fun `remoteRequestIp 应获取请求 IP 地址`() {
+ fun `remoteRequestIp should get the request IP address`() {
val request = MockHttpServletRequest()
request.remoteAddr = "192.168.1.100"
val remoteIp = request.remoteRequestIp
assertNotNull(remoteIp)
- // IP 地址获取逻辑在 IInterAddr.getRequestIpAddress 中实现
+ // The IP address retrieval logic is implemented in IInterAddr.getRequestIpAddress
}
@Test
- fun `remoteRequestIp 应处理代理头部获取真实 IP`() {
+ fun `remoteRequestIp should handle proxy headers to get the real IP`() {
val request = MockHttpServletRequest()
request.addHeader("X-Forwarded-For", "203.0.113.195")
request.addHeader("X-Real-IP", "203.0.113.195")
@@ -62,23 +62,23 @@ class HttpServletRequestFnsTest {
val remoteIp = request.remoteRequestIp
assertNotNull(remoteIp)
- // 具体的 IP 解析逻辑取决于 IInterAddr.getRequestIpAddress 的实现
+ // The specific IP parsing logic depends on the implementation of IInterAddr.getRequestIpAddress
}
@Test
- fun `扩展属性应在 MockHttpServletRequest 中正常工作`() {
+ fun `extension properties should work correctly in MockHttpServletRequest`() {
val request = MockHttpServletRequest()
request.addHeader("Content-Type", "application/json")
request.addHeader("Accept", "application/json")
request.addHeader(IHeaders.X_DEVICE_ID, "test-device")
request.remoteAddr = "192.168.1.100"
- // 测试扩展属性
+ // Test extension properties
val headerMap = request.headerMap
val deviceId = request.deviceId
val remoteIp = request.remoteRequestIp
- // 验证扩展属性工作正常
+ // Verify that the extension properties work correctly
assertNotNull(headerMap)
assertEquals("test-device", deviceId)
assertNotNull(remoteIp)
diff --git a/depend/depend-servlet/src/test/kotlin/io/github/truenine/composeserver/depend/servlet/HttpServletResponseFnsTest.kt b/depend/depend-servlet/src/test/kotlin/io/github/truenine/composeserver/depend/servlet/HttpServletResponseFnsTest.kt
index 570330c6e..c811da838 100644
--- a/depend/depend-servlet/src/test/kotlin/io/github/truenine/composeserver/depend/servlet/HttpServletResponseFnsTest.kt
+++ b/depend/depend-servlet/src/test/kotlin/io/github/truenine/composeserver/depend/servlet/HttpServletResponseFnsTest.kt
@@ -13,7 +13,7 @@ import org.springframework.mock.web.MockHttpServletResponse
class HttpServletResponseFnsTest {
@Test
- fun `headerMap 应正确转换响应头为 Map`() {
+ fun `headerMap should correctly convert response headers to a Map`() {
val response = MockHttpServletResponse()
response.setHeader("Content-Type", "application/json")
response.setHeader("Cache-Control", "no-cache")
@@ -28,14 +28,14 @@ class HttpServletResponseFnsTest {
}
@Test
- fun `headerMap 空响应头应返回空 Map`() {
+ fun `headerMap should return an empty Map for empty response headers`() {
val response = MockHttpServletResponse()
val headerMap = response.headerMap
assertTrue(headerMap.isEmpty())
}
@Test
- fun `useResponse 应正确设置响应属性`() {
+ fun `useResponse should correctly set response properties`() {
val response = MockHttpServletResponse()
val result =
@@ -51,7 +51,7 @@ class HttpServletResponseFnsTest {
}
@Test
- fun `useResponse 使用默认参数应设置正确值`() {
+ fun `useResponse with default parameters should set correct values`() {
val response = MockHttpServletResponse()
val result = response.useResponse { it }
@@ -62,7 +62,7 @@ class HttpServletResponseFnsTest {
}
@Test
- fun `useSse 应设置 SSE 相关响应头`() {
+ fun `useSse should set SSE-related response headers`() {
val response = MockHttpServletResponse()
val result =
@@ -78,7 +78,7 @@ class HttpServletResponseFnsTest {
}
@Test
- fun `useSse 使用默认参数应设置 SSE 类型`() {
+ fun `useSse with default parameters should set SSE type`() {
val response = MockHttpServletResponse()
val result = response.useSse { it }
@@ -89,7 +89,7 @@ class HttpServletResponseFnsTest {
}
@Test
- fun `withDownload 应设置下载相关响应头`() {
+ fun `withDownload should set download-related response headers`() {
val response = MockHttpServletResponse()
val testData = "test file content".toByteArray()
@@ -97,21 +97,21 @@ class HttpServletResponseFnsTest {
outputStream.write(testData)
}
- // 验证 Content-Disposition 头设置正确
+ // Verify that the Content-Disposition header is set correctly
val contentDisposition = response.getHeader(IHeaders.CONTENT_DISPOSITION)
assertNotNull(contentDisposition)
assertTrue(contentDisposition.contains("attachment"))
- // 验证 Content-Type 头设置正确
+ // Verify that the Content-Type header is set correctly
assertTrue(response.getHeader(IHeaders.CONTENT_TYPE)?.contains("text/plain") == true)
assertEquals(StandardCharsets.UTF_8.displayName(), response.characterEncoding)
- // 验证输出内容
+ // Verify the output content
assertEquals(testData.toString(StandardCharsets.UTF_8), response.contentAsString)
}
@Test
- fun `withDownload 使用默认参数应设置正确值`() {
+ fun `withDownload with default parameters should set correct values`() {
val response = MockHttpServletResponse()
response.withDownload(fileName = "default.bin", closeBlock = null)
@@ -125,19 +125,19 @@ class HttpServletResponseFnsTest {
}
@Test
- fun `withDownload 处理中文文件名应正确编码`() {
+ fun `withDownload should correctly encode Chinese filenames`() {
val response = MockHttpServletResponse()
- response.withDownload(fileName = "测试文件.txt", contentType = MediaTypes.TEXT, charset = StandardCharsets.UTF_8, closeBlock = null)
+ response.withDownload(fileName = "test_file.txt", contentType = MediaTypes.TEXT, charset = StandardCharsets.UTF_8, closeBlock = null)
val contentDisposition = response.getHeader(IHeaders.CONTENT_DISPOSITION)
assertNotNull(contentDisposition)
assertTrue(contentDisposition.contains("attachment"))
- // 文件名编码取决于 IHeaders.downloadDisposition 的实现
+ // The filename encoding depends on the implementation of IHeaders.downloadDisposition
}
@Test
- fun `withDownload 空文件名应正确处理`() {
+ fun `withDownload should handle empty filenames correctly`() {
val response = MockHttpServletResponse()
response.withDownload(fileName = "", closeBlock = null)
@@ -147,7 +147,7 @@ class HttpServletResponseFnsTest {
}
@Test
- fun `withDownload 处理大文件应正确写入`() {
+ fun `withDownload should write large files correctly`() {
val response = MockHttpServletResponse()
val largeData = ByteArray(1024) { it.toByte() }
diff --git a/depend/depend-servlet/src/test/kotlin/io/github/truenine/composeserver/depend/servlet/IReadableAttachmentFnsTest.kt b/depend/depend-servlet/src/test/kotlin/io/github/truenine/composeserver/depend/servlet/IReadableAttachmentFnsTest.kt
index 37251d549..420eafe7e 100644
--- a/depend/depend-servlet/src/test/kotlin/io/github/truenine/composeserver/depend/servlet/IReadableAttachmentFnsTest.kt
+++ b/depend/depend-servlet/src/test/kotlin/io/github/truenine/composeserver/depend/servlet/IReadableAttachmentFnsTest.kt
@@ -11,7 +11,7 @@ import org.springframework.mock.web.MockMultipartFile
class IReadableAttachmentFnsTest {
@Test
- fun `toReadableAttachment 应正确转换普通文件`() {
+ fun `toReadableAttachment should correctly convert a regular file`() {
val content = "test file content".toByteArray(StandardCharsets.UTF_8)
val multipartFile = MockMultipartFile("testFile", "test.txt", "text/plain", content)
@@ -25,7 +25,7 @@ class IReadableAttachmentFnsTest {
}
@Test
- fun `toReadableAttachment 应处理空文件`() {
+ fun `toReadableAttachment should handle an empty file`() {
val multipartFile = MockMultipartFile("emptyFile", "empty.txt", "text/plain", ByteArray(0))
val attachment = multipartFile.toReadableAttachment()
@@ -38,34 +38,34 @@ class IReadableAttachmentFnsTest {
}
@Test
- fun `toReadableAttachment 应处理无原始文件名的情况`() {
+ fun `toReadableAttachment should handle the case of no original filename`() {
val content = "no original filename".toByteArray()
val multipartFile =
MockMultipartFile(
"fieldName",
- null, // 无原始文件名
+ null, // No original filename
"application/octet-stream",
content,
)
val attachment = multipartFile.toReadableAttachment()
- // 修复后的转换逻辑:this.originalFilename?.takeIf { it.isNotBlank() } ?: this.name
- // 当 originalFilename 为空字符串时,应该 fallback 到 name
- assertEquals("fieldName", attachment.name) // 现在应该使用 name
+ // Corrected conversion logic: this.originalFilename?.takeIf { it.isNotBlank() } ?: this.name
+ // When originalFilename is an empty string, it should fall back to name
+ assertEquals("fieldName", attachment.name) // Should now use the name
assertEquals("application/octet-stream", attachment.mimeType)
assertEquals(content.size.toLong(), attachment.size)
assertFalse(attachment.empty)
}
@Test
- fun `toReadableAttachment 应处理 null 内容类型`() {
+ fun `toReadableAttachment should handle a null content type`() {
val content = "null content type".toByteArray()
val multipartFile =
MockMultipartFile(
"testFile",
"test.bin",
- null, // null 内容类型
+ null, // null content type
content,
)
@@ -78,7 +78,7 @@ class IReadableAttachmentFnsTest {
}
@Test
- fun `toReadableAttachment 应提供可用的 InputStream`() {
+ fun `toReadableAttachment should provide a usable InputStream`() {
val content = "stream test content".toByteArray(StandardCharsets.UTF_8)
val multipartFile = MockMultipartFile("streamFile", "stream.txt", "text/plain", content)
@@ -91,7 +91,7 @@ class IReadableAttachmentFnsTest {
}
@Test
- fun `toReadableAttachment 字节函数应返回相同内容`() {
+ fun `toReadableAttachment bytes function should return the same content`() {
val content = "bytes test content".toByteArray(StandardCharsets.UTF_8)
val multipartFile = MockMultipartFile("bytesFile", "bytes.txt", "text/plain", content)
@@ -106,7 +106,7 @@ class IReadableAttachmentFnsTest {
}
@Test
- fun `toReadableAttachment 应正确处理二进制文件`() {
+ fun `toReadableAttachment should correctly handle a binary file`() {
val binaryContent = ByteArray(256) { it.toByte() }
val multipartFile = MockMultipartFile("binaryFile", "binary.bin", "application/octet-stream", binaryContent)
@@ -120,7 +120,7 @@ class IReadableAttachmentFnsTest {
}
@Test
- fun `toReadableAttachment 应正确处理大文件`() {
+ fun `toReadableAttachment should correctly handle a large file`() {
val largeContent = ByteArray(10240) { (it % 256).toByte() }
val multipartFile = MockMultipartFile("largeFile", "large.bin", "application/octet-stream", largeContent)
@@ -134,7 +134,7 @@ class IReadableAttachmentFnsTest {
}
@Test
- fun `toReadableAttachment 应创建 DefaultReadableAttachment 类型`() {
+ fun `toReadableAttachment should create a DefaultReadableAttachment type`() {
val multipartFile = MockMultipartFile("testFile", "test.txt", "text/plain", "test".toByteArray())
val attachment = multipartFile.toReadableAttachment()
@@ -143,14 +143,14 @@ class IReadableAttachmentFnsTest {
}
@Test
- fun `toReadableAttachment 多次调用应产生独立实例`() {
+ fun `toReadableAttachment multiple calls should produce independent instances`() {
val content = "independence test".toByteArray()
val multipartFile = MockMultipartFile("testFile", "test.txt", "text/plain", content)
val attachment1 = multipartFile.toReadableAttachment()
val attachment2 = multipartFile.toReadableAttachment()
- // 应该是不同的实例但内容相同
+ // Should be different instances but with the same content
assertEquals(attachment1.name, attachment2.name)
assertEquals(attachment1.mimeType, attachment2.mimeType)
assertEquals(attachment1.size, attachment2.size)
diff --git a/depend/depend-servlet/src/test/kotlin/io/github/truenine/composeserver/depend/servlet/PathVariableTest.kt b/depend/depend-servlet/src/test/kotlin/io/github/truenine/composeserver/depend/servlet/PathVariableTest.kt
index 864082ec0..e3eeb2d8f 100644
--- a/depend/depend-servlet/src/test/kotlin/io/github/truenine/composeserver/depend/servlet/PathVariableTest.kt
+++ b/depend/depend-servlet/src/test/kotlin/io/github/truenine/composeserver/depend/servlet/PathVariableTest.kt
@@ -1,38 +1,45 @@
package io.github.truenine.composeserver.depend.servlet
-import jakarta.annotation.Resource
+import kotlin.test.BeforeTest
import kotlin.test.Test
-import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc
+import org.springframework.beans.factory.annotation.Autowired
import org.springframework.boot.test.context.SpringBootTest
import org.springframework.context.annotation.Import
import org.springframework.test.web.servlet.MockMvc
import org.springframework.test.web.servlet.get
+import org.springframework.test.web.servlet.setup.MockMvcBuilders
import org.springframework.web.bind.annotation.GetMapping
import org.springframework.web.bind.annotation.PathVariable
import org.springframework.web.bind.annotation.RequestMapping
import org.springframework.web.bind.annotation.RestController
+import org.springframework.web.context.WebApplicationContext
-/** # 确保 pathVariable 的解析性质 */
+/** # Ensure the parsing nature of pathVariable */
@SpringBootTest(classes = [TestApplication::class], webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
-@AutoConfigureMockMvc
@Import(PathVariableTest.TestPathVariableController::class)
class PathVariableTest {
+ @Autowired lateinit var webApplicationContext: WebApplicationContext
+
lateinit var mockMvc: MockMvc
- @Resource set
+
+ @BeforeTest
+ fun setup() {
+ mockMvc = MockMvcBuilders.webAppContextSetup(webApplicationContext).build()
+ }
@Test
fun `ensure urlencoded parameter to path variable`() {
- // 直接 url 是不行的
+ // Direct URL is not acceptable
mockMvc.get("/test/pathVariable/urlencoded//api/path").andExpect { status { isNotFound() } }
- // 不会转义 url encoded
+ // Will not escape URL encoded
mockMvc.get("/test/pathVariable/urlencoded/%2Fapi%2Fpath").andExpect {
status { isOk() }
content { string("%2Fapi%2Fpath") }
}
}
- // 内嵌 Controller
+ // Embedded Controller
@RestController
@RequestMapping("test/pathVariable")
class TestPathVariableController {
diff --git a/depend/depend-servlet/src/test/kotlin/io/github/truenine/composeserver/depend/servlet/TestApplication.kt b/depend/depend-servlet/src/test/kotlin/io/github/truenine/composeserver/depend/servlet/TestApplication.kt
index 255344103..fdcf47bee 100644
--- a/depend/depend-servlet/src/test/kotlin/io/github/truenine/composeserver/depend/servlet/TestApplication.kt
+++ b/depend/depend-servlet/src/test/kotlin/io/github/truenine/composeserver/depend/servlet/TestApplication.kt
@@ -1,10 +1,9 @@
package io.github.truenine.composeserver.depend.servlet
import org.springframework.boot.autoconfigure.SpringBootApplication
-import org.springframework.boot.autoconfigure.security.servlet.SecurityAutoConfiguration
import org.springframework.boot.runApplication
-@SpringBootApplication(exclude = [SecurityAutoConfiguration::class]) class TestApplication
+@SpringBootApplication class TestApplication
fun main(args: Array) {
runApplication(*args)
diff --git a/depend/depend-servlet/src/test/kotlin/io/github/truenine/composeserver/depend/servlet/annotations/HeadMappingTest.kt b/depend/depend-servlet/src/test/kotlin/io/github/truenine/composeserver/depend/servlet/annotations/HeadMappingTest.kt
index 88a63fec9..5ad89101c 100644
--- a/depend/depend-servlet/src/test/kotlin/io/github/truenine/composeserver/depend/servlet/annotations/HeadMappingTest.kt
+++ b/depend/depend-servlet/src/test/kotlin/io/github/truenine/composeserver/depend/servlet/annotations/HeadMappingTest.kt
@@ -1,23 +1,30 @@
package io.github.truenine.composeserver.depend.servlet.annotations
import io.github.truenine.composeserver.depend.servlet.TestApplication
-import jakarta.annotation.Resource
+import kotlin.test.BeforeTest
import kotlin.test.Test
-import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc
+import org.springframework.beans.factory.annotation.Autowired
import org.springframework.boot.test.context.SpringBootTest
import org.springframework.context.annotation.Import
import org.springframework.http.ResponseEntity
import org.springframework.test.web.servlet.MockMvc
import org.springframework.test.web.servlet.head
+import org.springframework.test.web.servlet.setup.MockMvcBuilders
import org.springframework.web.bind.annotation.RequestMapping
import org.springframework.web.bind.annotation.RestController
+import org.springframework.web.context.WebApplicationContext
@SpringBootTest(classes = [TestApplication::class], webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
-@AutoConfigureMockMvc
@Import(HeadMappingTest.HeadController::class)
class HeadMappingTest {
+ @Autowired lateinit var webApplicationContext: WebApplicationContext
+
lateinit var mock: MockMvc
- @Resource set
+
+ @BeforeTest
+ fun setup() {
+ mock = MockMvcBuilders.webAppContextSetup(webApplicationContext).build()
+ }
@Test
fun `test found action`() {
@@ -27,7 +34,7 @@ class HeadMappingTest {
}
}
- // 内嵌 Controller
+ // Embedded Controller
@RestController
@RequestMapping("test/head")
class HeadController {
diff --git a/depend/depend-servlet/src/test/kotlin/io/github/truenine/composeserver/depend/servlet/log/SplitText.kt b/depend/depend-servlet/src/test/kotlin/io/github/truenine/composeserver/depend/servlet/log/SplitText.kt
deleted file mode 100644
index 9d87155e2..000000000
--- a/depend/depend-servlet/src/test/kotlin/io/github/truenine/composeserver/depend/servlet/log/SplitText.kt
+++ /dev/null
@@ -1,80 +0,0 @@
-package io.github.truenine.composeserver.depend.servlet.log
-
-import io.github.truenine.composeserver.datetime
-import io.github.truenine.composeserver.hasText
-import io.github.truenine.composeserver.string
-import java.io.BufferedReader
-import java.io.InputStreamReader
-import java.time.LocalDateTime
-import java.time.format.DateTimeFormatter
-import java.util.regex.Pattern
-import kotlin.test.Test
-import org.slf4j.event.Level
-
-data class MDCLogData(
- var datetime: datetime,
- var threadName: string?,
- var traceId: string?,
- var ip: string?,
- var level: Level,
- var abbrClassName: string,
- var logContent: string,
- var append: string?,
-)
-
-class SplitText {
-
- @Test
- fun `read log file and split`() {
- val resource = SplitText::class.java.classLoader.getResourceAsStream("test-split-log.txt")!!
- val reader = BufferedReader(InputStreamReader(resource))
- val datetimeFormatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss.SSS")
- val pattern = Pattern.compile("(\\d{4}-\\d{2}-\\d{2} \\d{2}:\\d{2}:\\d{2}.\\d{3}) \\[(.*?)\\] (\\w+) (.*)")
- val logs = mutableListOf()
- var lastData: MDCLogData? = null
-
- reader.use {
- it.forEachLine { line ->
- if (line.hasText()) {
- val matcher = pattern.matcher(line.trim())
- if (matcher.matches() && matcher.groupCount() == 4) {
- val datetime = matcher.group(1)
- val mdcAndThreadName =
- with(matcher.group(2)) {
- val sep = indexOf(" - ")
- val mdc = substring(0..sep)
- val tidAndIp = mdc.trim().split(',')
- val mdcPair = tidAndIp[0] to tidAndIp[1]
- val c = substring(sep + 3)
- mdcPair to c
- }
- val level = Level.valueOf(matcher.group(3).uppercase())
- val packageNameAndLogContent =
- with(matcher.group(4)) {
- val sep = indexOf(" - ")
- val b = substring(0..sep)
- val c = substring(sep + 3)
- b to c
- }
- lastData =
- MDCLogData(
- datetime = LocalDateTime.parse(datetime, datetimeFormatter),
- traceId = mdcAndThreadName.first.first,
- threadName = mdcAndThreadName.second,
- ip = mdcAndThreadName.first.second,
- level = level,
- abbrClassName = packageNameAndLogContent.first,
- logContent = packageNameAndLogContent.second,
- append = "",
- )
- logs += lastData!!
- } else {
- lastData?.append += "$line\n"
- println()
- }
- }
- }
- }
- logs.forEach { println("${it.datetime} ${it.level} - ${it.logContent}") }
- }
-}
diff --git a/depend/depend-servlet/src/test/kotlin/io/github/truenine/composeserver/depend/servlet/parameter/GetParameterTest.kt b/depend/depend-servlet/src/test/kotlin/io/github/truenine/composeserver/depend/servlet/parameter/GetParameterTest.kt
index 41d543588..094827bd4 100644
--- a/depend/depend-servlet/src/test/kotlin/io/github/truenine/composeserver/depend/servlet/parameter/GetParameterTest.kt
+++ b/depend/depend-servlet/src/test/kotlin/io/github/truenine/composeserver/depend/servlet/parameter/GetParameterTest.kt
@@ -1,6 +1,5 @@
package io.github.truenine.composeserver.depend.servlet.parameter
-import com.fasterxml.jackson.databind.ObjectMapper
import io.github.truenine.composeserver.depend.servlet.TestApplication
import jakarta.annotation.Resource
import kotlin.test.BeforeTest
@@ -10,37 +9,45 @@ import kotlin.test.assertFails
import kotlin.test.assertIs
import kotlin.test.assertNotNull
import org.apache.catalina.util.URLEncoder
-import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc
+import org.springframework.beans.factory.annotation.Autowired
import org.springframework.boot.test.context.SpringBootTest
import org.springframework.context.annotation.Import
import org.springframework.http.MediaType
import org.springframework.test.web.servlet.MockMvc
import org.springframework.test.web.servlet.get
+import org.springframework.test.web.servlet.setup.MockMvcBuilders
import org.springframework.web.bind.MissingServletRequestParameterException
import org.springframework.web.bind.annotation.GetMapping
import org.springframework.web.bind.annotation.RequestMapping
import org.springframework.web.bind.annotation.RequestParam
import org.springframework.web.bind.annotation.RestController
+import org.springframework.web.context.WebApplicationContext
+import tools.jackson.databind.ObjectMapper
-/** # 验证以何种方式 给 spring boot 传递 get 参数 */
+/** # Verify how GET parameters are passed to Spring Boot */
@SpringBootTest(classes = [TestApplication::class], webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
-@AutoConfigureMockMvc
@Import(GetParameterTest.TestGetParameterController::class)
class GetParameterTest {
+ @Autowired lateinit var webApplicationContext: WebApplicationContext
+
lateinit var mockMvc: MockMvc
- @Resource set
lateinit var objectMapper: ObjectMapper
@Resource set
+ @BeforeTest
+ fun setupMockMvc() {
+ mockMvc = MockMvcBuilders.webAppContextSetup(webApplicationContext).build()
+ }
+
@Test
- fun `URI参数编码 应正确编码逗号分隔字符串`() {
+ fun `URI parameter encoding should correctly encode comma-separated strings`() {
val queryParam = listOf("1,2,3", "1", "rre").joinToString(",") { URLEncoder.QUERY.encode(it, Charsets.UTF_8) }
assertEquals("1%2C2%2C3,1,rre", queryParam)
}
@Test
- fun `strList参数 传递逗号分隔字符串 返回字符串列表`() {
+ fun `strList parameter passing comma-separated string returns a list of strings`() {
mockMvc.get("/test/getParameter_test/strList?list=1,2,3,4,5,6").andExpect {
content { json("""["1", "2", "3", "4", "5", "6"]""") }
status { isOk() }
@@ -66,7 +73,7 @@ class GetParameterTest {
}
@Test
- fun `无注解参数 传递name和age 返回Dto对象`() {
+ fun `no-annotation parameter passing name and age returns a Dto object`() {
mockMvc
.get("/test/getParameter_test/nonAnnotation") {
queryParam("name", "1")
@@ -95,7 +102,7 @@ class GetParameterTest {
}
@Test
- fun `无注解参数 DataClass 传递name和age 返回DataClassDto`() {
+ fun `no-annotation parameter DataClass passing name and age returns a DataClassDto`() {
mockMvc
.get("/test/getParameter_test/nonAnnotationDataClass") {
queryParam("name", "1")
@@ -124,7 +131,7 @@ class GetParameterTest {
}
@Test
- fun `@RequestParam注解 缺少参数时 抛出MissingServletRequestParameterException`() {
+ fun `@RequestParam annotation missing parameter throws MissingServletRequestParameterException`() {
val ex =
mockMvc
.get("/test/getParameter_test/requestParam") {
@@ -135,17 +142,17 @@ class GetParameterTest {
.andReturn()
.resolvedException
assertNotNull(ex)
- assertIs(ex, "非指定异常")
+ assertIs(ex, "Unexpected exception type")
}
@BeforeTest
- fun `测试环境初始化 MockMvc和ObjectMapper已注入`() {
+ fun `Test environment initialization MockMvc and ObjectMapper are injected`() {
assertNotNull(mockMvc)
- assertNotNull(objectMapper, "未正确注册 json 解析器")
+ assertNotNull(objectMapper, "JSON parser not correctly registered")
}
- // 内嵌 Controller
- /** 测试用 Controller,仅用于本测试类,路径加 _test 后缀避免歧义 */
+ // Embedded Controller
+ /** Test controller, only for this test class, path suffixed with _test to avoid ambiguity */
@RestController
@RequestMapping("test/getParameter_test")
class TestGetParameterController {
@@ -165,27 +172,27 @@ class GetParameterTest {
@GetMapping("strList") fun inputStringList(@RequestParam list: List): List = list
}
- /** 边界用例:strList参数为空 */
+ /** Boundary case: strList parameter is empty */
@Test
- fun `strList参数 为空 返回空列表`() {
+ fun `strList parameter is empty returns an empty list`() {
mockMvc.get("/test/getParameter_test/strList?list=").andExpect {
content { json("[]") }
status { isOk() }
}
}
- /** 边界用例:strList参数只传一个元素 */
+ /** Boundary case: strList parameter has only one element */
@Test
- fun `strList参数 只传一个元素 返回单元素列表`() {
+ fun `strList parameter has only one element returns a single-element list`() {
mockMvc.get("/test/getParameter_test/strList?list=onlyone").andExpect {
content { json("[\"onlyone\"]") }
status { isOk() }
}
}
- /** 边界用例:strList参数包含特殊字符 */
+ /** Boundary case: strList parameter contains special characters */
@Test
- fun `strList参数 包含特殊字符 返回正确解码列表`() {
+ fun `strList parameter contains special characters returns a correctly decoded list`() {
val special = "a,b%20c,%E4%B8%AD%E6%96%87"
mockMvc.get("/test/getParameter_test/strList?list=$special").andExpect {
content { json("[\"a\",\"b%20c\",\"%E4%B8%AD%E6%96%87\"]") }
@@ -193,41 +200,41 @@ class GetParameterTest {
}
}
- /** 异常用例:nonAnnotation缺少参数 */
+ /** Exception case: nonAnnotation is missing parameters */
@Test
- fun `无注解参数 只传name 不传age 返回Dto对象age为null`() {
+ fun `no-annotation parameter passing only name and not age returns a Dto object with age as null`() {
mockMvc.get("/test/getParameter_test/nonAnnotation?name=abc").andExpect {
status { isOk() }
- content { json("""{"name":"abc","age":null}""") }
+ content { json("{\"name\":\"abc\"}") }
}
}
- /** 异常用例:nonAnnotationDataClass缺少参数 */
+ /** Exception case: nonAnnotationDataClass is missing parameters */
@Test
- fun `无注解参数 DataClass 只传age 不传name 返回DataClassDto name为null`() {
+ fun `no-annotation parameter DataClass passing only age and not name returns a DataClassDto with name as null`() {
mockMvc.get("/test/getParameter_test/nonAnnotationDataClass?age=18").andExpect {
status { isOk() }
- content { json("""{"name":null,"age":18}""") }
+ content { json("{\"age\":18}") }
}
}
- /** 异常用例:nonAnnotationDataClass参数为非法类型 */
+ /** Exception case: nonAnnotationDataClass parameter has an illegal type */
@Test
- fun `无注解参数 DataClass 传递非法类型参数 返回400`() {
+ fun `no-annotation parameter DataClass passing illegal type parameter returns 400`() {
mockMvc.get("/test/getParameter_test/nonAnnotationDataClass?name=abc&age=notanumber").andExpect { status { isBadRequest() } }
}
- /** 异常用例:requestParam缺少部分参数 */
+ /** Exception case: requestParam is missing some parameters */
@Test
- fun `@RequestParam注解 只传name 不传age 抛出MissingServletRequestParameterException`() {
+ fun `@RequestParam annotation passing only name and not age throws MissingServletRequestParameterException`() {
val ex = mockMvc.get("/test/getParameter_test/requestParam?name=abc").andExpect { status { isEqualTo(400) } }.andReturn().resolvedException
assertNotNull(ex)
assertIs(ex)
}
- /** 异常用例:requestParam参数类型错误 */
+ /** Exception case: requestParam parameter has a type error */
@Test
- fun `@RequestParam注解 age为非法类型 抛出400`() {
+ fun `@RequestParam annotation age with illegal type throws 400`() {
mockMvc.get("/test/getParameter_test/requestParam?name=abc&age=notanumber").andExpect { status { isBadRequest() } }
}
}
diff --git a/depend/depend-servlet/src/test/kotlin/io/github/truenine/composeserver/depend/servlet/parameter/UploadFileParamAssertTest.kt b/depend/depend-servlet/src/test/kotlin/io/github/truenine/composeserver/depend/servlet/parameter/UploadFileParamAssertTest.kt
index 0a6327b97..f4d8f4ca8 100644
--- a/depend/depend-servlet/src/test/kotlin/io/github/truenine/composeserver/depend/servlet/parameter/UploadFileParamAssertTest.kt
+++ b/depend/depend-servlet/src/test/kotlin/io/github/truenine/composeserver/depend/servlet/parameter/UploadFileParamAssertTest.kt
@@ -1,10 +1,10 @@
package io.github.truenine.composeserver.depend.servlet.parameter
import io.github.truenine.composeserver.depend.servlet.TestApplication
-import jakarta.annotation.Resource
import java.nio.charset.StandardCharsets
+import kotlin.test.BeforeTest
import kotlin.test.Test
-import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc
+import org.springframework.beans.factory.annotation.Autowired
import org.springframework.boot.test.context.SpringBootTest
import org.springframework.context.annotation.Import
import org.springframework.http.HttpMethod
@@ -13,25 +13,32 @@ import org.springframework.mock.web.MockMultipartFile
import org.springframework.mock.web.MockPart
import org.springframework.test.web.servlet.MockMvc
import org.springframework.test.web.servlet.multipart
+import org.springframework.test.web.servlet.setup.MockMvcBuilders
import org.springframework.web.bind.annotation.PostMapping
import org.springframework.web.bind.annotation.RequestMapping
import org.springframework.web.bind.annotation.RequestPart
import org.springframework.web.bind.annotation.RestController
+import org.springframework.web.context.WebApplicationContext
import org.springframework.web.multipart.MultipartFile
-@AutoConfigureMockMvc
@SpringBootTest(classes = [TestApplication::class])
@Import(UploadFileParamAssertTest.TestUploadController::class)
class UploadFileParamAssertTest {
+ @Autowired lateinit var webApplicationContext: WebApplicationContext
+
lateinit var mvc: MockMvc
- @Resource set
+
+ @BeforeTest
+ fun setup() {
+ mvc = MockMvcBuilders.webAppContextSetup(webApplicationContext).build()
+ }
val json = """{"a":"str","b": 1023}"""
val jsonFile = MockMultipartFile("json", "json", "application/json", json.toByteArray(StandardCharsets.UTF_8))
val file = MockMultipartFile("file", "file", "text/plain", "Hello, World!".toByteArray())
@Test
- fun `测试 混合 dto 上传`() {
+ fun `Test mixed DTO upload`() {
mvc
.multipart(HttpMethod.POST, "/testUploadController/uploadBlend") {
param("json.a", "str")
@@ -42,7 +49,7 @@ class UploadFileParamAssertTest {
}
@Test
- fun `测试 上传 json 表单以及 文件`() {
+ fun `Test uploading JSON form and file`() {
mvc
.multipart(HttpMethod.POST, "/testUploadController/uploadFileAndOtherField") {
contentType = MediaType.MULTIPART_FORM_DATA
@@ -52,7 +59,7 @@ class UploadFileParamAssertTest {
.andExpect { status { isOk() } }
}
- // 内嵌 Controller
+ // Embedded Controller
@RequestMapping("testUploadController")
@RestController
class TestUploadController {
diff --git a/depend/depend-servlet/src/test/kotlin/io/github/truenine/composeserver/depend/servlet/resolvers/IPageParamLikeArgumentResolverTest.kt b/depend/depend-servlet/src/test/kotlin/io/github/truenine/composeserver/depend/servlet/resolvers/IPageParamLikeArgumentResolverTest.kt
index 71ae316ee..eb79aa351 100644
--- a/depend/depend-servlet/src/test/kotlin/io/github/truenine/composeserver/depend/servlet/resolvers/IPageParamLikeArgumentResolverTest.kt
+++ b/depend/depend-servlet/src/test/kotlin/io/github/truenine/composeserver/depend/servlet/resolvers/IPageParamLikeArgumentResolverTest.kt
@@ -29,7 +29,7 @@ class IPageParamLikeArgumentResolverTest {
@BeforeEach
fun setup() {
- // 使用 standaloneSetup 明确指定 Controller 和 ArgumentResolver
+ // Use standaloneSetup to explicitly specify the Controller and ArgumentResolver
mockMvc = MockMvcBuilders.standaloneSetup(TestController()).setCustomArgumentResolvers(IPageParamLikeArgumentResolver()).build()
}
@@ -61,7 +61,7 @@ class IPageParamLikeArgumentResolverTest {
}
@Test
- fun `supportsParameter 当参数类型为 IPageParamLike 时返回 true`() {
+ fun `supportsParameter should return true when the parameter type is IPageParamLike`() {
val mockParameter = mockk()
every { mockParameter.parameterType } returns IPageParamLike::class.java
@@ -69,7 +69,7 @@ class IPageParamLikeArgumentResolverTest {
}
@Test
- fun `supportsParameter 当参数类型不为 IPageParamLike 时返回 false`() {
+ fun `supportsParameter should return false when the parameter type is not IPageParamLike`() {
val mockParameter = mockk()
every { mockParameter.parameterType } returns String::class.java // Different type
@@ -79,7 +79,7 @@ class IPageParamLikeArgumentResolverTest {
// --- resolveArgument Tests ---
@Test
- fun `resolveArgument 正常解析所有参数`() {
+ fun `resolveArgument should correctly parse all parameters`() {
val mockParameter = mockk()
val mockWebRequest = mockk()
@@ -96,7 +96,7 @@ class IPageParamLikeArgumentResolverTest {
}
@Test
- fun `resolveArgument 部分参数缺失时使用默认值`() {
+ fun `resolveArgument should use default values when some parameters are missing`() {
val mockParameter = mockk()
val mockWebRequest = mockk()
@@ -115,7 +115,7 @@ class IPageParamLikeArgumentResolverTest {
}
@Test
- fun `resolveArgument 所有参数缺失时使用默认值`() {
+ fun `resolveArgument should use default values when all parameters are missing`() {
val mockParameter = mockk()
val mockWebRequest = mockk()
@@ -133,7 +133,7 @@ class IPageParamLikeArgumentResolverTest {
}
@Test
- fun `resolveArgument 参数格式无效时使用默认值`() {
+ fun `resolveArgument should use default values when parameter formats are invalid`() {
val mockParameter = mockk()
val mockWebRequest = mockk()
@@ -151,7 +151,7 @@ class IPageParamLikeArgumentResolverTest {
}
@Test
- fun `resolveArgument 使用 MockMvc 正常解析所有参数`() {
+ fun `resolveArgument should correctly parse all parameters using MockMvc`() {
mockMvc
.perform(get("/test_page?o=15&s=30&u=false"))
.andExpect(status().isOk)
@@ -161,7 +161,7 @@ class IPageParamLikeArgumentResolverTest {
}
@Test
- fun `resolveArgument 使用 MockMvc 部分参数缺失时使用默认值`() {
+ fun `resolveArgument should use default values for missing parameters using MockMvc`() {
mockMvc
.perform(get("/test_page?o=5"))
.andExpect(status().isOk)
@@ -171,7 +171,7 @@ class IPageParamLikeArgumentResolverTest {
}
@Test
- fun `resolveArgument 使用 MockMvc 所有参数缺失时使用默认值`() {
+ fun `resolveArgument should use default values for all missing parameters using MockMvc`() {
mockMvc
.perform(get("/test_page"))
.andExpect(status().isOk)
@@ -181,7 +181,7 @@ class IPageParamLikeArgumentResolverTest {
}
@Test
- fun `resolveArgument 使用 MockMvc 参数格式无效时使用默认值`() {
+ fun `resolveArgument should use default values for invalid parameter formats using MockMvc`() {
mockMvc.get("/test_page?o=abc&s=xyz&u=maybe").andExpect {
status { isOk() }
content {
@@ -193,7 +193,7 @@ class IPageParamLikeArgumentResolverTest {
}
@Test
- fun `toImpl 端点正确处理IPageParamLikeImpl类型参数`() {
+ fun `toImpl endpoint should correctly handle IPageParamLikeImpl type parameters`() {
mockMvc.get("/to_impl?o=10&s=20").andExpect {
status { isOk() }
content {
@@ -204,7 +204,7 @@ class IPageParamLikeArgumentResolverTest {
}
@Test
- fun `toPq 端点正确处理IPageParamLikeImpl类型参数`() {
+ fun `toPq endpoint should correctly handle IPageParamLikeImpl type parameters`() {
mockMvc.get("/to_pq?o=10&s=20").andExpect {
status { isOk() }
content {
@@ -215,7 +215,7 @@ class IPageParamLikeArgumentResolverTest {
}
@Test
- fun `toDefault 端点正确处理IPageParamLikeImpl类型参数`() {
+ fun `toDefault endpoint should correctly handle IPageParamLikeImpl type parameters`() {
mockMvc.get("/to_default?o=10&s=20&e=exception").andExpect {
status { isOk() }
content {
diff --git a/depend/depend-servlet/src/test/resources/test-split-log.txt b/depend/depend-servlet/src/test/resources/test-split-log.txt
deleted file mode 100644
index 60b308d50..000000000
--- a/depend/depend-servlet/src/test/resources/test-split-log.txt
+++ /dev/null
@@ -1,159074 +0,0 @@
-2024-02-18 11:51:08.153 [, - background-preinit] DEBUG org.jboss.logging - Logging Provider: org.jboss.logging.Slf4jLoggerProvider found via system property
-2024-02-18 11:51:08.164 [, - background-preinit] DEBUG o.h.v.internal.xml.config.ValidationXmlParser - Trying to load META-INF/validation.xml for XML based Validator configuration.
-2024-02-18 11:51:08.165 [, - background-preinit] DEBUG o.h.v.internal.xml.config.ResourceLoaderHelper - Trying to load META-INF/validation.xml via TCCL
-2024-02-18 11:51:08.166 [, - background-preinit] DEBUG o.h.v.internal.xml.config.ResourceLoaderHelper - Trying to load META-INF/validation.xml via Hibernate Validator's class loader
-2024-02-18 11:51:08.166 [, - background-preinit] DEBUG o.h.v.internal.xml.config.ValidationXmlParser - No META-INF/validation.xml found. Using annotation based configuration only.
-2024-02-18 11:51:08.180 [, - back2024-02-18 11:51:08.153 [, - background-preinit] DEBUG org.jboss.logging - Logging Provider: org.jboss.logging.Slf4jLoggerProvider found via system property
-2024-02-18 11:51:08.164 [, - background-preinit] DEBUG o.h.v.internal.xml.config.ValidationXmlParser - Trying to load META-INF/validation.xml for XML based Validator configuration.
- 2024-02-18 11:51:08.165 [, - background-preinit] DEBUG o.h.v.internal.xml.config.ResourceLoaderHelper - Trying to load META-INF/validation.xml via TCCL
- 2024-02-18 11:51:08.166 [, - background-preinit] DEBUG o.h.v.internal.xml.config.ResourceLoaderHelper - Trying to load META-INF/validation.xml via Hibernate Validator's class loader
- 2024-02-18 11:51:08.166 [, - background-preinit] DEBUG o.h.v.internal.xml.config.ValidationXmlParser - No META-INF/validation.xml found. Using annotation based configuration only.
- 2024-02-18 11:51:08.180 [, - background-preinit] DEBUG o.h.v.i.engine.resolver.TraversableResolvers - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver
- 2024-02-18 11:51:08.181 [, - background-preinit] DEBUG o.h.v.i.engine.resolver.TraversableResolvers - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver.
- 2024-02-18 11:51:08.196 [, - main] DEBUG com.tnmaster.ApplicationRunnerKt - Running with Spring Boot v3.3.0-M1, Spring v6.1.3
- 2024-02-18 11:51:08.197 [, - main] DEBUG org.springframework.boot.SpringApplication - Loading source class com.tnmaster.TnMasterRunner
- 2024-02-18 11:51:08.238 [, - background-preinit] DEBUG o.h.v.m.ResourceBundleMessageInterpolator - Loaded expression factory via original TCCL
- 2024-02-18 11:51:08.341 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor'
- 2024-02-18 11:51:08.345 [, - background-preinit] DEBUG o.h.v.i.engine.ValidatorFactoryConfigurationHelper - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider.
- 2024-02-18 11:51:08.352 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory'
- 2024-02-18 11:51:08.355 [, - background-preinit] DEBUG o.h.v.i.engine.ValidatorFactoryConfigurationHelper - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator.
- 2024-02-18 11:51:08.356 [, - background-preinit] DEBUG o.h.v.i.engine.ValidatorFactoryConfigurationHelper - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver.
- 2024-02-18 11:51:08.357 [, - background-preinit] DEBUG o.h.v.i.engine.ValidatorFactoryConfigurationHelper - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider.
- 2024-02-18 11:51:08.357 [, - background-preinit] DEBUG o.h.v.i.engine.ValidatorFactoryConfigurationHelper - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider.
- 2024-02-18 11:51:08.357 [, - background-preinit] DEBUG o.h.v.i.engine.ValidatorFactoryConfigurationHelper - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory.
- 2024-02-18 11:51:08.485 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/map/CertStructMapImpl.class]
- 2024-02-18 11:51:08.492 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/config/BasicConverterConfiguration.class]
- 2024-02-18 11:51:08.514 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/config/ExceptionAware.class]
- 2024-02-18 11:51:08.515 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/config/MDCFilterAutoConfiguration.class]
- 2024-02-18 11:51:08.515 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/config/ServerConfig.class]
- 2024-02-18 11:51:08.516 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/config/SpringSecurityPolicyDefine.class]
- 2024-02-18 11:51:08.581 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/controller/AddressController.class]
- 2024-02-18 11:51:08.584 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/controller/AuditController.class]
- 2024-02-18 11:51:08.587 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/controller/BlackListController.class]
- 2024-02-18 11:51:08.588 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/controller/CertController.class]
- 2024-02-18 11:51:08.588 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/controller/DataController.class]
- 2024-02-18 11:51:08.589 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/controller/EnterpriseController.class]
- 2024-02-18 11:51:08.590 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/controller/JobController.class]
- 2024-02-18 11:51:08.591 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/controller/JobSeekerController.class]
- 2024-02-18 11:51:08.596 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/controller/UserController.class]
- 2024-02-18 11:51:08.596 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/controller/UserInfoController.class]
- 2024-02-18 11:51:08.597 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/controller/wx/WechatPublicAccountController.class]
- 2024-02-18 11:51:08.717 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IAnonymousCertGroupRepo.class]
- 2024-02-18 11:51:08.717 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IBlackListBlackListTagRepo.class]
- 2024-02-18 11:51:08.718 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IBlackListEvidenceRepo.class]
- 2024-02-18 11:51:08.718 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IBlackListRelationRepo.class]
- 2024-02-18 11:51:08.720 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IBlackListRepo.class]
- 2024-02-18 11:51:08.720 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IBlackListTagRepo.class]
- 2024-02-18 11:51:08.720 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IBlackListVoRepo.class]
- 2024-02-18 11:51:08.720 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/ICertRepo.class]
- 2024-02-18 11:51:08.721 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IDisAccountVoRepo.class]
- 2024-02-18 11:51:08.721 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IDisInfoRepo.class]
- 2024-02-18 11:51:08.721 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IDisUserInfoVoRepo.class]
- 2024-02-18 11:51:08.721 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IEmploymentRecordRepo.class]
- 2024-02-18 11:51:08.721 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IEnterpriseEmailRepo.class]
- 2024-02-18 11:51:08.722 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IEnterprisePhoneRepo.class]
- 2024-02-18 11:51:08.722 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IEnterpriseRepo.class]
- 2024-02-18 11:51:08.722 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IFullEnterpriseRepo.class]
- 2024-02-18 11:51:08.726 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IJobJobTagRepo.class]
- 2024-02-18 11:51:08.726 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IJobRepo.class]
- 2024-02-18 11:51:08.727 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IJobRuleAddressRepo.class]
- 2024-02-18 11:51:08.727 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IJobSeekerRepo.class]
- 2024-02-18 11:51:08.727 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IJobSeekerSuperiorRepo.class]
- 2024-02-18 11:51:08.727 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IJobTagRepo.class]
- 2024-02-18 11:51:08.727 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IRegShareRepo.class]
- 2024-02-18 11:51:08.728 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IUserDocumentAccessRecordRepo.class]
- 2024-02-18 11:51:08.728 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IUserDocumentShowVoRepo.class]
- 2024-02-18 11:51:08.735 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/service/impl/AnonymousCertGroupServiceImpl.class]
- 2024-02-18 11:51:08.735 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/service/impl/AuditServiceImpl.class]
- 2024-02-18 11:51:08.736 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/service/impl/BlackListServiceImpl.class]
- 2024-02-18 11:51:08.736 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/service/impl/CertAccessServiceImpl.class]
- 2024-02-18 11:51:08.737 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/service/impl/CertServiceImpl.class]
- 2024-02-18 11:51:08.747 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/service/impl/DisInfoServiceImpl.class]
- 2024-02-18 11:51:08.750 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/service/impl/EnterpriseServiceImpl.class]
- 2024-02-18 11:51:08.750 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/service/impl/JobRuleAddressImpl.class]
- 2024-02-18 11:51:08.750 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/service/impl/JobSeekerServiceImpl.class]
- 2024-02-18 11:51:08.751 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/service/impl/JobServiceImpl.class]
- 2024-02-18 11:51:08.762 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/service/LazyAddressServiceImpl.class]
- 2024-02-18 11:51:09.371 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/core-1.6.356-plain.jar!/net/yan100/compose/core/autoconfig/BasicUserInfoArgumentResolver.class]
- 2024-02-18 11:51:09.371 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/core-1.6.356-plain.jar!/net/yan100/compose/core/autoconfig/BasicUserInfoInterceptor.class]
- 2024-02-18 11:51:09.371 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/core-1.6.356-plain.jar!/net/yan100/compose/core/autoconfig/IdGeneratorAutoConfiguration.class]
- 2024-02-18 11:51:09.372 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/core-1.6.356-plain.jar!/net/yan100/compose/core/autoconfig/JacksonSerializationAutoConfig.class]
- 2024-02-18 11:51:09.373 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/core-1.6.356-plain.jar!/net/yan100/compose/core/autoconfig/SecurityAutoConfig.class]
- 2024-02-18 11:51:09.375 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/core-1.6.356-plain.jar!/net/yan100/compose/core/autoconfig/WebAutoConfiguration.class]
- 2024-02-18 11:51:09.394 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/data-common-data-extract-1.6.356-plain.jar!/net/yan100/compose/datacommon/dataextract/service/impl/LazyAddressServiceImpl.class]
- 2024-02-18 11:51:09.394 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/data-common-data-extract-1.6.356-plain.jar!/net/yan100/compose/datacommon/dataextract/service/impl/MinoritiesServiceImpl.class]
- 2024-02-18 11:51:09.404 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/oss-1.6.356-plain.jar!/net/yan100/compose/oss/autoconfig/OssAutoConfiguration.class]
- 2024-02-18 11:51:09.409 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/autoconfig/BizCodeGeneratorBean.class]
- 2024-02-18 11:51:09.409 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/autoconfig/SnowflakeIdGeneratorBean.class]
- 2024-02-18 11:51:09.419 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/converters/AesEncryptConverter.class]
- 2024-02-18 11:51:09.419 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/converters/AttachmentTypingConverter.class]
- 2024-02-18 11:51:09.419 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/converters/AuditTypingConverter.class]
- 2024-02-18 11:51:09.419 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/converters/BloodTypingConverter.class]
- 2024-02-18 11:51:09.419 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/converters/CertContentTypingConverter.class]
- 2024-02-18 11:51:09.420 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/converters/CertPointTypingConverter.class]
- 2024-02-18 11:51:09.420 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/converters/CertTypingConverter.class]
- 2024-02-18 11:51:09.420 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/converters/DegreeTypingConverter.class]
- 2024-02-18 11:51:09.420 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/converters/DisTypingConverter.class]
- 2024-02-18 11:51:09.420 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/converters/DurationAsStringConverter.class]
- 2024-02-18 11:51:09.420 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/converters/GenderTypingConverter.class]
- 2024-02-18 11:51:09.420 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/converters/GoodsChangeRecordTypingConverter.class]
- 2024-02-18 11:51:09.420 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/converters/GoodsInfoTypingConverter.class]
- 2024-02-18 11:51:09.420 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/converters/GoodsTypingConverter.class]
- 2024-02-18 11:51:09.420 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/converters/ISO4217Converter.class]
- 2024-02-18 11:51:09.420 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/converters/JsonArrayConverter.class]
- 2024-02-18 11:51:09.421 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/converters/OrderStatusTypingConverter.class]
- 2024-02-18 11:51:09.421 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/converters/PayChannelTypingConverter.class]
- 2024-02-18 11:51:09.421 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/converters/PaymentTypingConverter.class]
- 2024-02-18 11:51:09.421 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/converters/PeriodAsStringConverter.class]
- 2024-02-18 11:51:09.421 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/converters/RecordModelConverter.class]
- 2024-02-18 11:51:09.421 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/converters/RelationItemTypingConverter.class]
- 2024-02-18 11:51:09.421 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/converters/RelationTypingConverter.class]
- 2024-02-18 11:51:09.421 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/converters/RuleTypingConverter.class]
- 2024-02-18 11:51:09.422 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/converters/WGS84Converter.class]
- 2024-02-18 11:51:09.434 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/service/aggregator/AccountAggregatorImpl.class]
- 2024-02-18 11:51:09.434 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/service/aggregator/AttachmentAggregatorImpl.class]
- 2024-02-18 11:51:09.435 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/service/aggregator/RbacAggregatorImpl.class]
- 2024-02-18 11:51:09.437 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/service/impl/AddressDetailsServiceImpl.class]
- 2024-02-18 11:51:09.437 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/service/impl/AddressServiceImpl.class]
- 2024-02-18 11:51:09.438 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/service/impl/AttachmentServiceImpl.class]
- 2024-02-18 11:51:09.438 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/service/impl/BankCardServiceImpl.class]
- 2024-02-18 11:51:09.438 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/service/impl/DeptServiceImpl.class]
- 2024-02-18 11:51:09.438 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/service/impl/DisabilityCertificate2ServiceImpl.class]
- 2024-02-18 11:51:09.438 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/service/impl/FlywaySchemaHistoryServiceImpl.class]
- 2024-02-18 11:51:09.438 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/service/impl/HouseholdRegistrationCardServiceImpl.class]
- 2024-02-18 11:51:09.439 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/service/impl/Idcard2ServiceImpl.class]
- 2024-02-18 11:51:09.439 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/service/impl/PermissionsServiceImpl.class]
- 2024-02-18 11:51:09.439 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/service/impl/RoleGroupServiceImpl.class]
- 2024-02-18 11:51:09.439 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/service/impl/RoleServiceImpl.class]
- 2024-02-18 11:51:09.439 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/service/impl/TableRowDeleteRecordServiceImpl.class]
- 2024-02-18 11:51:09.439 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/service/impl/UserInfoServiceImpl.class]
- 2024-02-18 11:51:09.439 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/service/impl/UserServiceImpl.class]
- 2024-02-18 11:51:09.448 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/address/FullAddressDetailsRepo.class]
- 2024-02-18 11:51:09.448 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/address/IAddressDetailsRepo.class]
- 2024-02-18 11:51:09.450 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/address/IAddressRepo.class]
- 2024-02-18 11:51:09.450 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/address/INonDesensitizedAddressDetailsRepo.class]
- 2024-02-18 11:51:09.450 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/AllRoleEntityRepository.class]
- 2024-02-18 11:51:09.452 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/cert/IBankCardRepo.class]
- 2024-02-18 11:51:09.452 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/cert/IDisCert2Repo.class]
- 2024-02-18 11:51:09.453 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/cert/IHouseholdRegistrationCardRepo.class]
- 2024-02-18 11:51:09.453 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/cert/IIdcard2Repo.class]
- 2024-02-18 11:51:09.453 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/FullRoleGroupEntityRepo.class]
- 2024-02-18 11:51:09.455 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/IAttachmentRepo.class]
- 2024-02-18 11:51:09.455 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/IDeptRepo.class]
- 2024-02-18 11:51:09.456 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/IFlywaySchemaHistoryRepo.class]
- 2024-02-18 11:51:09.456 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/IFullUserRepo.class]
- 2024-02-18 11:51:09.457 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/ILinkedAttachmentRepo.class]
- 2024-02-18 11:51:09.457 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/IPermissionsRepo.class]
- 2024-02-18 11:51:09.457 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/ITableRowDeleteRecordRepository.class]
- 2024-02-18 11:51:09.457 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/IUsrRepo.class]
- 2024-02-18 11:51:09.458 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/relationship/IRoleGroupRoleRepo.class]
- 2024-02-18 11:51:09.458 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/relationship/IRolePermissionsRepo.class]
- 2024-02-18 11:51:09.459 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/relationship/IUserDeptRepo.class]
- 2024-02-18 11:51:09.459 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/relationship/IUserRoleGroupRepo.class]
- 2024-02-18 11:51:09.459 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/RoleGroupRepo.class]
- 2024-02-18 11:51:09.459 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/RoleRepository.class]
- 2024-02-18 11:51:09.460 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Ignored because not a concrete top-level class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/UserInfoRepo.class]
- 2024-02-18 11:51:09.500 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/security-1.6.356-plain.jar!/net/yan100/compose/security/autoconfig/CaptchaAutoConfiguration.class]
- 2024-02-18 11:51:09.503 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/security-1.6.356-plain.jar!/net/yan100/compose/security/autoconfig/CorsConfiguration.class]
- 2024-02-18 11:51:09.503 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/security-1.6.356-plain.jar!/net/yan100/compose/security/autoconfig/DisableSecurityPolicyBean.class]
- 2024-02-18 11:51:09.504 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/security-1.6.356-plain.jar!/net/yan100/compose/security/autoconfig/FileKeyRepoAutoConfiguration.class]
- 2024-02-18 11:51:09.504 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/security-1.6.356-plain.jar!/net/yan100/compose/security/autoconfig/JwtIssuerAutoConfiguration.class]
- 2024-02-18 11:51:09.505 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/security-1.6.356-plain.jar!/net/yan100/compose/security/autoconfig/JwtVerifierAutoConfiguration.class]
- 2024-02-18 11:51:09.505 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/security-1.6.356-plain.jar!/net/yan100/compose/security/autoconfig/SecurityDefineAutoConfiguration.class]
- 2024-02-18 11:51:09.506 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/security-1.6.356-plain.jar!/net/yan100/compose/security/autoconfig/SecurityPolicyBean.class]
- 2024-02-18 11:51:09.529 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/security-oauth2-1.6.356-plain.jar!/net/yan100/compose/security/oauth2/autoconfig/ApiExchangeAutoConfiguration.class]
- 2024-02-18 11:51:09.529 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/security-oauth2-1.6.356-plain.jar!/net/yan100/compose/security/oauth2/autoconfig/WxpaPropertyAutoConfiguration.class]
- 2024-02-18 11:51:09.531 [, - main] DEBUG o.s.c.annotation.ClassPathBeanDefinitionScanner - Identified candidate component class: URL [jar:file:/app/lib/security-oauth2-1.6.356-plain.jar!/net/yan100/compose/security/oauth2/schedule/GetAccessTokenSchedule.class]
- 2024-02-18 11:51:10.110 [, - main] DEBUG o.s.d.r.config.RepositoryConfigurationDelegate - Scanning for JPA repositories in packages com.tnmaster.repositories.
- 2024-02-18 11:51:10.117 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IAnonymousCertGroupRepo.class]
- 2024-02-18 11:51:10.117 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IBlackListBlackListTagRepo.class]
- 2024-02-18 11:51:10.117 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IBlackListEvidenceRepo.class]
- 2024-02-18 11:51:10.117 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IBlackListRelationRepo.class]
- 2024-02-18 11:51:10.117 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IBlackListRepo.class]
- 2024-02-18 11:51:10.117 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IBlackListTagRepo.class]
- 2024-02-18 11:51:10.118 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IBlackListVoRepo.class]
- 2024-02-18 11:51:10.118 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/ICertRepo.class]
- 2024-02-18 11:51:10.118 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IDisAccountVoRepo.class]
- 2024-02-18 11:51:10.118 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IDisInfoRepo.class]
- 2024-02-18 11:51:10.118 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IDisUserInfoVoRepo.class]
- 2024-02-18 11:51:10.118 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IEmploymentRecordRepo.class]
- 2024-02-18 11:51:10.118 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IEnterpriseEmailRepo.class]
- 2024-02-18 11:51:10.118 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IEnterprisePhoneRepo.class]
- 2024-02-18 11:51:10.118 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IEnterpriseRepo.class]
- 2024-02-18 11:51:10.118 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IFullEnterpriseRepo.class]
- 2024-02-18 11:51:10.118 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IJobJobTagRepo.class]
- 2024-02-18 11:51:10.118 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IJobRepo.class]
- 2024-02-18 11:51:10.118 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IJobRuleAddressRepo.class]
- 2024-02-18 11:51:10.118 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IJobSeekerRepo.class]
- 2024-02-18 11:51:10.119 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IJobSeekerSuperiorRepo.class]
- 2024-02-18 11:51:10.119 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IJobTagRepo.class]
- 2024-02-18 11:51:10.119 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IRegShareRepo.class]
- 2024-02-18 11:51:10.119 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IUserDocumentAccessRecordRepo.class]
- 2024-02-18 11:51:10.119 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IUserDocumentShowVoRepo.class]
- 2024-02-18 11:51:10.427 [, - main] DEBUG o.s.d.r.config.RepositoryConfigurationDelegate - Scanning for JPA repositories in packages io.github.truenine.composeserver.rds.repositories.
- 2024-02-18 11:51:10.429 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/address/FullAddressDetailsRepo.class]
- 2024-02-18 11:51:10.429 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/address/IAddressDetailsRepo.class]
- 2024-02-18 11:51:10.429 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/address/IAddressRepo.class]
- 2024-02-18 11:51:10.430 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/address/INonDesensitizedAddressDetailsRepo.class]
- 2024-02-18 11:51:10.430 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/AllRoleEntityRepository.class]
- 2024-02-18 11:51:10.430 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/cert/IBankCardRepo.class]
- 2024-02-18 11:51:10.430 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/cert/IDisCert2Repo.class]
- 2024-02-18 11:51:10.430 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/cert/IHouseholdRegistrationCardRepo.class]
- 2024-02-18 11:51:10.430 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/cert/IIdcard2Repo.class]
- 2024-02-18 11:51:10.430 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/FullRoleGroupEntityRepo.class]
- 2024-02-18 11:51:10.430 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/IAttachmentRepo.class]
- 2024-02-18 11:51:10.430 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/IDeptRepo.class]
- 2024-02-18 11:51:10.430 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/IFlywaySchemaHistoryRepo.class]
- 2024-02-18 11:51:10.430 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/IFullUserRepo.class]
- 2024-02-18 11:51:10.430 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/ILinkedAttachmentRepo.class]
- 2024-02-18 11:51:10.430 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/IPermissionsRepo.class]
- 2024-02-18 11:51:10.430 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/ITableRowDeleteRecordRepository.class]
- 2024-02-18 11:51:10.430 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/IUsrRepo.class]
- 2024-02-18 11:51:10.430 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/relationship/IRoleGroupRoleRepo.class]
- 2024-02-18 11:51:10.431 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/relationship/IRolePermissionsRepo.class]
- 2024-02-18 11:51:10.431 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/relationship/IUserDeptRepo.class]
- 2024-02-18 11:51:10.431 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/relationship/IUserRoleGroupRepo.class]
- 2024-02-18 11:51:10.431 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/RoleGroupRepo.class]
- 2024-02-18 11:51:10.431 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/RoleRepository.class]
- 2024-02-18 11:51:10.431 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:file:/app/lib/rds-1.6.356-postgresql.jar!/net/yan100/compose/rds/repositories/UserInfoRepo.class]
- 2024-02-18 11:51:11.023 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages'
- 2024-02-18 11:51:11.030 [, - main] DEBUG o.s.boot.autoconfigure.AutoConfigurationPackages - @EnableAutoConfiguration was declared on a class in the package 'com.tnmaster,org.springframework.modulith.events.jpa'. Automatic @Repository and @Entity scanning is enabled.
- 2024-02-18 11:51:11.030 [, - main] DEBUG o.s.d.r.config.RepositoryConfigurationDelegate - Scanning for Redis repositories in packages com.tnmaster, org.springframework.modulith.events.jpa.
- 2024-02-18 11:51:11.066 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IAnonymousCertGroupRepo.class]
- 2024-02-18 11:51:11.066 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IBlackListBlackListTagRepo.class]
- 2024-02-18 11:51:11.066 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IBlackListEvidenceRepo.class]
- 2024-02-18 11:51:11.066 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IBlackListRelationRepo.class]
- 2024-02-18 11:51:11.066 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IBlackListRepo.class]
- 2024-02-18 11:51:11.067 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IBlackListTagRepo.class]
- 2024-02-18 11:51:11.067 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IBlackListVoRepo.class]
- 2024-02-18 11:51:11.067 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/ICertRepo.class]
- 2024-02-18 11:51:11.067 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IDisAccountVoRepo.class]
- 2024-02-18 11:51:11.067 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IDisInfoRepo.class]
- 2024-02-18 11:51:11.067 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IDisUserInfoVoRepo.class]
- 2024-02-18 11:51:11.067 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IEmploymentRecordRepo.class]
- 2024-02-18 11:51:11.067 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IEnterpriseEmailRepo.class]
- 2024-02-18 11:51:11.067 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IEnterprisePhoneRepo.class]
- 2024-02-18 11:51:11.067 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IEnterpriseRepo.class]
- 2024-02-18 11:51:11.068 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IFullEnterpriseRepo.class]
- 2024-02-18 11:51:11.068 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IJobJobTagRepo.class]
- 2024-02-18 11:51:11.068 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IJobRepo.class]
- 2024-02-18 11:51:11.068 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IJobRuleAddressRepo.class]
- 2024-02-18 11:51:11.068 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IJobSeekerRepo.class]
- 2024-02-18 11:51:11.068 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IJobSeekerSuperiorRepo.class]
- 2024-02-18 11:51:11.068 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IJobTagRepo.class]
- 2024-02-18 11:51:11.068 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IRegShareRepo.class]
- 2024-02-18 11:51:11.068 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IUserDocumentAccessRecordRepo.class]
- 2024-02-18 11:51:11.068 [, - main] DEBUG o.s.d.r.config.RepositoryComponentProvider - Identified candidate component class: URL [jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/com/tnmaster/repositories/IUserDocumentShowVoRepo.class]
- 2024-02-18 11:51:11.254 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'springSecurityHandlerMappingIntrospectorBeanDefinitionRegistryPostProcessor'
- 2024-02-18 11:51:11.469 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer'
- 2024-02-18 11:51:11.474 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'emBeanDefinitionRegistrarPostProcessor'
- 2024-02-18 11:51:11.474 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.sql.init.dependency.DatabaseInitializationDependencyConfigurer$DependsOnDatabaseInitializationPostProcessor'
- 2024-02-18 11:51:11.522 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor'
- 2024-02-18 11:51:11.524 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'conversionServicePostProcessor'
- 2024-02-18 11:51:11.530 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor'
- 2024-02-18 11:51:11.530 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'cn.hutool.extra.spring.SpringUtil'
- 2024-02-18 11:51:11.530 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.data.jpa.domain.support.AuditingBeanFactoryPostProcessor'
- 2024-02-18 11:51:11.530 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.modulith.core.config.ApplicationModuleInitializerRuntimeVerification'
- 2024-02-18 11:51:11.531 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory'
- 2024-02-18 11:51:11.531 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory'
- 2024-02-18 11:51:11.532 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'filteringEventListenerFactory'
- 2024-02-18 11:51:11.555 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'eventExternalizationConfiguration'
- 2024-02-18 11:51:11.556 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'eventExternalizationConfiguration' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@46baf579'
- 2024-02-18 11:51:11.559 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'filteringEventListenerFactory' via factory method to bean named 'eventExternalizationConfiguration'
- 2024-02-18 11:51:11.567 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor'
- 2024-02-18 11:51:11.568 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor'
- 2024-02-18 11:51:11.571 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor'
- 2024-02-18 11:51:11.571 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor'
- 2024-02-18 11:51:11.572 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder'
- 2024-02-18 11:51:11.574 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jdbcConnectionDetailsHikariBeanPostProcessor'
- 2024-02-18 11:51:11.575 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator'
- 2024-02-18 11:51:11.592 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'methodValidationPostProcessor'
- 2024-02-18 11:51:11.594 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment'
- 2024-02-18 11:51:11.597 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter'
- 2024-02-18 11:51:11.611 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalScheduledAnnotationProcessor'
- 2024-02-18 11:51:11.611 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.scheduling.annotation.SchedulingConfiguration'
- 2024-02-18 11:51:11.616 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAsyncAnnotationProcessor'
- 2024-02-18 11:51:11.616 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.scheduling.annotation.ProxyAsyncConfiguration'
- 2024-02-18 11:51:11.625 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor'
- 2024-02-18 11:51:11.627 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment'
- 2024-02-18 11:51:11.629 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor'
- 2024-02-18 11:51:11.629 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'errorPageRegistrarBeanPostProcessor'
- 2024-02-18 11:51:11.630 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'meterRegistryPostProcessor'
- 2024-02-18 11:51:11.632 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'preFilterAuthorizationAdvisor'
- 2024-02-18 11:51:11.635 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.security.config.annotation.method.configuration.PrePostMethodSecurityConfiguration'
- 2024-02-18 11:51:11.635 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'preAuthorizeAuthorizationAdvisor'
- 2024-02-18 11:51:11.637 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.security.config.annotation.method.configuration.PrePostMethodSecurityConfiguration'
- 2024-02-18 11:51:11.638 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'postFilterAuthorizationAdvisor'
- 2024-02-18 11:51:11.640 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.security.config.annotation.method.configuration.PrePostMethodSecurityConfiguration'
- 2024-02-18 11:51:11.640 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'postAuthorizeAuthorizationAdvisor'
- 2024-02-18 11:51:11.642 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.security.config.annotation.method.configuration.PrePostMethodSecurityConfiguration'
- 2024-02-18 11:51:11.642 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jsr250AuthorizationAdvisor'
- 2024-02-18 11:51:11.643 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.security.config.annotation.method.configuration.Jsr250MethodSecurityConfiguration'
- 2024-02-18 11:51:11.644 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'preAuthorizeAuthorizationAdvisor'
- 2024-02-18 11:51:11.645 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.security.config.annotation.method.configuration.PrePostMethodSecurityConfiguration'
- 2024-02-18 11:51:11.645 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'postFilterAuthorizationAdvisor'
- 2024-02-18 11:51:11.647 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.security.config.annotation.method.configuration.PrePostMethodSecurityConfiguration'
- 2024-02-18 11:51:11.647 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'postAuthorizeAuthorizationAdvisor'
- 2024-02-18 11:51:11.649 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.security.config.annotation.method.configuration.PrePostMethodSecurityConfiguration'
- 2024-02-18 11:51:11.649 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor'
- 2024-02-18 11:51:11.649 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration'
- 2024-02-18 11:51:11.649 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'preAuthorizeAuthorizationAdvisor'
- 2024-02-18 11:51:11.650 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.security.config.annotation.method.configuration.PrePostMethodSecurityConfiguration'
- 2024-02-18 11:51:11.651 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'postFilterAuthorizationAdvisor'
- 2024-02-18 11:51:11.652 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.security.config.annotation.method.configuration.PrePostMethodSecurityConfiguration'
- 2024-02-18 11:51:11.652 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'postAuthorizeAuthorizationAdvisor'
- 2024-02-18 11:51:11.654 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.security.config.annotation.method.configuration.PrePostMethodSecurityConfiguration'
- 2024-02-18 11:51:11.654 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'completionRegisteringAdvisor'
- 2024-02-18 11:51:11.686 [, - main] DEBUG o.s.a.a.annotation.ReflectiveAspectJAdvisorFactory - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeClass(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable
- 2024-02-18 11:51:11.687 [, - main] DEBUG o.s.a.a.annotation.ReflectiveAspectJAdvisorFactory - Found AspectJ method: public java.lang.Object io.micrometer.observation.aop.ObservedAspect.observeMethod(org.aspectj.lang.ProceedingJoinPoint) throws java.lang.Throwable
- 2024-02-18 11:51:11.694 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'preAuthorizeAuthorizationAdvisor'
- 2024-02-18 11:51:11.695 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.security.config.annotation.method.configuration.PrePostMethodSecurityConfiguration'
- 2024-02-18 11:51:11.695 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'postFilterAuthorizationAdvisor'
- 2024-02-18 11:51:11.696 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.security.config.annotation.method.configuration.PrePostMethodSecurityConfiguration'
- 2024-02-18 11:51:11.696 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'postAuthorizeAuthorizationAdvisor'
- 2024-02-18 11:51:11.697 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.security.config.annotation.method.configuration.PrePostMethodSecurityConfiguration'
- 2024-02-18 11:51:11.697 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'preAuthorizeAuthorizationAdvisor'
- 2024-02-18 11:51:11.698 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.security.config.annotation.method.configuration.PrePostMethodSecurityConfiguration'
- 2024-02-18 11:51:11.698 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'postFilterAuthorizationAdvisor'
- 2024-02-18 11:51:11.699 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.security.config.annotation.method.configuration.PrePostMethodSecurityConfiguration'
- 2024-02-18 11:51:11.699 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'postAuthorizeAuthorizationAdvisor'
- 2024-02-18 11:51:11.700 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.security.config.annotation.method.configuration.PrePostMethodSecurityConfiguration'
- 2024-02-18 11:51:11.753 [, - main] DEBUG org.aspectj.weaver.Lint - ENTRY o.a.w.Lint@62581ef6
- 2024-02-18 11:51:11.754 [, - main] DEBUG org.aspectj.weaver.Lint - ENTRY o.a.w.r.ReflectionWorld@42c55978
- 2024-02-18 11:51:11.754 [, - main] DEBUG org.aspectj.weaver.Lint - RETURN
- 2024-02-18 11:51:11.768 [, - main] DEBUG org.aspectj.weaver.Lint - ENTRY o.a.w.Lint@71f10042
- 2024-02-18 11:51:11.769 [, - main] DEBUG org.aspectj.weaver.Lint - ENTRY o.a.w.r.ReflectionWorld@5dbc4598
- 2024-02-18 11:51:11.769 [, - main] DEBUG org.aspectj.weaver.Lint - RETURN
- 2024-02-18 11:51:11.867 [, - main] DEBUG org.aspectj.weaver.Lint - ENTRY o.a.w.Lint@6bfdaed7
- 2024-02-18 11:51:11.868 [, - main] DEBUG org.aspectj.weaver.Lint - ENTRY o.a.w.r.ReflectionWorld@272c5abd
- 2024-02-18 11:51:11.868 [, - main] DEBUG org.aspectj.weaver.Lint - RETURN
- 2024-02-18 11:51:11.868 [, - main] DEBUG org.aspectj.weaver.Lint - ENTRY o.a.w.Lint@60c8909a
- 2024-02-18 11:51:11.868 [, - main] DEBUG org.aspectj.weaver.Lint - ENTRY o.a.w.r.ReflectionWorld@70ad0854
- 2024-02-18 11:51:11.868 [, - main] DEBUG org.aspectj.weaver.Lint - RETURN
- 2024-02-18 11:51:11.884 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'transactionAttributeSource'
- 2024-02-18 11:51:11.884 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'preAuthorizeAuthorizationAdvisor'
- 2024-02-18 11:51:11.886 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.security.config.annotation.method.configuration.PrePostMethodSecurityConfiguration'
- 2024-02-18 11:51:11.886 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'postFilterAuthorizationAdvisor'
- 2024-02-18 11:51:11.887 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.security.config.annotation.method.configuration.PrePostMethodSecurityConfiguration'
- 2024-02-18 11:51:11.887 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'postAuthorizeAuthorizationAdvisor'
- 2024-02-18 11:51:11.889 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.security.config.annotation.method.configuration.PrePostMethodSecurityConfiguration'
- 2024-02-18 11:51:11.893 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'preAuthorizeAuthorizationAdvisor'
- 2024-02-18 11:51:11.894 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.security.config.annotation.method.configuration.PrePostMethodSecurityConfiguration'
- 2024-02-18 11:51:11.895 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'postFilterAuthorizationAdvisor'
- 2024-02-18 11:51:11.897 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.security.config.annotation.method.configuration.PrePostMethodSecurityConfiguration'
- 2024-02-18 11:51:11.897 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'postAuthorizeAuthorizationAdvisor'
- 2024-02-18 11:51:11.898 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.security.config.annotation.method.configuration.PrePostMethodSecurityConfiguration'
- 2024-02-18 11:51:11.899 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'preAuthorizeAuthorizationAdvisor'
- 2024-02-18 11:51:11.901 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.security.config.annotation.method.configuration.PrePostMethodSecurityConfiguration'
- 2024-02-18 11:51:11.901 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'postFilterAuthorizationAdvisor'
- 2024-02-18 11:51:11.902 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.security.config.annotation.method.configuration.PrePostMethodSecurityConfiguration'
- 2024-02-18 11:51:11.902 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'postAuthorizeAuthorizationAdvisor'
- 2024-02-18 11:51:11.903 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.security.config.annotation.method.configuration.PrePostMethodSecurityConfiguration'
- 2024-02-18 11:51:11.911 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'transactionInterceptor'
- 2024-02-18 11:51:11.912 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'transactionInterceptor' via factory method to bean named 'transactionAttributeSource'
- 2024-02-18 11:51:11.921 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionAttributeSource'
- 2024-02-18 11:51:11.921 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.transaction.config.internalTransactionAdvisor' via factory method to bean named 'transactionInterceptor'
- 2024-02-18 11:51:11.926 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'preAuthorizeAuthorizationAdvisor'
- 2024-02-18 11:51:11.927 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.security.config.annotation.method.configuration.PrePostMethodSecurityConfiguration'
- 2024-02-18 11:51:11.928 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'postFilterAuthorizationAdvisor'
- 2024-02-18 11:51:11.929 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.security.config.annotation.method.configuration.PrePostMethodSecurityConfiguration'
- 2024-02-18 11:51:11.929 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'postAuthorizeAuthorizationAdvisor'
- 2024-02-18 11:51:11.930 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.security.config.annotation.method.configuration.PrePostMethodSecurityConfiguration'
- 2024-02-18 11:51:11.930 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'preAuthorizeAuthorizationAdvisor'
- 2024-02-18 11:51:11.931 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.security.config.annotation.method.configuration.PrePostMethodSecurityConfiguration'
- 2024-02-18 11:51:11.931 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'postFilterAuthorizationAdvisor'
- 2024-02-18 11:51:11.932 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.security.config.annotation.method.configuration.PrePostMethodSecurityConfiguration'
- 2024-02-18 11:51:11.933 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'postAuthorizeAuthorizationAdvisor'
- 2024-02-18 11:51:11.933 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.security.config.annotation.method.configuration.PrePostMethodSecurityConfiguration'
- 2024-02-18 11:51:11.939 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'jsr250AuthorizationAdvisor' via factory method to bean named 'org.springframework.security.config.annotation.method.configuration.Jsr250MethodSecurityConfiguration'
- 2024-02-18 11:51:11.951 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'preAuthorizeAuthorizationAdvisor'
- 2024-02-18 11:51:11.952 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.security.config.annotation.method.configuration.PrePostMethodSecurityConfiguration'
- 2024-02-18 11:51:11.953 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'postFilterAuthorizationAdvisor'
- 2024-02-18 11:51:11.954 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.security.config.annotation.method.configuration.PrePostMethodSecurityConfiguration'
- 2024-02-18 11:51:11.954 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'postAuthorizeAuthorizationAdvisor'
- 2024-02-18 11:51:11.955 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.security.config.annotation.method.configuration.PrePostMethodSecurityConfiguration'
- 2024-02-18 11:51:11.955 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'preAuthorizeAuthorizationAdvisor'
- 2024-02-18 11:51:11.956 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.security.config.annotation.method.configuration.PrePostMethodSecurityConfiguration'
- 2024-02-18 11:51:11.956 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'postFilterAuthorizationAdvisor'
- 2024-02-18 11:51:11.957 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.security.config.annotation.method.configuration.PrePostMethodSecurityConfiguration'
- 2024-02-18 11:51:11.958 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'postAuthorizeAuthorizationAdvisor'
- 2024-02-18 11:51:11.959 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.security.config.annotation.method.configuration.PrePostMethodSecurityConfiguration'
- 2024-02-18 11:51:11.969 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'preFilterAuthorizationAdvisor' via factory method to bean named 'org.springframework.security.config.annotation.method.configuration.PrePostMethodSecurityConfiguration'
- 2024-02-18 11:51:11.969 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'preFilterAuthorizationAdvisor' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@3670f00'
- 2024-02-18 11:51:11.978 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'preAuthorizeAuthorizationAdvisor'
- 2024-02-18 11:51:11.981 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'preAuthorizeAuthorizationAdvisor' via factory method to bean named 'org.springframework.security.config.annotation.method.configuration.PrePostMethodSecurityConfiguration'
- 2024-02-18 11:51:11.981 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'preAuthorizeAuthorizationAdvisor' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@3670f00'
- 2024-02-18 11:51:11.986 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'postFilterAuthorizationAdvisor'
- 2024-02-18 11:51:11.989 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'postFilterAuthorizationAdvisor' via factory method to bean named 'org.springframework.security.config.annotation.method.configuration.PrePostMethodSecurityConfiguration'
- 2024-02-18 11:51:11.989 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'postFilterAuthorizationAdvisor' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@3670f00'
- 2024-02-18 11:51:11.991 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'postAuthorizeAuthorizationAdvisor'
- 2024-02-18 11:51:11.992 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'postAuthorizeAuthorizationAdvisor' via factory method to bean named 'org.springframework.security.config.annotation.method.configuration.PrePostMethodSecurityConfiguration'
- 2024-02-18 11:51:11.992 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'postAuthorizeAuthorizationAdvisor' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@3670f00'
- 2024-02-18 11:51:11.996 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'meterRegistryPostProcessor' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@3670f00'
- 2024-02-18 11:51:12.009 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'healthEndpointGroupsBeanPostProcessor'
- 2024-02-18 11:51:12.016 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListenerBeanPostProcessor'
- 2024-02-18 11:51:12.019 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'observationRegistryPostProcessor'
- 2024-02-18 11:51:12.025 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'projectingArgumentResolverBeanPostProcessor'
- 2024-02-18 11:51:12.045 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'asyncPropertiesDefaulter'
- 2024-02-18 11:51:12.046 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'asyncPropertiesDefaulter' via factory method to bean named 'environment'
- 2024-02-18 11:51:12.051 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'applicationEventMulticaster'
- 2024-02-18 11:51:12.079 [, - main] DEBUG o.s.ui.context.support.UiApplicationContextUtils - Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@5552d10]
- 2024-02-18 11:51:12.082 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'servletWebServerFactory'
- 2024-02-18 11:51:12.082 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'serverConfig'
- 2024-02-18 11:51:12.105 [, - main] DEBUG org.apache.catalina.core.AprLifecycleListener - The Apache Tomcat Native library could not be found using names [tcnative-2, libtcnative-2, tcnative-1, libtcnative-1] on the java.library.path [/usr/java/packages/lib:/usr/lib/x86_64-linux-gnu/jni:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu:/usr/lib/jni:/lib:/usr/lib]. The errors reported were [Can't load library: /app/bin/libtcnative-2.so, Can't load library: /app/bin/liblibtcnative-2.so, Can't load library: /app/bin/libtcnative-1.so, Can't load library: /app/bin/liblibtcnative-1.so, no tcnative-2 in java.library.path: /usr/java/packages/lib:/usr/lib/x86_64-linux-gnu/jni:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu:/usr/lib/jni:/lib:/usr/lib, no libtcnative-2 in java.library.path: /usr/java/packages/lib:/usr/lib/x86_64-linux-gnu/jni:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu:/usr/lib/jni:/lib:/usr/lib, no tcnative-1 in java.library.path: /usr/java/packages/lib:/usr/lib/x86_64-linux-gnu/jni:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu:/usr/lib/jni:/lib:/usr/lib, no libtcnative-1 in java.library.path: /usr/java/packages/lib:/usr/lib/x86_64-linux-gnu/jni:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu:/usr/lib/jni:/lib:/usr/lib]
- org.apache.tomcat.jni.LibraryNotFoundError: Can't load library: /app/bin/libtcnative-2.so, Can't load library: /app/bin/liblibtcnative-2.so, Can't load library: /app/bin/libtcnative-1.so, Can't load library: /app/bin/liblibtcnative-1.so, no tcnative-2 in java.library.path: /usr/java/packages/lib:/usr/lib/x86_64-linux-gnu/jni:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu:/usr/lib/jni:/lib:/usr/lib, no libtcnative-2 in java.library.path: /usr/java/packages/lib:/usr/lib/x86_64-linux-gnu/jni:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu:/usr/lib/jni:/lib:/usr/lib, no tcnative-1 in java.library.path: /usr/java/packages/lib:/usr/lib/x86_64-linux-gnu/jni:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu:/usr/lib/jni:/lib:/usr/lib, no libtcnative-1 in java.library.path: /usr/java/packages/lib:/usr/lib/x86_64-linux-gnu/jni:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu:/usr/lib/jni:/lib:/usr/lib
- at org.apache.tomcat.jni.Library.(Library.java:91)
- at org.apache.tomcat.jni.Library.initialize(Library.java:146)
- at org.apache.catalina.core.AprLifecycleListener.init(AprLifecycleListener.java:193)
- at org.apache.catalina.core.AprLifecycleListener.isAprAvailable(AprLifecycleListener.java:107)
- at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getDefaultServerLifecycleListeners(TomcatServletWebServerFactory.java:190)
- at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.(TomcatServletWebServerFactory.java:137)
- at com.tnmaster.config.ServerConfig.servletWebServerFactory(ServerConfig.kt:13)
- at com.tnmaster.config.ServerConfig$$SpringCGLIB$$0.CGLIB$servletWebServerFactory$0()
- at com.tnmaster.config.ServerConfig$$SpringCGLIB$$FastClass$$1.invoke()
- at org.springframework.cglib.proxy.MethodProxy.invokeSuper(MethodProxy.java:258)
- at org.springframework.context.annotation.ConfigurationClassEnhancer$BeanMethodInterceptor.intercept(ConfigurationClassEnhancer.java:331)
- at com.tnmaster.config.ServerConfig$$SpringCGLIB$$0.servletWebServerFactory()
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140)
- at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:647)
- at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:485)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1334)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1164)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:561)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:204)
- 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:334)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1354)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1343)
- at com.tnmaster.ApplicationRunnerKt.main(ApplicationRunner.kt:27)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:91)
- at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:53)
- at org.springframework.boot.loader.launch.JarLauncher.main(JarLauncher.java:58)
- 2024-02-18 11:51:12.116 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'websocketServletWebServerCustomizer'
- 2024-02-18 11:51:12.116 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration'
- 2024-02-18 11:51:12.123 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'servletWebServerFactoryCustomizer'
- 2024-02-18 11:51:12.123 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration'
- 2024-02-18 11:51:12.129 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
- 2024-02-18 11:51:12.135 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties'
- 2024-02-18 11:51:12.144 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'stringOrNumberMigrationVersionConverter'
- 2024-02-18 11:51:12.144 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.flyway.FlywayAutoConfiguration'
- 2024-02-18 11:51:12.177 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'servletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
- 2024-02-18 11:51:12.181 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'sslBundleRegistry'
- 2024-02-18 11:51:12.181 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.ssl.SslAutoConfiguration'
- 2024-02-18 11:51:12.182 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.ssl-org.springframework.boot.autoconfigure.ssl.SslProperties'
- 2024-02-18 11:51:12.186 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - 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-02-18 11:51:12.194 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'sslPropertiesSslBundleRegistrar'
- 2024-02-18 11:51:12.197 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'fileWatcher'
- 2024-02-18 11:51:12.201 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'sslPropertiesSslBundleRegistrar' via factory method to bean named 'fileWatcher'
- 2024-02-18 11:51:12.218 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'tomcatServletWebServerFactoryCustomizer'
- 2024-02-18 11:51:12.221 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'tomcatServletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
- 2024-02-18 11:51:12.222 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'nettyWebServerFactoryCustomizer'
- 2024-02-18 11:51:12.223 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$NettyWebServerFactoryCustomizerConfiguration'
- 2024-02-18 11:51:12.226 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'nettyWebServerFactoryCustomizer' via factory method to bean named 'environment'
- 2024-02-18 11:51:12.226 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'nettyWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
- 2024-02-18 11:51:12.235 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'tomcatWebServerFactoryCustomizer'
- 2024-02-18 11:51:12.236 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration'
- 2024-02-18 11:51:12.239 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'environment'
- 2024-02-18 11:51:12.239 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties'
- 2024-02-18 11:51:12.249 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'tomcatVirtualThreadsProtocolHandlerCustomizer'
- 2024-02-18 11:51:12.255 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'localeCharsetMappingsCustomizer'
- 2024-02-18 11:51:12.255 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration'
- 2024-02-18 11:51:12.256 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - 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-02-18 11:51:12.280 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'errorPageCustomizer'
- 2024-02-18 11:51:12.280 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration'
- 2024-02-18 11:51:12.281 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - 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-02-18 11:51:12.285 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'dispatcherServletRegistration'
- 2024-02-18 11:51:12.285 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration'
- 2024-02-18 11:51:12.288 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'dispatcherServlet'
- 2024-02-18 11:51:12.288 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration'
- 2024-02-18 11:51:12.292 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties'
- 2024-02-18 11:51:12.304 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'dispatcherServlet' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties'
- 2024-02-18 11:51:12.356 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'dispatcherServlet'
- 2024-02-18 11:51:12.356 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties'
- 2024-02-18 11:51:12.358 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'multipartConfigElement'
- 2024-02-18 11:51:12.358 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration'
- 2024-02-18 11:51:12.359 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties'
- 2024-02-18 11:51:12.369 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - 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-02-18 11:51:12.384 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'errorPageCustomizer' via factory method to bean named 'dispatcherServletRegistration'
- 2024-02-18 11:51:12.429 [, - main] DEBUG org.apache.tomcat.util.compat.Jre22Compat - Failed to create references to Java 22 classes and methods
- java.lang.NoSuchMethodException: java.lang.foreign.MemorySegment.getString(long)
- at java.base/java.lang.Class.getMethod(Class.java:2395)
- at org.apache.tomcat.util.compat.Jre22Compat.(Jre22Compat.java:42)
- at org.apache.tomcat.util.compat.JreCompat.(JreCompat.java:55)
- at org.apache.catalina.startup.Tomcat.(Tomcat.java:1279)
- at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:202)
- 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:334)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1354)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1343)
- at com.tnmaster.ApplicationRunnerKt.main(ApplicationRunner.kt:27)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:91)
- at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:53)
- at org.springframework.boot.loader.launch.JarLauncher.main(JarLauncher.java:58)
- 2024-02-18 11:51:12.456 [, - main] DEBUG org.apache.tomcat.util.IntrospectionUtils - IntrospectionUtils: setProperty(class org.apache.coyote.http11.Http11NioProtocol port=8080)
- 2024-02-18 11:51:12.478 [, - main] DEBUG org.apache.catalina.core.ContainerBase - Add child StandardHost[localhost] StandardEngine[Tomcat]
- 2024-02-18 11:51:12.478 [, - main] DEBUG o.s.b.w.e.tomcat.TomcatServletWebServerFactory - Code archive: /app/lib/spring-boot-3.3.0-M1.jar
- 2024-02-18 11:51:12.478 [, - main] DEBUG o.s.b.w.e.tomcat.TomcatServletWebServerFactory - Code archive: /app/lib/spring-boot-3.3.0-M1.jar
- 2024-02-18 11:51:12.478 [, - main] DEBUG o.s.b.w.e.tomcat.TomcatServletWebServerFactory - None of the document roots [src/main/webapp, public, static] point to a directory and will be ignored.
- 2024-02-18 11:51:12.492 [, - main] DEBUG org.apache.catalina.core.ContainerBase - Add child TomcatEmbeddedContext[] StandardEngine[Tomcat].StandardHost[localhost]
- 2024-02-18 11:51:12.497 [, - main] DEBUG org.apache.tomcat.util.net.NioEndpoint - [bindOnInit] is [null]
- 2024-02-18 11:51:12.497 [, - main] DEBUG org.apache.tomcat.util.IntrospectionUtils - IntrospectionUtils: setProperty(class org.apache.coyote.http11.Http11NioProtocol bindOnInit=false)
- 2024-02-18 11:51:12.498 [, - main] DEBUG org.apache.tomcat.util.net.NioEndpoint - Set [bindOnInit] to [false]
- 2024-02-18 11:51:12.498 [, - main] DEBUG org.apache.tomcat.util.IntrospectionUtils - IntrospectionUtils: setProperty(class org.apache.tomcat.util.net.NioEndpoint bindOnInit=false)
- 2024-02-18 11:51:12.500 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardServer[-1]] to [INITIALIZING]
- 2024-02-18 11:51:12.504 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@572db5ee] to [INITIALIZING]
- 2024-02-18 11:51:12.504 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@572db5ee] to [INITIALIZED]
- 2024-02-18 11:51:12.504 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardService[Tomcat]] to [INITIALIZING]
- 2024-02-18 11:51:12.504 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardEngine[Tomcat]] to [INITIALIZING]
- 2024-02-18 11:51:12.504 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardEngine[Tomcat]] to [INITIALIZED]
- 2024-02-18 11:51:12.504 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.mapper.MapperListener@36f80ceb] to [INITIALIZING]
- 2024-02-18 11:51:12.504 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.mapper.MapperListener@36f80ceb] to [INITIALIZED]
- 2024-02-18 11:51:12.504 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [Connector["http-nio-8080"]] to [INITIALIZING]
- 2024-02-18 11:51:12.509 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [Connector["http-nio-8080"]] to [INITIALIZED]
- 2024-02-18 11:51:12.509 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardService[Tomcat]] to [INITIALIZED]
- 2024-02-18 11:51:12.509 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardServer[-1]] to [INITIALIZED]
- 2024-02-18 11:51:12.509 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardServer[-1]] to [STARTING_PREP]
- 2024-02-18 11:51:12.509 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardServer[-1]] to [STARTING]
- 2024-02-18 11:51:12.510 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@572db5ee] to [STARTING_PREP]
- 2024-02-18 11:51:12.510 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@572db5ee] to [STARTING]
- 2024-02-18 11:51:12.510 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@572db5ee] to [STARTED]
- 2024-02-18 11:51:12.510 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardService[Tomcat]] to [STARTING_PREP]
- 2024-02-18 11:51:12.510 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardService[Tomcat]] to [STARTING]
- 2024-02-18 11:51:12.510 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardEngine[Tomcat]] to [STARTING_PREP]
- 2024-02-18 11:51:12.511 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZING]
- 2024-02-18 11:51:12.511 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZED]
- 2024-02-18 11:51:12.511 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING_PREP]
- 2024-02-18 11:51:12.512 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING]
- 2024-02-18 11:51:12.512 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTED]
- 2024-02-18 11:51:12.512 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZING]
- 2024-02-18 11:51:12.512 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZED]
- 2024-02-18 11:51:12.512 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING_PREP]
- 2024-02-18 11:51:12.512 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZING]
- 2024-02-18 11:51:12.513 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZED]
- 2024-02-18 11:51:12.513 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING_PREP]
- 2024-02-18 11:51:12.513 [, - main] DEBUG org.apache.catalina.core.StandardContext - Starting ROOT
- 2024-02-18 11:51:12.522 [, - main] DEBUG org.apache.catalina.core.StandardContext - Configuring default Resources
- 2024-02-18 11:51:12.525 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.webresources.StandardRoot@71e89a26] to [INITIALIZING]
- 2024-02-18 11:51:12.526 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.webresources.StandardRoot@71e89a26] to [INITIALIZED]
- 2024-02-18 11:51:12.526 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.webresources.StandardRoot@71e89a26] to [STARTING_PREP]
- 2024-02-18 11:51:12.527 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.webresources.DirResourceSet@58c16efd] to [INITIALIZING]
- 2024-02-18 11:51:12.528 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.webresources.DirResourceSet@58c16efd] to [INITIALIZED]
- 2024-02-18 11:51:12.528 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.webresources.DirResourceSet@58c16efd] to [STARTING_PREP]
- 2024-02-18 11:51:12.528 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.webresources.DirResourceSet@58c16efd] to [STARTING]
- 2024-02-18 11:51:12.528 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.webresources.DirResourceSet@58c16efd] to [STARTED]
- 2024-02-18 11:51:12.529 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.webresources.StandardRoot@71e89a26] to [STARTING]
- 2024-02-18 11:51:12.529 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.webresources.StandardRoot@71e89a26] to [STARTED]
- 2024-02-18 11:51:12.529 [, - main] DEBUG org.apache.catalina.core.StandardContext - Processing standard container startup
- 2024-02-18 11:51:12.529 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING]
- 2024-02-18 11:51:12.529 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED]
- 2024-02-18 11:51:12.530 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP]
- 2024-02-18 11:51:12.530 [, - main] DEBUG org.apache.catalina.loader.WebappLoader - Starting this Loader
- 2024-02-18 11:51:12.534 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING]
- 2024-02-18 11:51:12.534 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED]
- 2024-02-18 11:51:12.541 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING]
- 2024-02-18 11:51:12.541 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED]
- 2024-02-18 11:51:12.541 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP]
- 2024-02-18 11:51:12.541 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING]
- 2024-02-18 11:51:12.542 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED]
- 2024-02-18 11:51:12.542 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP]
- 2024-02-18 11:51:12.543 [, - main] DEBUG o.apache.catalina.authenticator.AuthenticatorBase - No SingleSignOn Valve is present
- 2024-02-18 11:51:12.543 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING]
- 2024-02-18 11:51:12.543 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED]
- 2024-02-18 11:51:12.543 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING]
- 2024-02-18 11:51:12.543 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED]
- 2024-02-18 11:51:12.543 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP]
- 2024-02-18 11:51:12.544 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING]
- 2024-02-18 11:51:12.544 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED]
- 2024-02-18 11:51:12.544 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING]
- 2024-02-18 11:51:12.544 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED]
- 2024-02-18 11:51:12.544 [, - main] DEBUG org.apache.catalina.core.StandardContext - No manager found. Checking if cluster manager should be used. Cluster configured: [false], Application distributable: [false]
- 2024-02-18 11:51:12.547 [, - main] DEBUG org.apache.catalina.core.StandardContext - Configured a manager of class [org.apache.catalina.session.StandardManager]
- 2024-02-18 11:51:12.547 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@19d0d1ab] to [INITIALIZING]
- 2024-02-18 11:51:12.548 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@19d0d1ab] to [INITIALIZED]
- 2024-02-18 11:51:12.548 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@19d0d1ab] to [STARTING_PREP]
- 2024-02-18 11:51:12.548 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@19d0d1ab] to [STARTING]
- 2024-02-18 11:51:12.548 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@19d0d1ab] to [STARTED]
- 2024-02-18 11:51:12.555 [, - main] DEBUG o.s.b.w.s.c.ServletWebServerApplicationContext - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT]
- 2024-02-18 11:51:12.558 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'mdcFilter'
- 2024-02-18 11:51:12.558 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'MDCFilterAutoConfiguration'
- 2024-02-18 11:51:12.562 [, - main] DEBUG com.tnmaster.config.MDCFilterAutoConfiguration - 注册 MDCFilter Bean = filterRegistrationBean urls=[/*] order=2147483647
- 2024-02-18 11:51:12.569 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'webMvcObservationFilter'
- 2024-02-18 11:51:12.569 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration'
- 2024-02-18 11:51:12.572 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'observationRegistry'
- 2024-02-18 11:51:12.572 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration'
- 2024-02-18 11:51:12.578 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'propertiesObservationFilter'
- 2024-02-18 11:51:12.579 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties'
- 2024-02-18 11:51:12.584 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'propertiesObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties'
- 2024-02-18 11:51:12.590 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'metricsObservationHandlerGrouping'
- 2024-02-18 11:51:12.591 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$OnlyMetricsConfiguration'
- 2024-02-18 11:51:12.594 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'defaultMeterObservationHandler'
- 2024-02-18 11:51:12.595 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.ObservationAutoConfiguration$MeterObservationHandlerConfiguration$OnlyMetricsMeterObservationHandlerConfiguration'
- 2024-02-18 11:51:12.596 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'simpleMeterRegistry'
- 2024-02-18 11:51:12.596 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleMetricsExportAutoConfiguration'
- 2024-02-18 11:51:12.598 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'simpleConfig'
- 2024-02-18 11:51:12.599 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'management.simple.metrics.export-org.springframework.boot.actuate.autoconfigure.metrics.export.simple.SimpleProperties'
- 2024-02-18 11:51:12.603 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - 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-02-18 11:51:12.614 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'micrometerClock'
- 2024-02-18 11:51:12.614 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration'
- 2024-02-18 11:51:12.618 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'simpleConfig'
- 2024-02-18 11:51:12.618 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'simpleMeterRegistry' via factory method to bean named 'micrometerClock'
- 2024-02-18 11:51:12.649 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'propertiesMeterFilter'
- 2024-02-18 11:51:12.650 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties'
- 2024-02-18 11:51:12.654 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'propertiesMeterFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties'
- 2024-02-18 11:51:12.660 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'metricsHttpClientUriTagFilter'
- 2024-02-18 11:51:12.660 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.client.HttpClientObservationsAutoConfiguration$MeterFilterConfiguration'
- 2024-02-18 11:51:12.663 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties'
- 2024-02-18 11:51:12.664 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'metricsHttpClientUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties'
- 2024-02-18 11:51:12.667 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'metricsHttpServerUriTagFilter'
- 2024-02-18 11:51:12.667 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.observation.web.servlet.WebMvcObservationAutoConfiguration$MeterFilterConfiguration'
- 2024-02-18 11:51:12.690 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties'
- 2024-02-18 11:51:12.690 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'metricsHttpServerUriTagFilter' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties'
- 2024-02-18 11:51:12.697 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'defaultMeterObservationHandler' via factory method to bean named 'simpleMeterRegistry'
- 2024-02-18 11:51:12.705 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'observationRegistry'
- 2024-02-18 11:51:12.705 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'webMvcObservationFilter' via factory method to bean named 'management.observations-org.springframework.boot.actuate.autoconfigure.observation.ObservationProperties'
- 2024-02-18 11:51:12.714 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'securityFilterChainRegistration'
- 2024-02-18 11:51:12.716 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.security.servlet.SecurityFilterAutoConfiguration'
- 2024-02-18 11:51:12.720 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.security-org.springframework.boot.autoconfigure.security.SecurityProperties'
- 2024-02-18 11:51:12.723 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'securityFilterChainRegistration' via factory method to bean named 'spring.security-org.springframework.boot.autoconfigure.security.SecurityProperties'
- 2024-02-18 11:51:12.731 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'servletEndpointRegistrar'
- 2024-02-18 11:51:12.732 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration$WebMvcServletEndpointManagementContextConfiguration'
- 2024-02-18 11:51:12.733 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties'
- 2024-02-18 11:51:12.737 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'servletEndpointDiscoverer'
- 2024-02-18 11:51:12.738 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration$WebEndpointServletConfiguration'
- 2024-02-18 11:51:12.740 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'servletEndpointDiscoverer' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@3670f00'
- 2024-02-18 11:51:12.742 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'webEndpointPathMapper'
- 2024-02-18 11:51:12.742 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration'
- 2024-02-18 11:51:12.744 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - 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@3670f00'
- 2024-02-18 11:51:12.744 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - 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-02-18 11:51:12.753 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'servletExposeExcludePropertyEndpointFilter'
- 2024-02-18 11:51:12.753 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.web.ServletEndpointManagementContextConfiguration'
- 2024-02-18 11:51:12.755 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - 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-02-18 11:51:12.769 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - 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-02-18 11:51:12.769 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'servletEndpointDiscoverer'
- 2024-02-18 11:51:12.769 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'servletEndpointRegistrar' via factory method to bean named 'dispatcherServletRegistration'
- 2024-02-18 11:51:12.794 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'requestContextFilter'
- 2024-02-18 11:51:12.805 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'formContentFilter'
- 2024-02-18 11:51:12.805 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration'
- 2024-02-18 11:51:12.814 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'characterEncodingFilter'
- 2024-02-18 11:51:12.826 [, - main] DEBUG o.s.b.web.servlet.ServletContextInitializerBeans - Mapping filters: webMvcObservationFilter urls=[/*] order=-2147483647, springSecurityFilterChain urls=[/*] order=-100, mdcFilter urls=[/*] order=2147483647, characterEncodingFilter urls=[/*] order=-2147483648, formContentFilter urls=[/*] order=-9900, requestContextFilter urls=[/*] order=-105
- 2024-02-18 11:51:12.827 [, - main] DEBUG o.s.b.web.servlet.ServletContextInitializerBeans - Mapping servlets: dispatcherServlet urls=[/]
- 2024-02-18 11:51:12.831 [, - main] DEBUG org.apache.catalina.core.ContainerBase - Add child StandardWrapper[dispatcherServlet] StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]
- 2024-02-18 11:51:12.831 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZING]
- 2024-02-18 11:51:12.832 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZED]
- 2024-02-18 11:51:12.832 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING_PREP]
- 2024-02-18 11:51:12.832 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING]
- 2024-02-18 11:51:12.832 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED]
- 2024-02-18 11:51:12.832 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP]
- 2024-02-18 11:51:12.832 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING]
- 2024-02-18 11:51:12.832 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED]
- 2024-02-18 11:51:12.832 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP]
- 2024-02-18 11:51:12.833 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING]
- 2024-02-18 11:51:12.833 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED]
- 2024-02-18 11:51:12.833 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING]
- 2024-02-18 11:51:12.833 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED]
- 2024-02-18 11:51:12.833 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING]
- 2024-02-18 11:51:12.833 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTED]
- 2024-02-18 11:51:12.846 [, - main] DEBUG org.apache.catalina.core.StandardContext - Configuring application event listeners
- 2024-02-18 11:51:12.847 [, - main] DEBUG o.a.c.core.ContainerBase.[Tomcat].[localhost].[/] - Sending application start events
- 2024-02-18 11:51:12.848 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING]
- 2024-02-18 11:51:12.848 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED]
- 2024-02-18 11:51:12.848 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP]
- 2024-02-18 11:51:12.849 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@6cb759d5] to [INITIALIZING]
- 2024-02-18 11:51:12.849 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@6cb759d5] to [INITIALIZED]
- 2024-02-18 11:51:12.849 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@6cb759d5] to [STARTING_PREP]
- 2024-02-18 11:51:12.850 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@6cb759d5] to [STARTING]
- 2024-02-18 11:51:12.850 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@6cb759d5] to [STARTED]
- 2024-02-18 11:51:12.850 [, - main] DEBUG org.apache.catalina.session.StandardManager - Start: Loading persisted sessions
- 2024-02-18 11:51:12.850 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING]
- 2024-02-18 11:51:12.850 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED]
- 2024-02-18 11:51:12.851 [, - main] DEBUG o.a.c.core.ContainerBase.[Tomcat].[localhost].[/] - Starting filters
- 2024-02-18 11:51:12.851 [, - main] DEBUG o.a.c.core.ContainerBase.[Tomcat].[localhost].[/] - Starting filter 'requestContextFilter'
- 2024-02-18 11:51:12.854 [, - main] DEBUG o.s.b.w.servlet.filter.OrderedRequestContextFilter - Filter 'requestContextFilter' configured for use
- 2024-02-18 11:51:12.855 [, - main] DEBUG o.a.c.core.ContainerBase.[Tomcat].[localhost].[/] - Starting filter 'webMvcObservationFilter'
- 2024-02-18 11:51:12.856 [, - main] DEBUG o.s.web.filter.ServerHttpObservationFilter - Filter 'webMvcObservationFilter' configured for use
- 2024-02-18 11:51:12.856 [, - main] DEBUG o.a.c.core.ContainerBase.[Tomcat].[localhost].[/] - Starting filter 'Tomcat WebSocket (JSR356) Filter'
- 2024-02-18 11:51:12.857 [, - main] DEBUG o.a.c.core.ContainerBase.[Tomcat].[localhost].[/] - Starting filter 'characterEncodingFilter'
- 2024-02-18 11:51:12.857 [, - main] DEBUG o.s.b.w.s.filter.OrderedCharacterEncodingFilter - Filter 'characterEncodingFilter' configured for use
- 2024-02-18 11:51:12.857 [, - main] DEBUG o.a.c.core.ContainerBase.[Tomcat].[localhost].[/] - Starting filter 'mdcFilter'
- 2024-02-18 11:51:12.857 [, - main] DEBUG o.a.c.core.ContainerBase.[Tomcat].[localhost].[/] - Starting filter 'springSecurityFilterChain'
- 2024-02-18 11:51:12.857 [, - main] DEBUG o.s.b.w.s.DelegatingFilterProxyRegistrationBean$1 - Filter 'springSecurityFilterChain' configured for use
- 2024-02-18 11:51:12.857 [, - main] DEBUG o.a.c.core.ContainerBase.[Tomcat].[localhost].[/] - Starting filter 'formContentFilter'
- 2024-02-18 11:51:12.857 [, - main] DEBUG o.s.b.web.servlet.filter.OrderedFormContentFilter - Filter 'formContentFilter' configured for use
- 2024-02-18 11:51:12.857 [, - main] DEBUG org.apache.catalina.core.StandardContext - Starting completed
- 2024-02-18 11:51:12.857 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING]
- 2024-02-18 11:51:12.858 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTED]
- 2024-02-18 11:51:12.858 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING]
- 2024-02-18 11:51:12.858 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED]
- 2024-02-18 11:51:12.858 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP]
- 2024-02-18 11:51:12.858 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING]
- 2024-02-18 11:51:12.858 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED]
- 2024-02-18 11:51:12.858 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP]
- 2024-02-18 11:51:12.858 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING]
- 2024-02-18 11:51:12.858 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED]
- 2024-02-18 11:51:12.858 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING]
- 2024-02-18 11:51:12.858 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED]
- 2024-02-18 11:51:12.858 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP]
- 2024-02-18 11:51:12.858 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING]
- 2024-02-18 11:51:12.858 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED]
- 2024-02-18 11:51:12.858 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING]
- 2024-02-18 11:51:12.858 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED]
- 2024-02-18 11:51:12.859 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING]
- 2024-02-18 11:51:12.860 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTED]
- 2024-02-18 11:51:12.860 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZING]
- 2024-02-18 11:51:12.860 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZED]
- 2024-02-18 11:51:12.860 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING_PREP]
- 2024-02-18 11:51:12.860 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZING]
- 2024-02-18 11:51:12.860 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZED]
- 2024-02-18 11:51:12.860 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING_PREP]
- 2024-02-18 11:51:12.861 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING]
- 2024-02-18 11:51:12.861 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTED]
- 2024-02-18 11:51:12.861 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING]
- 2024-02-18 11:51:12.861 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTED]
- 2024-02-18 11:51:12.861 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardEngine[Tomcat]] to [STARTING]
- 2024-02-18 11:51:12.864 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardEngine[Tomcat]] to [STARTED]
- 2024-02-18 11:51:12.864 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.mapper.MapperListener@36f80ceb] to [STARTING_PREP]
- 2024-02-18 11:51:12.864 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.mapper.MapperListener@36f80ceb] to [STARTING]
- 2024-02-18 11:51:12.864 [, - main] DEBUG org.apache.catalina.mapper.Mapper - Registered host [localhost]
- 2024-02-18 11:51:12.864 [, - main] DEBUG org.apache.catalina.mapper.MapperListener - Register Wrapper [dispatcherServlet] in Context [] for service [StandardService[Tomcat]]
- 2024-02-18 11:51:12.865 [, - main] DEBUG org.apache.catalina.mapper.MapperListener - Register Context [] for service [StandardService[Tomcat]]
- 2024-02-18 11:51:12.865 [, - main] DEBUG org.apache.catalina.mapper.MapperListener - Register host [localhost] at domain [null] for service [StandardService[Tomcat]]
- 2024-02-18 11:51:12.865 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.mapper.MapperListener@36f80ceb] to [STARTED]
- 2024-02-18 11:51:12.865 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardService[Tomcat]] to [STARTED]
- 2024-02-18 11:51:12.868 [, - main] DEBUG org.apache.catalina.util.LifecycleBase - Setting state for [StandardServer[-1]] to [STARTED]
- 2024-02-18 11:51:12.872 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'flyway'
- 2024-02-18 11:51:12.873 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.flyway.FlywayAutoConfiguration$FlywayConfiguration'
- 2024-02-18 11:51:12.874 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.flyway-org.springframework.boot.autoconfigure.flyway.FlywayProperties'
- 2024-02-18 11:51:12.899 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.flyway.FlywayAutoConfiguration$FlywayConfiguration' via constructor to bean named 'spring.flyway-org.springframework.boot.autoconfigure.flyway.FlywayProperties'
- 2024-02-18 11:51:12.911 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'flywayConnectionDetails'
- 2024-02-18 11:51:12.915 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'resourceProviderCustomizer'
- 2024-02-18 11:51:12.917 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'flyway' via factory method to bean named 'flywayConnectionDetails'
- 2024-02-18 11:51:12.917 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'flyway' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@3670f00'
- 2024-02-18 11:51:12.917 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'flyway' via factory method to bean named 'resourceProviderCustomizer'
- 2024-02-18 11:51:12.926 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'dataSource'
- 2024-02-18 11:51:12.926 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari'
- 2024-02-18 11:51:12.931 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties'
- 2024-02-18 11:51:12.944 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jdbcConnectionDetails'
- 2024-02-18 11:51:12.944 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$PooledDataSourceConfiguration'
- 2024-02-18 11:51:12.946 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'jdbcConnectionDetails' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties'
- 2024-02-18 11:51:12.947 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'dataSource' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties'
- 2024-02-18 11:51:12.947 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'dataSource' via factory method to bean named 'jdbcConnectionDetails'
- 2024-02-18 11:51:12.950 [, - main] DEBUG com.zaxxer.hikari.HikariConfig - Driver class org.postgresql.Driver found in Thread context class loader org.springframework.boot.loader.launch.LaunchedClassLoader@33a10788
- 2024-02-18 11:51:12.976 [, - main] DEBUG com.zaxxer.hikari.HikariConfig - HikariPool-1 - configuration:
- 2024-02-18 11:51:12.980 [, - main] DEBUG com.zaxxer.hikari.HikariConfig - allowPoolSuspension.............false
- 2024-02-18 11:51:12.980 [, - main] DEBUG com.zaxxer.hikari.HikariConfig - autoCommit......................true
- 2024-02-18 11:51:12.980 [, - main] DEBUG com.zaxxer.hikari.HikariConfig - catalog.........................none
- 2024-02-18 11:51:12.981 [, - main] DEBUG com.zaxxer.hikari.HikariConfig - connectionInitSql...............none
- 2024-02-18 11:51:12.981 [, - main] DEBUG com.zaxxer.hikari.HikariConfig - connectionTestQuery............."SELECT 1"
- 2024-02-18 11:51:12.982 [, - main] DEBUG com.zaxxer.hikari.HikariConfig - connectionTimeout...............30000
- 2024-02-18 11:51:12.982 [, - main] DEBUG com.zaxxer.hikari.HikariConfig - dataSource......................none
- 2024-02-18 11:51:12.982 [, - main] DEBUG com.zaxxer.hikari.HikariConfig - dataSourceClassName.............none
- 2024-02-18 11:51:12.982 [, - main] DEBUG com.zaxxer.hikari.HikariConfig - dataSourceJNDI..................none
- 2024-02-18 11:51:12.984 [, - main] DEBUG com.zaxxer.hikari.HikariConfig - dataSourceProperties............{password=}
- 2024-02-18 11:51:12.984 [, - main] DEBUG com.zaxxer.hikari.HikariConfig - driverClassName................."org.postgresql.Driver"
- 2024-02-18 11:51:12.984 [, - main] DEBUG com.zaxxer.hikari.HikariConfig - exceptionOverrideClassName......none
- 2024-02-18 11:51:12.984 [, - main] DEBUG com.zaxxer.hikari.HikariConfig - healthCheckProperties...........{}
- 2024-02-18 11:51:12.984 [, - main] DEBUG com.zaxxer.hikari.HikariConfig - healthCheckRegistry.............none
- 2024-02-18 11:51:12.984 [, - main] DEBUG com.zaxxer.hikari.HikariConfig - idleTimeout.....................30000
- 2024-02-18 11:51:12.984 [, - main] DEBUG com.zaxxer.hikari.HikariConfig - initializationFailTimeout.......1
- 2024-02-18 11:51:12.984 [, - main] DEBUG com.zaxxer.hikari.HikariConfig - isolateInternalQueries..........false
- 2024-02-18 11:51:12.984 [, - main] DEBUG com.zaxxer.hikari.HikariConfig - jdbcUrl.........................jdbc:postgresql://postgres:5432/tnmaster
- 2024-02-18 11:51:12.984 [, - main] DEBUG com.zaxxer.hikari.HikariConfig - keepaliveTime...................0
- 2024-02-18 11:51:12.984 [, - main] DEBUG com.zaxxer.hikari.HikariConfig - leakDetectionThreshold..........50000
- 2024-02-18 11:51:12.984 [, - main] DEBUG com.zaxxer.hikari.HikariConfig - maxLifetime.....................55000
- 2024-02-18 11:51:12.984 [, - main] DEBUG com.zaxxer.hikari.HikariConfig - maximumPoolSize.................15
- 2024-02-18 11:51:12.984 [, - main] DEBUG com.zaxxer.hikari.HikariConfig - metricRegistry..................none
- 2024-02-18 11:51:12.984 [, - main] DEBUG com.zaxxer.hikari.HikariConfig - metricsTrackerFactory...........none
- 2024-02-18 11:51:12.985 [, - main] DEBUG com.zaxxer.hikari.HikariConfig - minimumIdle.....................5
- 2024-02-18 11:51:12.986 [, - main] DEBUG com.zaxxer.hikari.HikariConfig - password........................
- 2024-02-18 11:51:12.986 [, - main] DEBUG com.zaxxer.hikari.HikariConfig - poolName........................"HikariPool-1"
- 2024-02-18 11:51:12.986 [, - main] DEBUG com.zaxxer.hikari.HikariConfig - readOnly........................false
- 2024-02-18 11:51:12.986 [, - main] DEBUG com.zaxxer.hikari.HikariConfig - registerMbeans..................false
- 2024-02-18 11:51:12.987 [, - main] DEBUG com.zaxxer.hikari.HikariConfig - scheduledExecutor...............none
- 2024-02-18 11:51:12.987 [, - main] DEBUG com.zaxxer.hikari.HikariConfig - schema..........................none
- 2024-02-18 11:51:12.987 [, - main] DEBUG com.zaxxer.hikari.HikariConfig - threadFactory...................internal
- 2024-02-18 11:51:12.987 [, - main] DEBUG com.zaxxer.hikari.HikariConfig - transactionIsolation............default
- 2024-02-18 11:51:12.987 [, - main] DEBUG com.zaxxer.hikari.HikariConfig - username........................"postgres"
- 2024-02-18 11:51:12.987 [, - main] DEBUG com.zaxxer.hikari.HikariConfig - validationTimeout...............5000
- 2024-02-18 11:51:12.999 [, - main] DEBUG org.postgresql.Driver - Loading driver configuration via classloader jdk.internal.loader.ClassLoaders$AppClassLoader@4f2410ac
- 2024-02-18 11:51:13.000 [, - main] DEBUG org.postgresql.Driver - Connecting with URL: jdbc:postgresql://postgres:5432/tnmaster
- 2024-02-18 11:51:13.009 [, - main] DEBUG org.postgresql.jdbc.PgConnection - PostgreSQL JDBC Driver 42.7.1
- 2024-02-18 11:51:13.010 [, - main] DEBUG org.postgresql.jdbc.PgConnection - setDefaultFetchSize = 0
- 2024-02-18 11:51:13.010 [, - main] DEBUG org.postgresql.jdbc.PgConnection - setPrepareThreshold = 5
- 2024-02-18 11:51:13.015 [, - main] DEBUG org.postgresql.core.v3.ConnectionFactoryImpl - Trying to establish a protocol version 3 connection to postgres:5432
- 2024-02-18 11:51:13.029 [, - main] DEBUG org.postgresql.core.v3.ConnectionFactoryImpl - Receive Buffer Size is 65,536
- 2024-02-18 11:51:13.029 [, - main] DEBUG org.postgresql.core.v3.ConnectionFactoryImpl - Send Buffer Size is 43,520
- 2024-02-18 11:51:13.276 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'postgresqlFlywayConfigurationCustomizer'
- 2024-02-18 11:51:13.315 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'flywayInitializer'
- 2024-02-18 11:51:13.316 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'flywayInitializer' via factory method to bean named 'flyway'
- 2024-02-18 11:51:13.322 [, - main] DEBUG o.f.c.internal.scanner.classpath.ClassPathScanner - Scanning for classpath resources at 'classpath:db/callback' ...
- 2024-02-18 11:51:13.322 [, - main] DEBUG o.f.c.internal.scanner.classpath.ClassPathScanner - Determining location urls for classpath:db/callback using ClassLoader org.springframework.boot.loader.launch.LaunchedClassLoader@33a10788 ...
- 2024-02-18 11:51:13.322 [, - main] DEBUG o.f.c.internal.scanner.classpath.ClassPathScanner - Unable to resolve location classpath:db/callback.
- 2024-02-18 11:51:13.322 [, - main] DEBUG o.f.c.internal.scanner.classpath.ClassPathScanner - Scanning for classpath resources at 'classpath:db/migration' ...
- 2024-02-18 11:51:13.322 [, - main] DEBUG o.f.c.internal.scanner.classpath.ClassPathScanner - Determining location urls for classpath:db/migration using ClassLoader org.springframework.boot.loader.launch.LaunchedClassLoader@33a10788 ...
- 2024-02-18 11:51:13.323 [, - HikariPool-1 housekeeper] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Before cleanup stats (total=1, active=0, idle=1, waiting=0)
- 2024-02-18 11:51:13.323 [, - HikariPool-1 housekeeper] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - After cleanup stats (total=1, active=0, idle=1, waiting=0)
- 2024-02-18 11:51:13.324 [, - main] DEBUG o.f.c.internal.scanner.classpath.ClassPathScanner - Scanning URL: jar:file:/app/lib/rds-1.6.356-postgresql.jar!/db/migration
- 2024-02-18 11:51:13.326 [, - main] DEBUG o.f.c.internal.scanner.classpath.ClassPathScanner - Scanning URL: jar:nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/!/db/migration
- 2024-02-18 11:51:13.327 [, - HikariPool-1 connection adder] DEBUG org.postgresql.Driver - Connecting with URL: jdbc:postgresql://postgres:5432/tnmaster
- 2024-02-18 11:51:13.327 [, - HikariPool-1 connection adder] DEBUG org.postgresql.jdbc.PgConnection - PostgreSQL JDBC Driver 42.7.1
- 2024-02-18 11:51:13.327 [, - HikariPool-1 connection adder] DEBUG org.postgresql.jdbc.PgConnection - setDefaultFetchSize = 0
- 2024-02-18 11:51:13.327 [, - HikariPool-1 connection adder] DEBUG org.postgresql.jdbc.PgConnection - setPrepareThreshold = 5
- 2024-02-18 11:51:13.327 [, - HikariPool-1 connection adder] DEBUG org.postgresql.core.v3.ConnectionFactoryImpl - Trying to establish a protocol version 3 connection to postgres:5432
- 2024-02-18 11:51:13.329 [, - HikariPool-1 connection adder] DEBUG org.postgresql.core.v3.ConnectionFactoryImpl - Receive Buffer Size is 65,536
- 2024-02-18 11:51:13.330 [, - HikariPool-1 connection adder] DEBUG org.postgresql.core.v3.ConnectionFactoryImpl - Send Buffer Size is 43,520
- 2024-02-18 11:51:13.331 [, - main] DEBUG o.f.c.internal.scanner.classpath.ClassPathScanner - Found resource: db/migration/
- 2024-02-18 11:51:13.331 [, - main] DEBUG o.f.c.internal.scanner.classpath.ClassPathScanner - Found resource: db/migration/
- 2024-02-18 11:51:13.331 [, - main] DEBUG o.f.c.internal.scanner.classpath.ClassPathScanner - Found resource: db/migration/V1__postgres_helper_fun.sql
- 2024-02-18 11:51:13.331 [, - main] DEBUG o.f.c.internal.scanner.classpath.ClassPathScanner - Found resource: db/migration/V2001__add_job_seekers.sql
- 2024-02-18 11:51:13.331 [, - main] DEBUG o.f.c.internal.scanner.classpath.ClassPathScanner - Found resource: db/migration/V2002__disability_info.sql
- 2024-02-18 11:51:13.331 [, - main] DEBUG o.f.c.internal.scanner.classpath.ClassPathScanner - Found resource: db/migration/V2003__add_user_document_access_record.sql
- 2024-02-18 11:51:13.331 [, - main] DEBUG o.f.c.internal.scanner.classpath.ClassPathScanner - Found resource: db/migration/V2004__add_rq_certs_rules.sql
- 2024-02-18 11:51:13.331 [, - main] DEBUG o.f.c.internal.scanner.classpath.ClassPathScanner - Found resource: db/migration/V2005__add_black_list.sql
- 2024-02-18 11:51:13.331 [, - main] DEBUG o.f.c.internal.scanner.classpath.ClassPathScanner - Found resource: db/migration/V2006__add_salary_rule_to_job.sql
- 2024-02-18 11:51:13.331 [, - main] DEBUG o.f.c.internal.scanner.classpath.ClassPathScanner - Found resource: db/migration/V2007__alter_job_desc_default_null.sql
- 2024-02-18 11:51:13.331 [, - main] DEBUG o.f.c.internal.scanner.classpath.ClassPathScanner - Found resource: db/migration/V2008__remodelling_enterprise_table.sql
- 2024-02-18 11:51:13.331 [, - main] DEBUG o.f.c.internal.scanner.classpath.ClassPathScanner - Found resource: db/migration/V2009__unique_enterprise_credit_code.sql
- 2024-02-18 11:51:13.331 [, - main] DEBUG o.f.c.internal.scanner.classpath.ClassPathScanner - Found resource: db/migration/V2010__add_enterprise_currency.sql
- 2024-02-18 11:51:13.331 [, - main] DEBUG o.f.c.internal.scanner.classpath.ClassPathScanner - Found resource: db/migration/V2011__modify_decimal_length.sql
- 2024-02-18 11:51:13.331 [, - main] DEBUG o.f.c.internal.scanner.classpath.ClassPathScanner - Found resource: db/migration/V2012__add_enterprise_industry_info.sql
- 2024-02-18 11:51:13.331 [, - main] DEBUG o.f.c.internal.scanner.classpath.ClassPathScanner - Found resource: db/migration/V2013__add_enterprise_score.sql
- 2024-02-18 11:51:13.331 [, - main] DEBUG o.f.c.internal.scanner.classpath.ClassPathScanner - Found resource: db/migration/V2014__add_job_seeker_share.sql
- 2024-02-18 11:51:13.331 [, - main] DEBUG o.f.c.internal.scanner.classpath.ClassPathScanner - Found resource: db/migration/V2__rbac_model.sql
- 2024-02-18 11:51:13.331 [, - main] DEBUG o.f.c.internal.scanner.classpath.ClassPathScanner - Found resource: db/migration/V3__resource_define.sql
- 2024-02-18 11:51:13.331 [, - main] DEBUG o.f.c.internal.scanner.classpath.ClassPathScanner - Found resource: db/migration/V4__certs.sql
- 2024-02-18 11:51:13.331 [, - main] DEBUG o.f.c.internal.scanner.classpath.ClassPathScanner - Found resource: db/migration/V5__audit_basic.sql
- 2024-02-18 11:51:13.331 [, - main] DEBUG o.f.c.internal.scanner.classpath.ClassPathScanner - Found resource: db/migration/V6__cert_ralationship.sql
- 2024-02-18 11:51:13.331 [, - main] DEBUG o.f.c.internal.scanner.classpath.ClassPathScanner - Found resource: db/migration/V7__alter_bigdecimal_digit.sql
- 2024-02-18 11:51:13.331 [, - main] DEBUG o.f.c.internal.scanner.classpath.ClassPathScanner - Scanning for classes at classpath:db/migration
- 2024-02-18 11:51:13.334 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/ (filename: )
- 2024-02-18 11:51:13.334 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/ (filename: )
- 2024-02-18 11:51:13.334 [, - main] DEBUG o.f.core.internal.resource.ResourceNameValidator - Validating V6__cert_ralationship.sql
- 2024-02-18 11:51:13.335 [, - main] DEBUG o.f.core.internal.resource.ResourceNameValidator - Validating V2003__add_user_document_access_record.sql
- 2024-02-18 11:51:13.335 [, - main] DEBUG o.f.core.internal.resource.ResourceNameValidator - Validating V5__audit_basic.sql
- 2024-02-18 11:51:13.335 [, - main] DEBUG o.f.core.internal.resource.ResourceNameValidator - Validating V2011__modify_decimal_length.sql
- 2024-02-18 11:51:13.335 [, - main] DEBUG o.f.core.internal.resource.ResourceNameValidator - Validating V1__postgres_helper_fun.sql
- 2024-02-18 11:51:13.335 [, - main] DEBUG o.f.core.internal.resource.ResourceNameValidator - Validating V2006__add_salary_rule_to_job.sql
- 2024-02-18 11:51:13.335 [, - main] DEBUG o.f.core.internal.resource.ResourceNameValidator - Validating V2010__add_enterprise_currency.sql
- 2024-02-18 11:51:13.335 [, - main] DEBUG o.f.core.internal.resource.ResourceNameValidator - Validating V2007__alter_job_desc_default_null.sql
- 2024-02-18 11:51:13.335 [, - main] DEBUG o.f.core.internal.resource.ResourceNameValidator - Validating V7__alter_bigdecimal_digit.sql
- 2024-02-18 11:51:13.335 [, - main] DEBUG o.f.core.internal.resource.ResourceNameValidator - Validating V2014__add_job_seeker_share.sql
- 2024-02-18 11:51:13.335 [, - main] DEBUG o.f.core.internal.resource.ResourceNameValidator - Validating V2004__add_rq_certs_rules.sql
- 2024-02-18 11:51:13.335 [, - main] DEBUG o.f.core.internal.resource.ResourceNameValidator - Validating V2008__remodelling_enterprise_table.sql
- 2024-02-18 11:51:13.335 [, - main] DEBUG o.f.core.internal.resource.ResourceNameValidator - Validating V2012__add_enterprise_industry_info.sql
- 2024-02-18 11:51:13.335 [, - main] DEBUG o.f.core.internal.resource.ResourceNameValidator - Validating V2005__add_black_list.sql
- 2024-02-18 11:51:13.335 [, - main] DEBUG o.f.core.internal.resource.ResourceNameValidator - Validating V2009__unique_enterprise_credit_code.sql
- 2024-02-18 11:51:13.335 [, - main] DEBUG o.f.core.internal.resource.ResourceNameValidator - Validating V2013__add_enterprise_score.sql
- 2024-02-18 11:51:13.335 [, - main] DEBUG o.f.core.internal.resource.ResourceNameValidator - Validating V2001__add_job_seekers.sql
- 2024-02-18 11:51:13.335 [, - main] DEBUG o.f.core.internal.resource.ResourceNameValidator - Validating V2002__disability_info.sql
- 2024-02-18 11:51:13.335 [, - main] DEBUG o.f.core.internal.resource.ResourceNameValidator - Validating V3__resource_define.sql
- 2024-02-18 11:51:13.335 [, - main] DEBUG o.f.core.internal.resource.ResourceNameValidator - Validating V2__rbac_model.sql
- 2024-02-18 11:51:13.335 [, - main] DEBUG o.f.core.internal.resource.ResourceNameValidator - Validating V4__certs.sql
- 2024-02-18 11:51:13.373 [, - main] DEBUG org.flywaydb.core.FlywayExecutor - Driver: PostgreSQL JDBC Driver 42.7.1
- 2024-02-18 11:51:13.373 [, - main] DEBUG org.flywaydb.core.FlywayExecutor - DDL Transactions Supported: true
- 2024-02-18 11:51:13.374 [, - main] DEBUG o.f.c.internal.schemahistory.SchemaHistoryFactory - Schemas:
- 2024-02-18 11:51:13.374 [, - main] DEBUG o.f.c.internal.schemahistory.SchemaHistoryFactory - Default schema: null
- 2024-02-18 11:51:13.391 [, - main] DEBUG o.f.c.internal.callback.SqlScriptCallbackFactory - Scanning for SQL callbacks ...
- 2024-02-18 11:51:13.391 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/ (filename: )
- 2024-02-18 11:51:13.391 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/ (filename: )
- 2024-02-18 11:51:13.402 [, - main] DEBUG org.flywaydb.core.internal.command.DbValidate - Validating migrations ...
- 2024-02-18 11:51:13.404 [, - main] DEBUG org.postgresql.jdbc.PgConnection - setAutoCommit = false
- 2024-02-18 11:51:13.406 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/ (filename: )
- 2024-02-18 11:51:13.406 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/ (filename: )
- 2024-02-18 11:51:13.443 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/V6__cert_ralationship.sql (filename: V6__cert_ralationship.sql)
- 2024-02-18 11:51:13.443 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/V2003__add_user_document_access_record.sql (filename: V2003__add_user_document_access_record.sql)
- 2024-02-18 11:51:13.443 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/V5__audit_basic.sql (filename: V5__audit_basic.sql)
- 2024-02-18 11:51:13.443 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/V2011__modify_decimal_length.sql (filename: V2011__modify_decimal_length.sql)
- 2024-02-18 11:51:13.443 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/V1__postgres_helper_fun.sql (filename: V1__postgres_helper_fun.sql)
- 2024-02-18 11:51:13.443 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/V2006__add_salary_rule_to_job.sql (filename: V2006__add_salary_rule_to_job.sql)
- 2024-02-18 11:51:13.443 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/V2010__add_enterprise_currency.sql (filename: V2010__add_enterprise_currency.sql)
- 2024-02-18 11:51:13.443 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/V2007__alter_job_desc_default_null.sql (filename: V2007__alter_job_desc_default_null.sql)
- 2024-02-18 11:51:13.443 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/V7__alter_bigdecimal_digit.sql (filename: V7__alter_bigdecimal_digit.sql)
- 2024-02-18 11:51:13.443 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/V2014__add_job_seeker_share.sql (filename: V2014__add_job_seeker_share.sql)
- 2024-02-18 11:51:13.443 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/V2004__add_rq_certs_rules.sql (filename: V2004__add_rq_certs_rules.sql)
- 2024-02-18 11:51:13.443 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/V2008__remodelling_enterprise_table.sql (filename: V2008__remodelling_enterprise_table.sql)
- 2024-02-18 11:51:13.443 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/V2012__add_enterprise_industry_info.sql (filename: V2012__add_enterprise_industry_info.sql)
- 2024-02-18 11:51:13.443 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/ (filename: )
- 2024-02-18 11:51:13.443 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/V2005__add_black_list.sql (filename: V2005__add_black_list.sql)
- 2024-02-18 11:51:13.443 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/V2009__unique_enterprise_credit_code.sql (filename: V2009__unique_enterprise_credit_code.sql)
- 2024-02-18 11:51:13.443 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/V2013__add_enterprise_score.sql (filename: V2013__add_enterprise_score.sql)
- 2024-02-18 11:51:13.443 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/ (filename: )
- 2024-02-18 11:51:13.443 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/V2001__add_job_seekers.sql (filename: V2001__add_job_seekers.sql)
- 2024-02-18 11:51:13.443 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/V2002__disability_info.sql (filename: V2002__disability_info.sql)
- 2024-02-18 11:51:13.443 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/V3__resource_define.sql (filename: V3__resource_define.sql)
- 2024-02-18 11:51:13.443 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/V2__rbac_model.sql (filename: V2__rbac_model.sql)
- 2024-02-18 11:51:13.443 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/V4__certs.sql (filename: V4__certs.sql)
- 2024-02-18 11:51:13.451 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/V6__cert_ralationship.sql (filename: V6__cert_ralationship.sql)
- 2024-02-18 11:51:13.451 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/V2003__add_user_document_access_record.sql (filename: V2003__add_user_document_access_record.sql)
- 2024-02-18 11:51:13.451 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/V5__audit_basic.sql (filename: V5__audit_basic.sql)
- 2024-02-18 11:51:13.451 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/V2011__modify_decimal_length.sql (filename: V2011__modify_decimal_length.sql)
- 2024-02-18 11:51:13.451 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/V1__postgres_helper_fun.sql (filename: V1__postgres_helper_fun.sql)
- 2024-02-18 11:51:13.451 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/V2006__add_salary_rule_to_job.sql (filename: V2006__add_salary_rule_to_job.sql)
- 2024-02-18 11:51:13.451 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/V2010__add_enterprise_currency.sql (filename: V2010__add_enterprise_currency.sql)
- 2024-02-18 11:51:13.451 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/V2007__alter_job_desc_default_null.sql (filename: V2007__alter_job_desc_default_null.sql)
- 2024-02-18 11:51:13.451 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/V7__alter_bigdecimal_digit.sql (filename: V7__alter_bigdecimal_digit.sql)
- 2024-02-18 11:51:13.451 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/V2014__add_job_seeker_share.sql (filename: V2014__add_job_seeker_share.sql)
- 2024-02-18 11:51:13.452 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/V2004__add_rq_certs_rules.sql (filename: V2004__add_rq_certs_rules.sql)
- 2024-02-18 11:51:13.452 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/V2008__remodelling_enterprise_table.sql (filename: V2008__remodelling_enterprise_table.sql)
- 2024-02-18 11:51:13.452 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/V2012__add_enterprise_industry_info.sql (filename: V2012__add_enterprise_industry_info.sql)
- 2024-02-18 11:51:13.452 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/ (filename: )
- 2024-02-18 11:51:13.452 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/V2005__add_black_list.sql (filename: V2005__add_black_list.sql)
- 2024-02-18 11:51:13.452 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/V2009__unique_enterprise_credit_code.sql (filename: V2009__unique_enterprise_credit_code.sql)
- 2024-02-18 11:51:13.452 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/V2013__add_enterprise_score.sql (filename: V2013__add_enterprise_score.sql)
- 2024-02-18 11:51:13.452 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/ (filename: )
- 2024-02-18 11:51:13.452 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/V2001__add_job_seekers.sql (filename: V2001__add_job_seekers.sql)
- 2024-02-18 11:51:13.452 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/V2002__disability_info.sql (filename: V2002__disability_info.sql)
- 2024-02-18 11:51:13.452 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/V3__resource_define.sql (filename: V3__resource_define.sql)
- 2024-02-18 11:51:13.452 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/V2__rbac_model.sql (filename: V2__rbac_model.sql)
- 2024-02-18 11:51:13.452 [, - main] DEBUG org.flywaydb.core.internal.scanner.Scanner - Filtering out resource: db/migration/V4__certs.sql (filename: V4__certs.sql)
- 2024-02-18 11:51:13.485 [, - HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@599fc44d
- 2024-02-18 11:51:13.487 [, - main] DEBUG org.postgresql.jdbc.PgConnection - setAutoCommit = true
- 2024-02-18 11:51:13.489 [, - main] DEBUG org.postgresql.jdbc.PgConnection - setAutoCommit = false
- 2024-02-18 11:51:13.493 [, - main] DEBUG org.flywaydb.core.internal.command.DbSchemas - Skipping creation of existing schema: "public"
- 2024-02-18 11:51:13.493 [, - main] DEBUG org.postgresql.jdbc.PgConnection - setAutoCommit = true
- 2024-02-18 11:51:13.506 [, - main] DEBUG org.postgresql.jdbc.PgConnection - setAutoCommit = false
- 2024-02-18 11:51:13.519 [, - HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - After adding stats (total=2, active=2, idle=0, waiting=0)
- 2024-02-18 11:51:13.520 [, - HikariPool-1 connection adder] DEBUG org.postgresql.Driver - Connecting with URL: jdbc:postgresql://postgres:5432/tnmaster
- 2024-02-18 11:51:13.520 [, - HikariPool-1 connection adder] DEBUG org.postgresql.jdbc.PgConnection - PostgreSQL JDBC Driver 42.7.1
- 2024-02-18 11:51:13.520 [, - HikariPool-1 connection adder] DEBUG org.postgresql.jdbc.PgConnection - setDefaultFetchSize = 0
- 2024-02-18 11:51:13.520 [, - HikariPool-1 connection adder] DEBUG org.postgresql.jdbc.PgConnection - setPrepareThreshold = 5
- 2024-02-18 11:51:13.520 [, - HikariPool-1 connection adder] DEBUG org.postgresql.core.v3.ConnectionFactoryImpl - Trying to establish a protocol version 3 connection to postgres:5432
- 2024-02-18 11:51:13.524 [, - HikariPool-1 connection adder] DEBUG org.postgresql.core.v3.ConnectionFactoryImpl - Receive Buffer Size is 65,536
- 2024-02-18 11:51:13.524 [, - HikariPool-1 connection adder] DEBUG org.postgresql.core.v3.ConnectionFactoryImpl - Send Buffer Size is 43,520
- 2024-02-18 11:51:13.527 [, - main] DEBUG org.postgresql.jdbc.PgConnection - setAutoCommit = true
- 2024-02-18 11:51:13.532 [, - main] DEBUG org.postgresql.jdbc.PgConnection - setAutoCommit = false
- 2024-02-18 11:51:13.539 [, - main] DEBUG org.postgresql.jdbc.PgConnection - setAutoCommit = true
- 2024-02-18 11:51:13.539 [, - main] DEBUG org.postgresql.jdbc.PgConnection - setAutoCommit = false
- 2024-02-18 11:51:13.540 [, - main] DEBUG org.postgresql.jdbc.PgConnection - setAutoCommit = true
- 2024-02-18 11:51:13.541 [, - main] DEBUG org.flywaydb.core.FlywayExecutor - Memory usage: 54 of 111M
- 2024-02-18 11:51:13.543 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'dataSourceScriptDatabaseInitializer'
- 2024-02-18 11:51:13.543 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.sql.init.DataSourceInitializationConfiguration'
- 2024-02-18 11:51:13.547 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties'
- 2024-02-18 11:51:13.560 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'dataSource'
- 2024-02-18 11:51:13.560 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'dataSourceScriptDatabaseInitializer' via factory method to bean named 'spring.sql.init-org.springframework.boot.autoconfigure.sql.init.SqlInitializationProperties'
- 2024-02-18 11:51:13.566 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.config.internalBeanConfigurerAspect'
- 2024-02-18 11:51:13.572 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'entityManagerFactory'
- 2024-02-18 11:51:13.572 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration'
- 2024-02-18 11:51:13.574 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.jpa-org.springframework.boot.autoconfigure.orm.jpa.JpaProperties'
- 2024-02-18 11:51:13.589 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.jpa.hibernate-org.springframework.boot.autoconfigure.orm.jpa.HibernateProperties'
- 2024-02-18 11:51:13.594 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'dataSource'
- 2024-02-18 11:51:13.594 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - 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-02-18 11:51:13.594 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@46baf579'
- 2024-02-18 11:51:13.594 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - 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-02-18 11:51:13.597 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'hikariPoolDataSourceMetadataProvider'
- 2024-02-18 11:51:13.597 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration'
- 2024-02-18 11:51:13.622 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'entityManagerFactoryBuilder'
- 2024-02-18 11:51:13.623 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jpaVendorAdapter'
- 2024-02-18 11:51:13.629 [, - HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@2dcbbfdc
- 2024-02-18 11:51:13.634 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'entityManagerFactoryBuilder' via factory method to bean named 'jpaVendorAdapter'
- 2024-02-18 11:51:13.638 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'persistenceManagedTypes'
- 2024-02-18 11:51:13.639 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@46baf579'
- 2024-02-18 11:51:13.639 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'persistenceManagedTypes' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@3670f00'
- 2024-02-18 11:51:13.640 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.domain.EntityScanPackages'
- 2024-02-18 11:51:13.659 [, - HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - After adding stats (total=3, active=0, idle=3, waiting=0)
- 2024-02-18 11:51:13.659 [, - HikariPool-1 connection adder] DEBUG org.postgresql.Driver - Connecting with URL: jdbc:postgresql://postgres:5432/tnmaster
- 2024-02-18 11:51:13.659 [, - HikariPool-1 connection adder] DEBUG org.postgresql.jdbc.PgConnection - PostgreSQL JDBC Driver 42.7.1
- 2024-02-18 11:51:13.659 [, - HikariPool-1 connection adder] DEBUG org.postgresql.jdbc.PgConnection - setDefaultFetchSize = 0
- 2024-02-18 11:51:13.659 [, - HikariPool-1 connection adder] DEBUG org.postgresql.jdbc.PgConnection - setPrepareThreshold = 5
- 2024-02-18 11:51:13.659 [, - HikariPool-1 connection adder] DEBUG org.postgresql.core.v3.ConnectionFactoryImpl - Trying to establish a protocol version 3 connection to postgres:5432
- 2024-02-18 11:51:13.661 [, - HikariPool-1 connection adder] DEBUG org.postgresql.core.v3.ConnectionFactoryImpl - Receive Buffer Size is 65,536
- 2024-02-18 11:51:13.662 [, - HikariPool-1 connection adder] DEBUG org.postgresql.core.v3.ConnectionFactoryImpl - Send Buffer Size is 43,520
- 2024-02-18 11:51:13.672 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'entityManagerFactoryBuilder'
- 2024-02-18 11:51:13.672 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'entityManagerFactory' via factory method to bean named 'persistenceManagedTypes'
- 2024-02-18 11:51:13.679 [, - main] DEBUG o.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource
- 2024-02-18 11:51:13.693 [, - main] DEBUG o.s.orm.jpa.LocalContainerEntityManagerFactoryBean - Building JPA container EntityManagerFactory for persistence unit 'default'
- 2024-02-18 11:51:13.704 [, - main] DEBUG org.hibernate.jpa.internal.util.LogHelper - PersistenceUnitInfo [
- name: default
- persistence provider classname: null
- classloader: org.springframework.boot.loader.launch.LaunchedClassLoader@33a10788
- excludeUnlistedClasses: true
- JTA datasource: null
- Non JTA datasource: HikariDataSource (HikariPool-1)
- Transaction type: RESOURCE_LOCAL
- PU root URL: nested:/app/tnmaster-server-1.0.jar/!BOOT-INF/classes/
- Shared Cache Mode: UNSPECIFIED
- Validation Mode: AUTO
- Jar files URLs []
- Managed classes names [
- com.tnmaster.entities.AnonymousCertGroup
- com.tnmaster.entities.BlackList
- com.tnmaster.entities.BlackListBlackListTag
- com.tnmaster.entities.BlackListEvidence
- com.tnmaster.entities.BlackListRelation
- com.tnmaster.entities.BlackListTag
- com.tnmaster.entities.BlackListVo
- com.tnmaster.entities.CertAccess
- com.tnmaster.entities.CertShowVo
- com.tnmaster.entities.DisAccountVo
- com.tnmaster.entities.DisInfo
- com.tnmaster.entities.DisUserInfoVo
- com.tnmaster.entities.EmploymentRecord
- com.tnmaster.entities.Enterprise
- com.tnmaster.entities.EnterpriseEmail
- com.tnmaster.entities.EnterpriseIndustry
- com.tnmaster.entities.EnterprisePhone
- com.tnmaster.entities.EnterpriseUser
- com.tnmaster.entities.FullEnterprise
- com.tnmaster.entities.Industry
- com.tnmaster.entities.Job
- com.tnmaster.entities.JobJobTag
- com.tnmaster.entities.JobRqCertRule
- com.tnmaster.entities.JobRuleAddress
- com.tnmaster.entities.JobSeeker
- com.tnmaster.entities.JobSeekerSuperior
- com.tnmaster.entities.JobTag
- com.tnmaster.entities.RegShare
- com.tnmaster.entities.RqCertRule
- com.tnmaster.entities.SuperAnonymousCertGroup
- com.tnmaster.entities.SuperBlackList
- com.tnmaster.entities.SuperBlackListBlackListTag
- com.tnmaster.entities.SuperBlackListEvidence
- com.tnmaster.entities.SuperBlackListRelation
- com.tnmaster.entities.SuperBlackListTag
- com.tnmaster.entities.SuperCertAccess
- com.tnmaster.entities.SuperDisInfo
- com.tnmaster.entities.SuperEmploymentRecord
- com.tnmaster.entities.SuperEnterprise
- com.tnmaster.entities.SuperEnterpriseEmail
- com.tnmaster.entities.SuperEnterpriseIndustry
- com.tnmaster.entities.SuperEnterprisePhone
- com.tnmaster.entities.SuperEnterpriseUser
- com.tnmaster.entities.SuperIndustry
- com.tnmaster.entities.SuperJob
- com.tnmaster.entities.SuperJobJobTag
- com.tnmaster.entities.SuperJobRqCertRule
- com.tnmaster.entities.SuperJobRuleAddress
- com.tnmaster.entities.SuperJobSeeker
- com.tnmaster.entities.SuperJobSeekerSuperior
- com.tnmaster.entities.SuperJobTag
- com.tnmaster.entities.SuperRegShare
- com.tnmaster.entities.SuperRqCertRule
- com.tnmaster.entities.SuperWorkExperience
- com.tnmaster.entities.WorkExperience
- io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole
- io.github.truenine.composeserver.rds.entities.relationship.RolePermissions
- io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup
- io.github.truenine.composeserver.rds.entities.Address
- io.github.truenine.composeserver.rds.entities.AddressDetails
- io.github.truenine.composeserver.rds.entities.Api
- io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity
- io.github.truenine.composeserver.rds.entities.Attachment
- io.github.truenine.composeserver.rds.entities.Audit
- io.github.truenine.composeserver.rds.entities.AuditAttachment
- io.github.truenine.composeserver.rds.entities.cert.BankCard
- io.github.truenine.composeserver.rds.entities.cert.BizCert
- io.github.truenine.composeserver.rds.entities.cert.Cert
- io.github.truenine.composeserver.rds.entities.cert.DisCert2
- io.github.truenine.composeserver.rds.entities.cert.HouseholdCert
- io.github.truenine.composeserver.rds.entities.cert.Idcard2
- io.github.truenine.composeserver.rds.entities.cert.SuperBankCard
- io.github.truenine.composeserver.rds.entities.cert.SuperBizCert
- io.github.truenine.composeserver.rds.entities.cert.SuperCert
- io.github.truenine.composeserver.rds.entities.cert.SuperDisCert2
- io.github.truenine.composeserver.rds.entities.cert.SuperHouseholdCert
- io.github.truenine.composeserver.rds.entities.cert.SuperIdcard2
- io.github.truenine.composeserver.rds.entities.Dept
- io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory
- io.github.truenine.composeserver.rds.entities.FullAddress
- io.github.truenine.composeserver.rds.entities.FullAddressDetails
- io.github.truenine.composeserver.rds.entities.FullRole
- io.github.truenine.composeserver.rds.entities.FullRoleGroup
- io.github.truenine.composeserver.rds.entities.FullUserInfo
- io.github.truenine.composeserver.rds.entities.FullUsr
- io.github.truenine.composeserver.rds.entities.LinkedAttachment
- io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails
- io.github.truenine.composeserver.rds.entities.Permissions
- io.github.truenine.composeserver.rds.entities.Role
- io.github.truenine.composeserver.rds.entities.RoleGroup
- io.github.truenine.composeserver.rds.entities.SuperAddress
- io.github.truenine.composeserver.rds.entities.SuperAddressDetails
- io.github.truenine.composeserver.rds.entities.SuperAttachment
- io.github.truenine.composeserver.rds.entities.SuperAudit
- io.github.truenine.composeserver.rds.entities.SuperAuditAttachment
- io.github.truenine.composeserver.rds.entities.SuperFlywaySchemaHistory
- io.github.truenine.composeserver.rds.entities.SuperRole
- io.github.truenine.composeserver.rds.entities.SuperRoleGroup
- io.github.truenine.composeserver.rds.entities.SuperUserInfo
- io.github.truenine.composeserver.rds.entities.SuperUsr
- io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord
- io.github.truenine.composeserver.rds.entities.UserDept
- io.github.truenine.composeserver.rds.entities.UserInfo
- io.github.truenine.composeserver.rds.entities.Usr
- io.github.truenine.composeserver.rds.core.entities.RefAnyEntity
- io.github.truenine.composeserver.rds.core.entities.TreeAnyRefEntity
- io.github.truenine.composeserver.rds.core.entities.AnyEntity
- io.github.truenine.composeserver.rds.core.entities.IEntity
- io.github.truenine.composeserver.rds.core.entities.TreeEntity]
- Mapping files names []
- Properties []
- 2024-02-18 11:51:13.711 [, - main] DEBUG o.h.integrator.internal.IntegratorServiceImpl - Adding Integrator [org.hibernate.boot.beanvalidation.BeanValidationIntegrator].
- 2024-02-18 11:51:13.712 [, - main] DEBUG o.h.integrator.internal.IntegratorServiceImpl - Adding Integrator [org.hibernate.cache.internal.CollectionCacheInvalidator].
- 2024-02-18 11:51:13.742 [, - main] DEBUG org.hibernate.cfg.Environment - HHH000206: 'hibernate.properties' not found
- 2024-02-18 11:51:13.758 [, - main] DEBUG org.hibernate.orm.idgen.factory - Registering IdentifierGenerator strategy [uuid2] -> [org.hibernate.id.UUIDGenerator]
- 2024-02-18 11:51:13.758 [, - main] DEBUG org.hibernate.orm.idgen.factory - Registering IdentifierGenerator strategy [guid] -> [org.hibernate.id.GUIDGenerator]
- 2024-02-18 11:51:13.759 [, - main] DEBUG org.hibernate.orm.idgen.factory - Registering IdentifierGenerator strategy [uuid] -> [org.hibernate.id.UUIDHexGenerator]
- 2024-02-18 11:51:13.759 [, - main] DEBUG org.hibernate.orm.idgen.factory - Registering IdentifierGenerator strategy [uuid.hex] -> [org.hibernate.id.UUIDHexGenerator]
- 2024-02-18 11:51:13.759 [, - main] DEBUG org.hibernate.orm.idgen.factory - Registering IdentifierGenerator strategy [assigned] -> [org.hibernate.id.Assigned]
- 2024-02-18 11:51:13.760 [, - main] DEBUG org.hibernate.orm.idgen.factory - Registering IdentifierGenerator strategy [identity] -> [org.hibernate.id.IdentityGenerator]
- 2024-02-18 11:51:13.760 [, - main] DEBUG org.hibernate.orm.idgen.factory - Registering IdentifierGenerator strategy [select] -> [org.hibernate.id.SelectGenerator]
- 2024-02-18 11:51:13.761 [, - main] DEBUG org.hibernate.orm.idgen.factory - Registering IdentifierGenerator strategy [sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator]
- 2024-02-18 11:51:13.761 [, - main] DEBUG org.hibernate.orm.idgen.factory - Registering IdentifierGenerator strategy [increment] -> [org.hibernate.id.IncrementGenerator]
- 2024-02-18 11:51:13.761 [, - main] DEBUG org.hibernate.orm.idgen.factory - Registering IdentifierGenerator strategy [foreign] -> [org.hibernate.id.ForeignGenerator]
- 2024-02-18 11:51:13.761 [, - main] DEBUG org.hibernate.orm.idgen.factory - Registering IdentifierGenerator strategy [enhanced-sequence] -> [org.hibernate.id.enhanced.SequenceStyleGenerator]
- 2024-02-18 11:51:13.762 [, - main] DEBUG org.hibernate.orm.idgen.factory - Registering IdentifierGenerator strategy [enhanced-table] -> [org.hibernate.id.enhanced.TableGenerator]
- 2024-02-18 11:51:13.768 [, - main] DEBUG o.hibernate.cache.internal.RegionFactoryInitiator - Cannot default RegionFactory based on registered strategies as `[]` RegionFactory strategies were registered
- 2024-02-18 11:51:13.774 [, - HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@669a90b3
- 2024-02-18 11:51:13.804 [, - HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - After adding stats (total=4, active=0, idle=4, waiting=0)
- 2024-02-18 11:51:13.805 [, - HikariPool-1 connection adder] DEBUG org.postgresql.Driver - Connecting with URL: jdbc:postgresql://postgres:5432/tnmaster
- 2024-02-18 11:51:13.805 [, - HikariPool-1 connection adder] DEBUG org.postgresql.jdbc.PgConnection - PostgreSQL JDBC Driver 42.7.1
- 2024-02-18 11:51:13.805 [, - HikariPool-1 connection adder] DEBUG org.postgresql.jdbc.PgConnection - setDefaultFetchSize = 0
- 2024-02-18 11:51:13.805 [, - HikariPool-1 connection adder] DEBUG org.postgresql.jdbc.PgConnection - setPrepareThreshold = 5
- 2024-02-18 11:51:13.805 [, - HikariPool-1 connection adder] DEBUG org.postgresql.core.v3.ConnectionFactoryImpl - Trying to establish a protocol version 3 connection to postgres:5432
- 2024-02-18 11:51:13.808 [, - HikariPool-1 connection adder] DEBUG org.postgresql.core.v3.ConnectionFactoryImpl - Receive Buffer Size is 65,536
- 2024-02-18 11:51:13.808 [, - HikariPool-1 connection adder] DEBUG org.postgresql.core.v3.ConnectionFactoryImpl - Send Buffer Size is 43,520
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@5702232d
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration boolean -> org.hibernate.type.BasicTypeReference@5702232d
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Boolean -> org.hibernate.type.BasicTypeReference@5702232d
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration numeric_boolean -> org.hibernate.type.BasicTypeReference@5cbf9aee
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.NumericBooleanConverter -> org.hibernate.type.BasicTypeReference@5cbf9aee
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration true_false -> org.hibernate.type.BasicTypeReference@35920655
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.TrueFalseConverter -> org.hibernate.type.BasicTypeReference@35920655
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration yes_no -> org.hibernate.type.BasicTypeReference@27558dee
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.YesNoConverter -> org.hibernate.type.BasicTypeReference@27558dee
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@6108c962
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration byte -> org.hibernate.type.BasicTypeReference@6108c962
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Byte -> org.hibernate.type.BasicTypeReference@6108c962
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration binary -> org.hibernate.type.BasicTypeReference@41c05747
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration byte[] -> org.hibernate.type.BasicTypeReference@41c05747
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration [B -> org.hibernate.type.BasicTypeReference@41c05747
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration binary_wrapper -> org.hibernate.type.BasicTypeReference@64455184
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-binary -> org.hibernate.type.BasicTypeReference@64455184
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration image -> org.hibernate.type.BasicTypeReference@6f749a1f
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration blob -> org.hibernate.type.BasicTypeReference@48900d4a
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Blob -> org.hibernate.type.BasicTypeReference@48900d4a
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob -> org.hibernate.type.BasicTypeReference@ba90170
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration materialized_blob_wrapper -> org.hibernate.type.BasicTypeReference@452ea8f0
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@e417628
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration short -> org.hibernate.type.BasicTypeReference@e417628
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Short -> org.hibernate.type.BasicTypeReference@e417628
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration integer -> org.hibernate.type.BasicTypeReference@46f3d0f7
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration int -> org.hibernate.type.BasicTypeReference@46f3d0f7
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Integer -> org.hibernate.type.BasicTypeReference@46f3d0f7
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@592fbd8
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration long -> org.hibernate.type.BasicTypeReference@592fbd8
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Long -> org.hibernate.type.BasicTypeReference@592fbd8
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@354baab2
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration float -> org.hibernate.type.BasicTypeReference@354baab2
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Float -> org.hibernate.type.BasicTypeReference@354baab2
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@30be6a05
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration double -> org.hibernate.type.BasicTypeReference@30be6a05
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Double -> org.hibernate.type.BasicTypeReference@30be6a05
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration big_integer -> org.hibernate.type.BasicTypeReference@6812708d
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigInteger -> org.hibernate.type.BasicTypeReference@6812708d
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration big_decimal -> org.hibernate.type.BasicTypeReference@7a4c1a6c
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.math.BigDecimal -> org.hibernate.type.BasicTypeReference@7a4c1a6c
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration character -> org.hibernate.type.BasicTypeReference@123a21ad
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration char -> org.hibernate.type.BasicTypeReference@123a21ad
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Character -> org.hibernate.type.BasicTypeReference@123a21ad
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration character_nchar -> org.hibernate.type.BasicTypeReference@51179fad
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration string -> org.hibernate.type.BasicTypeReference@2afa1b1a
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.String -> org.hibernate.type.BasicTypeReference@2afa1b1a
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration nstring -> org.hibernate.type.BasicTypeReference@30fffb53
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration characters -> org.hibernate.type.BasicTypeReference@738b93a8
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration char[] -> org.hibernate.type.BasicTypeReference@738b93a8
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration [C -> org.hibernate.type.BasicTypeReference@738b93a8
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration wrapper-characters -> org.hibernate.type.BasicTypeReference@1e8c9083
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration text -> org.hibernate.type.BasicTypeReference@64547a83
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration ntext -> org.hibernate.type.BasicTypeReference@2b3e2039
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration clob -> org.hibernate.type.BasicTypeReference@487f025
- 2024-02-18 11:51:13.823 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Clob -> org.hibernate.type.BasicTypeReference@487f025
- 2024-02-18 11:51:13.824 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration nclob -> org.hibernate.type.BasicTypeReference@7ef570be
- 2024-02-18 11:51:13.824 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.NClob -> org.hibernate.type.BasicTypeReference@7ef570be
- 2024-02-18 11:51:13.824 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob -> org.hibernate.type.BasicTypeReference@39329d81
- 2024-02-18 11:51:13.824 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_char_array -> org.hibernate.type.BasicTypeReference@63574d76
- 2024-02-18 11:51:13.824 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration materialized_clob_character_array -> org.hibernate.type.BasicTypeReference@dcf64d2
- 2024-02-18 11:51:13.824 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob -> org.hibernate.type.BasicTypeReference@20bc3e7f
- 2024-02-18 11:51:13.824 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_character_array -> org.hibernate.type.BasicTypeReference@7959fbe3
- 2024-02-18 11:51:13.824 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration materialized_nclob_char_array -> org.hibernate.type.BasicTypeReference@75c0e6be
- 2024-02-18 11:51:13.824 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> org.hibernate.type.BasicTypeReference@3dfe520
- 2024-02-18 11:51:13.824 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> org.hibernate.type.BasicTypeReference@3dfe520
- 2024-02-18 11:51:13.824 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration LocalDateTime -> org.hibernate.type.BasicTypeReference@42516ce2
- 2024-02-18 11:51:13.824 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDateTime -> org.hibernate.type.BasicTypeReference@42516ce2
- 2024-02-18 11:51:13.824 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration LocalDate -> org.hibernate.type.BasicTypeReference@74e111a8
- 2024-02-18 11:51:13.824 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalDate -> org.hibernate.type.BasicTypeReference@74e111a8
- 2024-02-18 11:51:13.824 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration LocalTime -> org.hibernate.type.BasicTypeReference@6e6ec9c
- 2024-02-18 11:51:13.824 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.time.LocalTime -> org.hibernate.type.BasicTypeReference@6e6ec9c
- 2024-02-18 11:51:13.824 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> org.hibernate.type.BasicTypeReference@7aecff85
- 2024-02-18 11:51:13.824 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> org.hibernate.type.BasicTypeReference@7aecff85
- 2024-02-18 11:51:13.824 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@3393aa46
- 2024-02-18 11:51:13.824 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@4f0381cd
- 2024-02-18 11:51:13.824 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> org.hibernate.type.BasicTypeReference@7eb006bd
- 2024-02-18 11:51:13.824 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> org.hibernate.type.BasicTypeReference@7eb006bd
- 2024-02-18 11:51:13.824 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeUtc -> org.hibernate.type.BasicTypeReference@633dce39
- 2024-02-18 11:51:13.824 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithTimezone -> org.hibernate.type.BasicTypeReference@4dd28982
- 2024-02-18 11:51:13.824 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@1e8c741c
- 2024-02-18 11:51:13.824 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> org.hibernate.type.BasicTypeReference@60f70c9e
- 2024-02-18 11:51:13.824 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> org.hibernate.type.BasicTypeReference@60f70c9e
- 2024-02-18 11:51:13.824 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithTimezone -> org.hibernate.type.BasicTypeReference@6db64abf
- 2024-02-18 11:51:13.824 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTimeWithoutTimezone -> org.hibernate.type.BasicTypeReference@34714012
- 2024-02-18 11:51:13.824 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration date -> org.hibernate.type.BasicTypeReference@49a0fe14
- 2024-02-18 11:51:13.824 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Date -> org.hibernate.type.BasicTypeReference@49a0fe14
- 2024-02-18 11:51:13.824 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration time -> org.hibernate.type.BasicTypeReference@11eb8842
- 2024-02-18 11:51:13.824 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Time -> org.hibernate.type.BasicTypeReference@11eb8842
- 2024-02-18 11:51:13.825 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration timestamp -> org.hibernate.type.BasicTypeReference@4ed7db72
- 2024-02-18 11:51:13.825 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.sql.Timestamp -> org.hibernate.type.BasicTypeReference@4ed7db72
- 2024-02-18 11:51:13.825 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Date -> org.hibernate.type.BasicTypeReference@4ed7db72
- 2024-02-18 11:51:13.825 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration calendar -> org.hibernate.type.BasicTypeReference@7018636a
- 2024-02-18 11:51:13.825 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Calendar -> org.hibernate.type.BasicTypeReference@7018636a
- 2024-02-18 11:51:13.825 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.GregorianCalendar -> org.hibernate.type.BasicTypeReference@7018636a
- 2024-02-18 11:51:13.825 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration calendar_date -> org.hibernate.type.BasicTypeReference@3e866323
- 2024-02-18 11:51:13.825 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration calendar_time -> org.hibernate.type.BasicTypeReference@73624529
- 2024-02-18 11:51:13.825 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration instant -> org.hibernate.type.BasicTypeReference@31e1c7c
- 2024-02-18 11:51:13.825 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Instant -> org.hibernate.type.BasicTypeReference@31e1c7c
- 2024-02-18 11:51:13.825 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration uuid -> org.hibernate.type.BasicTypeReference@30ae3c46
- 2024-02-18 11:51:13.825 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.UUID -> org.hibernate.type.BasicTypeReference@30ae3c46
- 2024-02-18 11:51:13.825 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration pg-uuid -> org.hibernate.type.BasicTypeReference@30ae3c46
- 2024-02-18 11:51:13.825 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration uuid-binary -> org.hibernate.type.BasicTypeReference@3dbcde0b
- 2024-02-18 11:51:13.825 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration uuid-char -> org.hibernate.type.BasicTypeReference@5c168f98
- 2024-02-18 11:51:13.825 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration class -> org.hibernate.type.BasicTypeReference@2f98859a
- 2024-02-18 11:51:13.825 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Class -> org.hibernate.type.BasicTypeReference@2f98859a
- 2024-02-18 11:51:13.825 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration currency -> org.hibernate.type.BasicTypeReference@6e95c023
- 2024-02-18 11:51:13.825 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration Currency -> org.hibernate.type.BasicTypeReference@6e95c023
- 2024-02-18 11:51:13.825 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Currency -> org.hibernate.type.BasicTypeReference@6e95c023
- 2024-02-18 11:51:13.825 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration locale -> org.hibernate.type.BasicTypeReference@3582077c
- 2024-02-18 11:51:13.825 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.Locale -> org.hibernate.type.BasicTypeReference@3582077c
- 2024-02-18 11:51:13.825 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration serializable -> org.hibernate.type.BasicTypeReference@5d00241b
- 2024-02-18 11:51:13.825 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.io.Serializable -> org.hibernate.type.BasicTypeReference@5d00241b
- 2024-02-18 11:51:13.825 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration timezone -> org.hibernate.type.BasicTypeReference@365fde74
- 2024-02-18 11:51:13.825 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.util.TimeZone -> org.hibernate.type.BasicTypeReference@365fde74
- 2024-02-18 11:51:13.825 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration ZoneOffset -> org.hibernate.type.BasicTypeReference@760b9444
- 2024-02-18 11:51:13.825 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZoneOffset -> org.hibernate.type.BasicTypeReference@760b9444
- 2024-02-18 11:51:13.825 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration url -> org.hibernate.type.BasicTypeReference@5397d41e
- 2024-02-18 11:51:13.825 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.net.URL -> org.hibernate.type.BasicTypeReference@5397d41e
- 2024-02-18 11:51:13.825 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration vector -> org.hibernate.type.BasicTypeReference@f6b128b
- 2024-02-18 11:51:13.825 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration row_version -> org.hibernate.type.BasicTypeReference@470fc16c
- 2024-02-18 11:51:13.828 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration object -> org.hibernate.type.JavaObjectType@7c424dfe
- 2024-02-18 11:51:13.828 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@7c424dfe
- 2024-02-18 11:51:13.829 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration null -> org.hibernate.type.NullType@6f959640
- 2024-02-18 11:51:13.829 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_date -> org.hibernate.type.BasicTypeReference@5fdebe73
- 2024-02-18 11:51:13.829 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_time -> org.hibernate.type.BasicTypeReference@6919a8a
- 2024-02-18 11:51:13.829 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_timestamp -> org.hibernate.type.BasicTypeReference@23c0fcf0
- 2024-02-18 11:51:13.829 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar -> org.hibernate.type.BasicTypeReference@60a4595e
- 2024-02-18 11:51:13.829 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_date -> org.hibernate.type.BasicTypeReference@4a234e1f
- 2024-02-18 11:51:13.829 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_calendar_time -> org.hibernate.type.BasicTypeReference@406cc81b
- 2024-02-18 11:51:13.829 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_binary -> org.hibernate.type.BasicTypeReference@64ef9b9a
- 2024-02-18 11:51:13.829 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration imm_serializable -> org.hibernate.type.BasicTypeReference@264340f0
- 2024-02-18 11:51:13.833 [, - main] DEBUG org.hibernate.boot.internal.BootstrapContextImpl - Injecting JPA temp ClassLoader [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@2bd67cf9] into BootstrapContext; was [null]
- 2024-02-18 11:51:13.833 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - ClassLoaderAccessImpl#injectTempClassLoader(org.springframework.instrument.classloading.SimpleThrowawayClassLoader@2bd67cf9) [was null]
- 2024-02-18 11:51:13.833 [, - main] DEBUG org.hibernate.boot.internal.BootstrapContextImpl - Injecting ScanEnvironment [org.hibernate.jpa.boot.internal.StandardJpaScanEnvironmentImpl@18f8c76d] into BootstrapContext; was [null]
- 2024-02-18 11:51:13.833 [, - main] DEBUG org.hibernate.boot.internal.BootstrapContextImpl - Injecting ScanOptions [org.hibernate.boot.archive.scan.internal.StandardScanOptions@383d2e2d] into BootstrapContext; was [org.hibernate.boot.archive.scan.internal.StandardScanOptions@7c59f315]
- 2024-02-18 11:51:13.909 [, - HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@78fc264e
- 2024-02-18 11:51:13.939 [, - HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - After adding stats (total=5, active=0, idle=5, waiting=0)
- 2024-02-18 11:51:14.040 [, - main] DEBUG org.hibernate.boot.internal.BootstrapContextImpl - Injecting JPA temp ClassLoader [null] into BootstrapContext; was [org.springframework.instrument.classloading.SimpleThrowawayClassLoader@2bd67cf9]
- 2024-02-18 11:51:14.040 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - ClassLoaderAccessImpl#injectTempClassLoader(null) [was org.springframework.instrument.classloading.SimpleThrowawayClassLoader@2bd67cf9]
- 2024-02-18 11:51:14.060 [, - main] DEBUG o.h.e.jdbc.env.internal.JdbcEnvironmentInitiator - Database ->
- name : PostgreSQL
- version : 16.2
- major : 16
- minor : 2
- 2024-02-18 11:51:14.060 [, - main] DEBUG o.h.e.jdbc.env.internal.JdbcEnvironmentInitiator - Driver ->
- name : PostgreSQL JDBC Driver
- version : 42.7.1
- major : 42
- minor : 7
- 2024-02-18 11:51:14.060 [, - main] DEBUG o.h.e.jdbc.env.internal.JdbcEnvironmentInitiator - JDBC version : 4.2
- 2024-02-18 11:51:14.100 [, - main] DEBUG org.hibernate.orm.dialect - HHH035001: Using dialect: org.hibernate.dialect.PostgreSQLDialect, version: 16.2
- 2024-02-18 11:51:14.104 [, - main] DEBUG o.h.engine.jdbc.env.spi.IdentifierHelperBuilder - JDBC driver metadata reported database stores quoted identifiers in neither upper, lower nor mixed case
- 2024-02-18 11:51:14.111 [, - main] DEBUG org.hibernate.orm.jdbc.lob - HHH10010004: Disabling contextual LOB creation as Dialect reported it is not supported
- 2024-02-18 11:51:14.120 [, - main] DEBUG o.h.type.descriptor.sql.spi.DdlTypeRegistry - addDescriptor(2003, org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@4e09c3b0) replaced previous registration(org.hibernate.type.descriptor.sql.internal.ArrayDdlTypeImpl@64f34c91)
- 2024-02-18 11:51:14.121 [, - main] DEBUG o.h.type.descriptor.sql.spi.DdlTypeRegistry - addDescriptor(6, org.hibernate.type.descriptor.sql.internal.CapacityDependentDdlType@158f0af4) replaced previous registration(org.hibernate.type.descriptor.sql.internal.DdlTypeImpl@7a174e4b)
- 2024-02-18 11:51:14.122 [, - main] DEBUG o.h.type.descriptor.jdbc.spi.JdbcTypeRegistry - addDescriptor(2004, BlobTypeDescriptor(BLOB_BINDING)) replaced previous registration(BlobTypeDescriptor(DEFAULT))
- 2024-02-18 11:51:14.122 [, - main] DEBUG o.h.type.descriptor.jdbc.spi.JdbcTypeRegistry - addDescriptor(2005, ClobTypeDescriptor(CLOB_BINDING)) replaced previous registration(ClobTypeDescriptor(DEFAULT))
- 2024-02-18 11:51:14.128 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration JAVA_OBJECT -> org.hibernate.type.JavaObjectType@1b2213b2
- 2024-02-18 11:51:14.129 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.lang.Object -> org.hibernate.type.JavaObjectType@1b2213b2
- 2024-02-18 11:51:14.129 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Type registration key [java.lang.Object] overrode previous entry : `org.hibernate.type.JavaObjectType@7c424dfe`
- 2024-02-18 11:51:14.132 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.DurationType -> basicType@1(java.time.Duration,3015)
- 2024-02-18 11:51:14.132 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration Duration -> basicType@1(java.time.Duration,3015)
- 2024-02-18 11:51:14.132 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.time.Duration -> basicType@1(java.time.Duration,3015)
- 2024-02-18 11:51:14.136 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetDateTimeType -> basicType@2(java.time.OffsetDateTime,3003)
- 2024-02-18 11:51:14.136 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003)
- 2024-02-18 11:51:14.136 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetDateTime -> basicType@2(java.time.OffsetDateTime,3003)
- 2024-02-18 11:51:14.136 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.ZonedDateTimeType -> basicType@3(java.time.ZonedDateTime,3003)
- 2024-02-18 11:51:14.136 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003)
- 2024-02-18 11:51:14.136 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.time.ZonedDateTime -> basicType@3(java.time.ZonedDateTime,3003)
- 2024-02-18 11:51:14.137 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration org.hibernate.type.OffsetTimeType -> basicType@4(java.time.OffsetTime,3007)
- 2024-02-18 11:51:14.137 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration OffsetTime -> basicType@4(java.time.OffsetTime,3007)
- 2024-02-18 11:51:14.137 [, - main] DEBUG org.hibernate.type.BasicTypeRegistry - Adding type registration java.time.OffsetTime -> basicType@4(java.time.OffsetTime,3007)
- 2024-02-18 11:51:14.138 [, - main] DEBUG org.hibernate.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@652855c4] to MetadataBuildingContext [org.hibernate.boot.internal.MetadataBuildingContextRootImpl@619dc070]
- 2024-02-18 11:51:14.199 [, - main] DEBUG org.hibernate.boot.model.relational.Namespace - Created database namespace [logicalName=Name{catalog=null, schema=null}, physicalName=Name{catalog=null, schema=null}]
- 2024-02-18 11:51:14.204 [, - main] DEBUG o.h.b.m.s.i.a.AnnotationMetadataSourceProcessorImpl - Skipping explicit MappedSuperclass com.tnmaster.entities.SuperAnonymousCertGroup, the class will be discovered analyzing the implementing class
- 2024-02-18 11:51:14.204 [, - main] DEBUG o.h.b.m.s.i.a.AnnotationMetadataSourceProcessorImpl - Skipping explicit MappedSuperclass com.tnmaster.entities.SuperBlackList, the class will be discovered analyzing the implementing class
- 2024-02-18 11:51:14.204 [, - main] DEBUG o.h.b.m.s.i.a.AnnotationMetadataSourceProcessorImpl - Skipping explicit MappedSuperclass com.tnmaster.entities.SuperBlackListBlackListTag, the class will be discovered analyzing the implementing class
- 2024-02-18 11:51:14.204 [, - main] DEBUG o.h.b.m.s.i.a.AnnotationMetadataSourceProcessorImpl - Skipping explicit MappedSuperclass com.tnmaster.entities.SuperBlackListEvidence, the class will be discovered analyzing the implementing class
- 2024-02-18 11:51:14.204 [, - main] DEBUG o.h.b.m.s.i.a.AnnotationMetadataSourceProcessorImpl - Skipping explicit MappedSuperclass com.tnmaster.entities.SuperBlackListRelation, the class will be discovered analyzing the implementing class
- 2024-02-18 11:51:14.204 [, - main] DEBUG o.h.b.m.s.i.a.AnnotationMetadataSourceProcessorImpl - Skipping explicit MappedSuperclass com.tnmaster.entities.SuperBlackListTag, the class will be discovered analyzing the implementing class
- 2024-02-18 11:51:14.207 [, - main] DEBUG o.h.b.m.s.i.a.AnnotationMetadataSourceProcessorImpl - Skipping explicit MappedSuperclass com.tnmaster.entities.SuperCertAccess, the class will be discovered analyzing the implementing class
- 2024-02-18 11:51:14.208 [, - main] DEBUG o.h.b.m.s.i.a.AnnotationMetadataSourceProcessorImpl - Skipping explicit MappedSuperclass com.tnmaster.entities.SuperDisInfo, the class will be discovered analyzing the implementing class
- 2024-02-18 11:51:14.208 [, - main] DEBUG o.h.b.m.s.i.a.AnnotationMetadataSourceProcessorImpl - Skipping explicit MappedSuperclass com.tnmaster.entities.SuperEmploymentRecord, the class will be discovered analyzing the implementing class
- 2024-02-18 11:51:14.208 [, - main] DEBUG o.h.b.m.s.i.a.AnnotationMetadataSourceProcessorImpl - Skipping explicit MappedSuperclass com.tnmaster.entities.SuperEnterprise, the class will be discovered analyzing the implementing class
- 2024-02-18 11:51:14.208 [, - main] DEBUG o.h.b.m.s.i.a.AnnotationMetadataSourceProcessorImpl - Skipping explicit MappedSuperclass com.tnmaster.entities.SuperEnterpriseEmail, the class will be discovered analyzing the implementing class
- 2024-02-18 11:51:14.208 [, - main] DEBUG o.h.b.m.s.i.a.AnnotationMetadataSourceProcessorImpl - Skipping explicit MappedSuperclass com.tnmaster.entities.SuperEnterpriseIndustry, the class will be discovered analyzing the implementing class
- 2024-02-18 11:51:14.208 [, - main] DEBUG o.h.b.m.s.i.a.AnnotationMetadataSourceProcessorImpl - Skipping explicit MappedSuperclass com.tnmaster.entities.SuperEnterprisePhone, the class will be discovered analyzing the implementing class
- 2024-02-18 11:51:14.208 [, - main] DEBUG o.h.b.m.s.i.a.AnnotationMetadataSourceProcessorImpl - Skipping explicit MappedSuperclass com.tnmaster.entities.SuperEnterpriseUser, the class will be discovered analyzing the implementing class
- 2024-02-18 11:51:14.208 [, - main] DEBUG o.h.b.m.s.i.a.AnnotationMetadataSourceProcessorImpl - Skipping explicit MappedSuperclass com.tnmaster.entities.SuperIndustry, the class will be discovered analyzing the implementing class
- 2024-02-18 11:51:14.208 [, - main] DEBUG o.h.b.m.s.i.a.AnnotationMetadataSourceProcessorImpl - Skipping explicit MappedSuperclass com.tnmaster.entities.SuperJob, the class will be discovered analyzing the implementing class
- 2024-02-18 11:51:14.208 [, - main] DEBUG o.h.b.m.s.i.a.AnnotationMetadataSourceProcessorImpl - Skipping explicit MappedSuperclass com.tnmaster.entities.SuperJobJobTag, the class will be discovered analyzing the implementing class
- 2024-02-18 11:51:14.208 [, - main] DEBUG o.h.b.m.s.i.a.AnnotationMetadataSourceProcessorImpl - Skipping explicit MappedSuperclass com.tnmaster.entities.SuperJobRqCertRule, the class will be discovered analyzing the implementing class
- 2024-02-18 11:51:14.208 [, - main] DEBUG o.h.b.m.s.i.a.AnnotationMetadataSourceProcessorImpl - Skipping explicit MappedSuperclass com.tnmaster.entities.SuperJobRuleAddress, the class will be discovered analyzing the implementing class
- 2024-02-18 11:51:14.208 [, - main] DEBUG o.h.b.m.s.i.a.AnnotationMetadataSourceProcessorImpl - Skipping explicit MappedSuperclass com.tnmaster.entities.SuperJobSeeker, the class will be discovered analyzing the implementing class
- 2024-02-18 11:51:14.208 [, - main] DEBUG o.h.b.m.s.i.a.AnnotationMetadataSourceProcessorImpl - Skipping explicit MappedSuperclass com.tnmaster.entities.SuperJobSeekerSuperior, the class will be discovered analyzing the implementing class
- 2024-02-18 11:51:14.208 [, - main] DEBUG o.h.b.m.s.i.a.AnnotationMetadataSourceProcessorImpl - Skipping explicit MappedSuperclass com.tnmaster.entities.SuperJobTag, the class will be discovered analyzing the implementing class
- 2024-02-18 11:51:14.208 [, - main] DEBUG o.h.b.m.s.i.a.AnnotationMetadataSourceProcessorImpl - Skipping explicit MappedSuperclass com.tnmaster.entities.SuperRegShare, the class will be discovered analyzing the implementing class
- 2024-02-18 11:51:14.208 [, - main] DEBUG o.h.b.m.s.i.a.AnnotationMetadataSourceProcessorImpl - Skipping explicit MappedSuperclass com.tnmaster.entities.SuperRqCertRule, the class will be discovered analyzing the implementing class
- 2024-02-18 11:51:14.208 [, - main] DEBUG o.h.b.m.s.i.a.AnnotationMetadataSourceProcessorImpl - Skipping explicit MappedSuperclass com.tnmaster.entities.SuperWorkExperience, the class will be discovered analyzing the implementing class
- 2024-02-18 11:51:14.209 [, - main] DEBUG o.h.b.m.s.i.a.AnnotationMetadataSourceProcessorImpl - Skipping explicit MappedSuperclass io.github.truenine.composeserver.rds.entities.cert.SuperBankCard, the class will be discovered analyzing the implementing class
- 2024-02-18 11:51:14.209 [, - main] DEBUG o.h.b.m.s.i.a.AnnotationMetadataSourceProcessorImpl - Skipping explicit MappedSuperclass io.github.truenine.composeserver.rds.entities.cert.SuperBizCert, the class will be discovered analyzing the implementing class
- 2024-02-18 11:51:14.209 [, - main] DEBUG o.h.b.m.s.i.a.AnnotationMetadataSourceProcessorImpl - Skipping explicit MappedSuperclass io.github.truenine.composeserver.rds.entities.cert.SuperCert, the class will be discovered analyzing the implementing class
- 2024-02-18 11:51:14.209 [, - main] DEBUG o.h.b.m.s.i.a.AnnotationMetadataSourceProcessorImpl - Skipping explicit MappedSuperclass io.github.truenine.composeserver.rds.entities.cert.SuperDisCert2, the class will be discovered analyzing the implementing class
- 2024-02-18 11:51:14.209 [, - main] DEBUG o.h.b.m.s.i.a.AnnotationMetadataSourceProcessorImpl - Skipping explicit MappedSuperclass io.github.truenine.composeserver.rds.entities.cert.SuperHouseholdCert, the class will be discovered analyzing the implementing class
- 2024-02-18 11:51:14.209 [, - main] DEBUG o.h.b.m.s.i.a.AnnotationMetadataSourceProcessorImpl - Skipping explicit MappedSuperclass io.github.truenine.composeserver.rds.entities.cert.SuperIdcard2, the class will be discovered analyzing the implementing class
- 2024-02-18 11:51:14.209 [, - main] DEBUG o.h.b.m.s.i.a.AnnotationMetadataSourceProcessorImpl - Skipping explicit MappedSuperclass io.github.truenine.composeserver.rds.entities.SuperAddress, the class will be discovered analyzing the implementing class
- 2024-02-18 11:51:14.209 [, - main] DEBUG o.h.b.m.s.i.a.AnnotationMetadataSourceProcessorImpl - Skipping explicit MappedSuperclass io.github.truenine.composeserver.rds.entities.SuperAddressDetails, the class will be discovered analyzing the implementing class
- 2024-02-18 11:51:14.209 [, - main] DEBUG o.h.b.m.s.i.a.AnnotationMetadataSourceProcessorImpl - Skipping explicit MappedSuperclass io.github.truenine.composeserver.rds.entities.SuperAttachment, the class will be discovered analyzing the implementing class
- 2024-02-18 11:51:14.209 [, - main] DEBUG o.h.b.m.s.i.a.AnnotationMetadataSourceProcessorImpl - Skipping explicit MappedSuperclass io.github.truenine.composeserver.rds.entities.SuperAudit, the class will be discovered analyzing the implementing class
- 2024-02-18 11:51:14.209 [, - main] DEBUG o.h.b.m.s.i.a.AnnotationMetadataSourceProcessorImpl - Skipping explicit MappedSuperclass io.github.truenine.composeserver.rds.entities.SuperAuditAttachment, the class will be discovered analyzing the implementing class
- 2024-02-18 11:51:14.209 [, - main] DEBUG o.h.b.m.s.i.a.AnnotationMetadataSourceProcessorImpl - Skipping explicit MappedSuperclass io.github.truenine.composeserver.rds.entities.SuperFlywaySchemaHistory, the class will be discovered analyzing the implementing class
- 2024-02-18 11:51:14.209 [, - main] DEBUG o.h.b.m.s.i.a.AnnotationMetadataSourceProcessorImpl - Skipping explicit MappedSuperclass io.github.truenine.composeserver.rds.entities.SuperRole, the class will be discovered analyzing the implementing class
- 2024-02-18 11:51:14.210 [, - main] DEBUG o.h.b.m.s.i.a.AnnotationMetadataSourceProcessorImpl - Skipping explicit MappedSuperclass io.github.truenine.composeserver.rds.entities.SuperRoleGroup, the class will be discovered analyzing the implementing class
- 2024-02-18 11:51:14.210 [, - main] DEBUG o.h.b.m.s.i.a.AnnotationMetadataSourceProcessorImpl - Skipping explicit MappedSuperclass io.github.truenine.composeserver.rds.entities.SuperUserInfo, the class will be discovered analyzing the implementing class
- 2024-02-18 11:51:14.210 [, - main] DEBUG o.h.b.m.s.i.a.AnnotationMetadataSourceProcessorImpl - Skipping explicit MappedSuperclass io.github.truenine.composeserver.rds.entities.SuperUsr, the class will be discovered analyzing the implementing class
- 2024-02-18 11:51:14.210 [, - main] DEBUG o.h.b.m.s.i.a.AnnotationMetadataSourceProcessorImpl - Skipping explicit MappedSuperclass io.github.truenine.composeserver.rds.core.entities.RefAnyEntity, the class will be discovered analyzing the implementing class
- 2024-02-18 11:51:14.210 [, - main] DEBUG o.h.b.m.s.i.a.AnnotationMetadataSourceProcessorImpl - Skipping explicit MappedSuperclass io.github.truenine.composeserver.rds.core.entities.TreeAnyRefEntity, the class will be discovered analyzing the implementing class
- 2024-02-18 11:51:14.210 [, - main] DEBUG o.h.b.m.s.i.a.AnnotationMetadataSourceProcessorImpl - Skipping explicit MappedSuperclass io.github.truenine.composeserver.rds.core.entities.AnyEntity, the class will be discovered analyzing the implementing class
- 2024-02-18 11:51:14.210 [, - main] DEBUG o.h.b.m.s.i.a.AnnotationMetadataSourceProcessorImpl - Skipping explicit MappedSuperclass io.github.truenine.composeserver.rds.core.entities.IEntity, the class will be discovered analyzing the implementing class
- 2024-02-18 11:51:14.210 [, - main] DEBUG o.h.b.m.s.i.a.AnnotationMetadataSourceProcessorImpl - Skipping explicit MappedSuperclass io.github.truenine.composeserver.rds.core.entities.TreeEntity, the class will be discovered analyzing the implementing class
- 2024-02-18 11:51:14.249 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: com.tnmaster.entities.AnonymousCertGroup
- 2024-02-18 11:51:14.256 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name AnonymousCertGroup
- 2024-02-18 11:51:14.260 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity com.tnmaster.entities.AnonymousCertGroup on table anonymous_cert_group
- 2024-02-18 11:51:14.267 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.283 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.284 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.AnonymousCertGroup] is safe
- 2024-02-18 11:51:14.284 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.AnonymousCertGroup
- 2024-02-18 11:51:14.287 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.290 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.AnonymousCertGroup:id]
- 2024-02-18 11:51:14.291 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.293 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: anonymous_cert_group.id
- 2024-02-18 11:51:14.294 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.296 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.297 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.297 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.297 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.AnonymousCertGroup:crd]
- 2024-02-18 11:51:14.297 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.297 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: anonymous_cert_group.crd
- 2024-02-18 11:51:14.297 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.298 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.298 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.298 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.AnonymousCertGroup:ldf]
- 2024-02-18 11:51:14.298 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.298 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: anonymous_cert_group.ldf
- 2024-02-18 11:51:14.298 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.299 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.299 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.299 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.AnonymousCertGroup:mrd]
- 2024-02-18 11:51:14.300 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.300 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: anonymous_cert_group.mrd
- 2024-02-18 11:51:14.300 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.301 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.301 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.301 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.AnonymousCertGroup:rlv]
- 2024-02-18 11:51:14.301 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.301 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: anonymous_cert_group.rlv
- 2024-02-18 11:51:14.301 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.301 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='cert_id')
- 2024-02-18 11:51:14.302 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property certId with lazy=false
- 2024-02-18 11:51:14.302 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.AnonymousCertGroup:certId]
- 2024-02-18 11:51:14.302 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for certId
- 2024-02-18 11:51:14.302 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: anonymous_cert_group.cert_id
- 2024-02-18 11:51:14.302 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property certId
- 2024-02-18 11:51:14.302 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='serial_no')
- 2024-02-18 11:51:14.302 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property serialNo with lazy=false
- 2024-02-18 11:51:14.302 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.AnonymousCertGroup:serialNo]
- 2024-02-18 11:51:14.302 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for serialNo
- 2024-02-18 11:51:14.302 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: anonymous_cert_group.serial_no
- 2024-02-18 11:51:14.302 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property serialNo
- 2024-02-18 11:51:14.302 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='up_user_id')
- 2024-02-18 11:51:14.303 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property upUserId with lazy=false
- 2024-02-18 11:51:14.303 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.AnonymousCertGroup:upUserId]
- 2024-02-18 11:51:14.303 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for upUserId
- 2024-02-18 11:51:14.303 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: anonymous_cert_group.up_user_id
- 2024-02-18 11:51:14.303 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property upUserId
- 2024-02-18 11:51:14.304 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: com.tnmaster.entities
- 2024-02-18 11:51:14.308 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity com.tnmaster.entities.AnonymousCertGroup
- 2024-02-18 11:51:14.308 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity com.tnmaster.entities.AnonymousCertGroup
- 2024-02-18 11:51:14.308 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity com.tnmaster.entities.AnonymousCertGroup
- 2024-02-18 11:51:14.309 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity com.tnmaster.entities.AnonymousCertGroup
- 2024-02-18 11:51:14.310 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: com.tnmaster.entities.BlackList
- 2024-02-18 11:51:14.310 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name BlackList
- 2024-02-18 11:51:14.310 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity com.tnmaster.entities.BlackList on table black_list
- 2024-02-18 11:51:14.310 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.315 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.315 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.BlackList] is safe
- 2024-02-18 11:51:14.315 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.BlackList
- 2024-02-18 11:51:14.315 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.315 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackList:id]
- 2024-02-18 11:51:14.315 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.315 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list.id
- 2024-02-18 11:51:14.315 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.315 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.315 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.316 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.316 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackList:crd]
- 2024-02-18 11:51:14.316 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.316 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list.crd
- 2024-02-18 11:51:14.316 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.316 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.316 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.316 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackList:ldf]
- 2024-02-18 11:51:14.316 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.316 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list.ldf
- 2024-02-18 11:51:14.316 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.317 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.317 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.317 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackList:mrd]
- 2024-02-18 11:51:14.317 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.317 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list.mrd
- 2024-02-18 11:51:14.317 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.317 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.317 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.317 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackList:rlv]
- 2024-02-18 11:51:14.317 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.317 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list.rlv
- 2024-02-18 11:51:14.317 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.318 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='audit_status')
- 2024-02-18 11:51:14.318 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property auditStatus with lazy=false
- 2024-02-18 11:51:14.318 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackList:auditStatus]
- 2024-02-18 11:51:14.318 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for auditStatus
- 2024-02-18 11:51:14.318 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list.audit_status
- 2024-02-18 11:51:14.318 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property auditStatus
- 2024-02-18 11:51:14.318 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='black_ref_id')
- 2024-02-18 11:51:14.318 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property blackRefId with lazy=false
- 2024-02-18 11:51:14.318 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackList:blackRefId]
- 2024-02-18 11:51:14.318 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for blackRefId
- 2024-02-18 11:51:14.318 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list.black_ref_id
- 2024-02-18 11:51:14.318 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property blackRefId
- 2024-02-18 11:51:14.319 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='black_user_info_id')
- 2024-02-18 11:51:14.319 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property blackUserInfoId with lazy=false
- 2024-02-18 11:51:14.319 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackList:blackUserInfoId]
- 2024-02-18 11:51:14.319 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for blackUserInfoId
- 2024-02-18 11:51:14.319 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list.black_user_info_id
- 2024-02-18 11:51:14.319 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property blackUserInfoId
- 2024-02-18 11:51:14.319 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='create_datetime')
- 2024-02-18 11:51:14.319 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property createDatetime with lazy=false
- 2024-02-18 11:51:14.319 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackList:createDatetime]
- 2024-02-18 11:51:14.319 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for createDatetime
- 2024-02-18 11:51:14.320 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list.create_datetime
- 2024-02-18 11:51:14.320 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property createDatetime
- 2024-02-18 11:51:14.320 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='create_user_id')
- 2024-02-18 11:51:14.320 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property createUserId with lazy=false
- 2024-02-18 11:51:14.320 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackList:createUserId]
- 2024-02-18 11:51:14.320 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for createUserId
- 2024-02-18 11:51:14.320 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list.create_user_id
- 2024-02-18 11:51:14.320 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property createUserId
- 2024-02-18 11:51:14.320 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='event_doc')
- 2024-02-18 11:51:14.320 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property eventDoc with lazy=false
- 2024-02-18 11:51:14.320 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackList:eventDoc]
- 2024-02-18 11:51:14.320 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for eventDoc
- 2024-02-18 11:51:14.320 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list.event_doc
- 2024-02-18 11:51:14.320 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property eventDoc
- 2024-02-18 11:51:14.321 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='re_item_type')
- 2024-02-18 11:51:14.321 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property reItemType with lazy=false
- 2024-02-18 11:51:14.324 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Applying JPA converter [com.tnmaster.entities.BlackList:reItemType]
- 2024-02-18 11:51:14.324 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for reItemType
- 2024-02-18 11:51:14.324 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list.re_item_type
- 2024-02-18 11:51:14.324 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property reItemType
- 2024-02-18 11:51:14.325 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='report_user_id')
- 2024-02-18 11:51:14.325 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property reportUserId with lazy=false
- 2024-02-18 11:51:14.325 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackList:reportUserId]
- 2024-02-18 11:51:14.325 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for reportUserId
- 2024-02-18 11:51:14.325 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list.report_user_id
- 2024-02-18 11:51:14.325 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property reportUserId
- 2024-02-18 11:51:14.325 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='report_user_info_id')
- 2024-02-18 11:51:14.325 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property reportUserInfoId with lazy=false
- 2024-02-18 11:51:14.325 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackList:reportUserInfoId]
- 2024-02-18 11:51:14.325 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for reportUserInfoId
- 2024-02-18 11:51:14.325 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list.report_user_info_id
- 2024-02-18 11:51:14.325 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property reportUserInfoId
- 2024-02-18 11:51:14.326 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: com.tnmaster.entities
- 2024-02-18 11:51:14.328 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity com.tnmaster.entities.BlackList
- 2024-02-18 11:51:14.328 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity com.tnmaster.entities.BlackList
- 2024-02-18 11:51:14.328 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity com.tnmaster.entities.BlackList
- 2024-02-18 11:51:14.329 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity com.tnmaster.entities.BlackList
- 2024-02-18 11:51:14.329 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: com.tnmaster.entities.BlackListBlackListTag
- 2024-02-18 11:51:14.331 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name BlackListBlackListTag
- 2024-02-18 11:51:14.331 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity com.tnmaster.entities.BlackListBlackListTag on table black_list_black_list_tag
- 2024-02-18 11:51:14.331 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.332 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.332 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.BlackListBlackListTag] is safe
- 2024-02-18 11:51:14.333 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.BlackListBlackListTag
- 2024-02-18 11:51:14.333 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.333 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackListBlackListTag:id]
- 2024-02-18 11:51:14.333 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.333 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list_black_list_tag.id
- 2024-02-18 11:51:14.333 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.333 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.334 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.334 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.334 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackListBlackListTag:crd]
- 2024-02-18 11:51:14.334 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.334 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list_black_list_tag.crd
- 2024-02-18 11:51:14.334 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.334 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.334 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.334 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackListBlackListTag:ldf]
- 2024-02-18 11:51:14.334 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.334 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list_black_list_tag.ldf
- 2024-02-18 11:51:14.334 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.335 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.335 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.335 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackListBlackListTag:mrd]
- 2024-02-18 11:51:14.335 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.335 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list_black_list_tag.mrd
- 2024-02-18 11:51:14.335 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.335 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.335 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.335 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackListBlackListTag:rlv]
- 2024-02-18 11:51:14.335 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.335 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list_black_list_tag.rlv
- 2024-02-18 11:51:14.335 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.335 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='black_list_id')
- 2024-02-18 11:51:14.335 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property blackListId with lazy=false
- 2024-02-18 11:51:14.335 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackListBlackListTag:blackListId]
- 2024-02-18 11:51:14.335 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for blackListId
- 2024-02-18 11:51:14.336 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list_black_list_tag.black_list_id
- 2024-02-18 11:51:14.336 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property blackListId
- 2024-02-18 11:51:14.336 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='tag_id')
- 2024-02-18 11:51:14.336 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property tagId with lazy=false
- 2024-02-18 11:51:14.336 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackListBlackListTag:tagId]
- 2024-02-18 11:51:14.336 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for tagId
- 2024-02-18 11:51:14.336 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list_black_list_tag.tag_id
- 2024-02-18 11:51:14.336 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property tagId
- 2024-02-18 11:51:14.336 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: com.tnmaster.entities
- 2024-02-18 11:51:14.337 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity com.tnmaster.entities.BlackListBlackListTag
- 2024-02-18 11:51:14.337 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity com.tnmaster.entities.BlackListBlackListTag
- 2024-02-18 11:51:14.337 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity com.tnmaster.entities.BlackListBlackListTag
- 2024-02-18 11:51:14.337 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity com.tnmaster.entities.BlackListBlackListTag
- 2024-02-18 11:51:14.337 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: com.tnmaster.entities.BlackListEvidence
- 2024-02-18 11:51:14.338 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name BlackListEvidence
- 2024-02-18 11:51:14.338 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity com.tnmaster.entities.BlackListEvidence on table black_list_evidence
- 2024-02-18 11:51:14.339 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.340 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.340 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.BlackListEvidence] is safe
- 2024-02-18 11:51:14.340 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.BlackListEvidence
- 2024-02-18 11:51:14.340 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.340 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackListEvidence:id]
- 2024-02-18 11:51:14.340 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.340 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list_evidence.id
- 2024-02-18 11:51:14.340 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.341 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.341 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.341 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.341 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackListEvidence:crd]
- 2024-02-18 11:51:14.341 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.341 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list_evidence.crd
- 2024-02-18 11:51:14.341 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.342 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.342 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.342 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackListEvidence:ldf]
- 2024-02-18 11:51:14.342 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.342 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list_evidence.ldf
- 2024-02-18 11:51:14.342 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.343 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.343 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.343 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackListEvidence:mrd]
- 2024-02-18 11:51:14.343 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.343 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list_evidence.mrd
- 2024-02-18 11:51:14.343 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.343 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.343 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.343 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackListEvidence:rlv]
- 2024-02-18 11:51:14.343 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.343 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list_evidence.rlv
- 2024-02-18 11:51:14.343 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.343 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='att_id')
- 2024-02-18 11:51:14.343 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property attId with lazy=false
- 2024-02-18 11:51:14.343 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackListEvidence:attId]
- 2024-02-18 11:51:14.343 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for attId
- 2024-02-18 11:51:14.343 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list_evidence.att_id
- 2024-02-18 11:51:14.343 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property attId
- 2024-02-18 11:51:14.344 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='audit_status')
- 2024-02-18 11:51:14.344 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property auditStatus with lazy=false
- 2024-02-18 11:51:14.344 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackListEvidence:auditStatus]
- 2024-02-18 11:51:14.344 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for auditStatus
- 2024-02-18 11:51:14.344 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list_evidence.audit_status
- 2024-02-18 11:51:14.344 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property auditStatus
- 2024-02-18 11:51:14.345 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='black_list_id')
- 2024-02-18 11:51:14.345 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property blackListId with lazy=false
- 2024-02-18 11:51:14.345 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackListEvidence:blackListId]
- 2024-02-18 11:51:14.345 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for blackListId
- 2024-02-18 11:51:14.345 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list_evidence.black_list_id
- 2024-02-18 11:51:14.345 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property blackListId
- 2024-02-18 11:51:14.345 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='doc')
- 2024-02-18 11:51:14.345 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property doc with lazy=false
- 2024-02-18 11:51:14.345 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackListEvidence:doc]
- 2024-02-18 11:51:14.345 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for doc
- 2024-02-18 11:51:14.345 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list_evidence.doc
- 2024-02-18 11:51:14.345 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property doc
- 2024-02-18 11:51:14.346 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='title')
- 2024-02-18 11:51:14.346 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property title with lazy=false
- 2024-02-18 11:51:14.346 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackListEvidence:title]
- 2024-02-18 11:51:14.346 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for title
- 2024-02-18 11:51:14.346 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list_evidence.title
- 2024-02-18 11:51:14.346 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property title
- 2024-02-18 11:51:14.346 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: com.tnmaster.entities
- 2024-02-18 11:51:14.350 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity com.tnmaster.entities.BlackListEvidence
- 2024-02-18 11:51:14.350 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity com.tnmaster.entities.BlackListEvidence
- 2024-02-18 11:51:14.350 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity com.tnmaster.entities.BlackListEvidence
- 2024-02-18 11:51:14.350 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity com.tnmaster.entities.BlackListEvidence
- 2024-02-18 11:51:14.351 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: com.tnmaster.entities.BlackListRelation
- 2024-02-18 11:51:14.353 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name BlackListRelation
- 2024-02-18 11:51:14.353 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity com.tnmaster.entities.BlackListRelation on table black_list_relation
- 2024-02-18 11:51:14.354 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.356 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.356 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.BlackListRelation] is safe
- 2024-02-18 11:51:14.356 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.BlackListRelation
- 2024-02-18 11:51:14.356 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.356 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackListRelation:id]
- 2024-02-18 11:51:14.356 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.356 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list_relation.id
- 2024-02-18 11:51:14.356 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.357 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.357 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.357 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.357 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackListRelation:crd]
- 2024-02-18 11:51:14.357 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.357 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list_relation.crd
- 2024-02-18 11:51:14.357 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.357 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.357 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.357 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackListRelation:ldf]
- 2024-02-18 11:51:14.357 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.358 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list_relation.ldf
- 2024-02-18 11:51:14.358 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.358 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.358 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.358 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackListRelation:mrd]
- 2024-02-18 11:51:14.358 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.358 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list_relation.mrd
- 2024-02-18 11:51:14.358 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.358 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.358 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.359 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackListRelation:rlv]
- 2024-02-18 11:51:14.359 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.359 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list_relation.rlv
- 2024-02-18 11:51:14.359 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.359 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='black_list_id')
- 2024-02-18 11:51:14.359 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property blackListId with lazy=false
- 2024-02-18 11:51:14.359 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackListRelation:blackListId]
- 2024-02-18 11:51:14.359 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for blackListId
- 2024-02-18 11:51:14.359 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list_relation.black_list_id
- 2024-02-18 11:51:14.359 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property blackListId
- 2024-02-18 11:51:14.359 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='event_doc')
- 2024-02-18 11:51:14.359 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property eventDoc with lazy=false
- 2024-02-18 11:51:14.359 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackListRelation:eventDoc]
- 2024-02-18 11:51:14.359 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for eventDoc
- 2024-02-18 11:51:14.359 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list_relation.event_doc
- 2024-02-18 11:51:14.359 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property eventDoc
- 2024-02-18 11:51:14.360 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='re_item_type')
- 2024-02-18 11:51:14.360 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property reItemType with lazy=false
- 2024-02-18 11:51:14.360 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Applying JPA converter [com.tnmaster.entities.BlackListRelation:reItemType]
- 2024-02-18 11:51:14.360 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for reItemType
- 2024-02-18 11:51:14.360 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list_relation.re_item_type
- 2024-02-18 11:51:14.360 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property reItemType
- 2024-02-18 11:51:14.360 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='re_type')
- 2024-02-18 11:51:14.361 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property reType with lazy=false
- 2024-02-18 11:51:14.361 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Applying JPA converter [com.tnmaster.entities.BlackListRelation:reType]
- 2024-02-18 11:51:14.361 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for reType
- 2024-02-18 11:51:14.361 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list_relation.re_type
- 2024-02-18 11:51:14.361 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property reType
- 2024-02-18 11:51:14.362 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ref_id')
- 2024-02-18 11:51:14.362 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property refId with lazy=false
- 2024-02-18 11:51:14.362 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackListRelation:refId]
- 2024-02-18 11:51:14.362 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for refId
- 2024-02-18 11:51:14.362 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list_relation.ref_id
- 2024-02-18 11:51:14.363 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property refId
- 2024-02-18 11:51:14.363 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='user_info_id')
- 2024-02-18 11:51:14.363 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property userInfoId with lazy=false
- 2024-02-18 11:51:14.363 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackListRelation:userInfoId]
- 2024-02-18 11:51:14.363 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for userInfoId
- 2024-02-18 11:51:14.363 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list_relation.user_info_id
- 2024-02-18 11:51:14.363 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property userInfoId
- 2024-02-18 11:51:14.363 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: com.tnmaster.entities
- 2024-02-18 11:51:14.364 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity com.tnmaster.entities.BlackListRelation
- 2024-02-18 11:51:14.364 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity com.tnmaster.entities.BlackListRelation
- 2024-02-18 11:51:14.364 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity com.tnmaster.entities.BlackListRelation
- 2024-02-18 11:51:14.365 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity com.tnmaster.entities.BlackListRelation
- 2024-02-18 11:51:14.365 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: com.tnmaster.entities.BlackListTag
- 2024-02-18 11:51:14.365 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name BlackListTag
- 2024-02-18 11:51:14.366 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity com.tnmaster.entities.BlackListTag on table black_list_tag
- 2024-02-18 11:51:14.366 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.369 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.369 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.BlackListTag] is safe
- 2024-02-18 11:51:14.369 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.BlackListTag
- 2024-02-18 11:51:14.369 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.369 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackListTag:id]
- 2024-02-18 11:51:14.369 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.369 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list_tag.id
- 2024-02-18 11:51:14.369 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.369 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.369 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.369 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.369 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackListTag:crd]
- 2024-02-18 11:51:14.369 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.369 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list_tag.crd
- 2024-02-18 11:51:14.369 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.370 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.370 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.370 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackListTag:ldf]
- 2024-02-18 11:51:14.370 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.370 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list_tag.ldf
- 2024-02-18 11:51:14.370 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.370 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.370 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.370 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackListTag:mrd]
- 2024-02-18 11:51:14.370 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.370 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list_tag.mrd
- 2024-02-18 11:51:14.370 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.370 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.370 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.370 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackListTag:rlv]
- 2024-02-18 11:51:14.370 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.370 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list_tag.rlv
- 2024-02-18 11:51:14.370 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.371 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='doc')
- 2024-02-18 11:51:14.371 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property doc with lazy=false
- 2024-02-18 11:51:14.371 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackListTag:doc]
- 2024-02-18 11:51:14.371 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for doc
- 2024-02-18 11:51:14.371 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list_tag.doc
- 2024-02-18 11:51:14.371 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property doc
- 2024-02-18 11:51:14.373 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='title')
- 2024-02-18 11:51:14.374 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property title with lazy=false
- 2024-02-18 11:51:14.374 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackListTag:title]
- 2024-02-18 11:51:14.374 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for title
- 2024-02-18 11:51:14.374 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list_tag.title
- 2024-02-18 11:51:14.374 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property title
- 2024-02-18 11:51:14.374 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: com.tnmaster.entities
- 2024-02-18 11:51:14.374 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity com.tnmaster.entities.BlackListTag
- 2024-02-18 11:51:14.374 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity com.tnmaster.entities.BlackListTag
- 2024-02-18 11:51:14.374 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity com.tnmaster.entities.BlackListTag
- 2024-02-18 11:51:14.375 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity com.tnmaster.entities.BlackListTag
- 2024-02-18 11:51:14.375 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: com.tnmaster.entities.BlackListVo
- 2024-02-18 11:51:14.376 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name BlackListVo
- 2024-02-18 11:51:14.376 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity com.tnmaster.entities.BlackListVo on table black_list
- 2024-02-18 11:51:14.376 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.386 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.386 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.BlackListVo] is safe
- 2024-02-18 11:51:14.386 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.BlackListVo
- 2024-02-18 11:51:14.386 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.386 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackListVo:id]
- 2024-02-18 11:51:14.386 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.386 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list.id
- 2024-02-18 11:51:14.387 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.387 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.387 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.387 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.387 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackListVo:crd]
- 2024-02-18 11:51:14.387 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.387 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list.crd
- 2024-02-18 11:51:14.387 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.387 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.387 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.387 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackListVo:ldf]
- 2024-02-18 11:51:14.387 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.387 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list.ldf
- 2024-02-18 11:51:14.387 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.387 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.387 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.387 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackListVo:mrd]
- 2024-02-18 11:51:14.387 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.387 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list.mrd
- 2024-02-18 11:51:14.388 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.388 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.388 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.388 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackListVo:rlv]
- 2024-02-18 11:51:14.388 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.388 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list.rlv
- 2024-02-18 11:51:14.388 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.388 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='audit_status')
- 2024-02-18 11:51:14.388 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property auditStatus with lazy=false
- 2024-02-18 11:51:14.388 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackListVo:auditStatus]
- 2024-02-18 11:51:14.388 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for auditStatus
- 2024-02-18 11:51:14.388 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list.audit_status
- 2024-02-18 11:51:14.389 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property auditStatus
- 2024-02-18 11:51:14.389 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='black_ref_id')
- 2024-02-18 11:51:14.389 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property blackRefId with lazy=false
- 2024-02-18 11:51:14.389 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackListVo:blackRefId]
- 2024-02-18 11:51:14.389 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for blackRefId
- 2024-02-18 11:51:14.389 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list.black_ref_id
- 2024-02-18 11:51:14.389 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property blackRefId
- 2024-02-18 11:51:14.389 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='black_user_info_id')
- 2024-02-18 11:51:14.389 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property blackUserInfoId with lazy=false
- 2024-02-18 11:51:14.389 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackListVo:blackUserInfoId]
- 2024-02-18 11:51:14.389 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for blackUserInfoId
- 2024-02-18 11:51:14.389 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list.black_user_info_id
- 2024-02-18 11:51:14.389 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property blackUserInfoId
- 2024-02-18 11:51:14.389 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='create_datetime')
- 2024-02-18 11:51:14.390 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property createDatetime with lazy=false
- 2024-02-18 11:51:14.390 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackListVo:createDatetime]
- 2024-02-18 11:51:14.390 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for createDatetime
- 2024-02-18 11:51:14.390 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list.create_datetime
- 2024-02-18 11:51:14.390 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property createDatetime
- 2024-02-18 11:51:14.390 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='create_user_id')
- 2024-02-18 11:51:14.390 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property createUserId with lazy=false
- 2024-02-18 11:51:14.390 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackListVo:createUserId]
- 2024-02-18 11:51:14.390 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for createUserId
- 2024-02-18 11:51:14.390 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list.create_user_id
- 2024-02-18 11:51:14.390 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property createUserId
- 2024-02-18 11:51:14.390 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='event_doc')
- 2024-02-18 11:51:14.390 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property eventDoc with lazy=false
- 2024-02-18 11:51:14.390 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackListVo:eventDoc]
- 2024-02-18 11:51:14.390 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for eventDoc
- 2024-02-18 11:51:14.390 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list.event_doc
- 2024-02-18 11:51:14.391 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property eventDoc
- 2024-02-18 11:51:14.391 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='re_item_type')
- 2024-02-18 11:51:14.391 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property reItemType with lazy=false
- 2024-02-18 11:51:14.391 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Applying JPA converter [com.tnmaster.entities.BlackListVo:reItemType]
- 2024-02-18 11:51:14.391 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for reItemType
- 2024-02-18 11:51:14.391 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list.re_item_type
- 2024-02-18 11:51:14.391 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property reItemType
- 2024-02-18 11:51:14.392 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='report_user_id')
- 2024-02-18 11:51:14.392 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property reportUserId with lazy=false
- 2024-02-18 11:51:14.392 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackListVo:reportUserId]
- 2024-02-18 11:51:14.392 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for reportUserId
- 2024-02-18 11:51:14.392 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list.report_user_id
- 2024-02-18 11:51:14.392 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property reportUserId
- 2024-02-18 11:51:14.392 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='report_user_info_id')
- 2024-02-18 11:51:14.392 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property reportUserInfoId with lazy=false
- 2024-02-18 11:51:14.392 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.BlackListVo:reportUserInfoId]
- 2024-02-18 11:51:14.392 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for reportUserInfoId
- 2024-02-18 11:51:14.392 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: black_list.report_user_info_id
- 2024-02-18 11:51:14.392 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property reportUserInfoId
- 2024-02-18 11:51:14.394 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn(column='black_user_info_id',referencedColumn='id')
- 2024-02-18 11:51:14.396 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn()
- 2024-02-18 11:51:14.398 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property blackUserInfo
- 2024-02-18 11:51:14.398 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn(column='create_user_id',referencedColumn='id')
- 2024-02-18 11:51:14.399 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn()
- 2024-02-18 11:51:14.399 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property createUser
- 2024-02-18 11:51:14.399 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn(column='black_list_id',referencedColumn='id')
- 2024-02-18 11:51:14.399 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn()
- 2024-02-18 11:51:14.407 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: IndexColumn(column='relations_ORDER')
- 2024-02-18 11:51:14.408 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn()
- 2024-02-18 11:51:14.408 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='relations_KEY')
- 2024-02-18 11:51:14.409 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn(column='relations_KEY')
- 2024-02-18 11:51:14.409 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn()
- 2024-02-18 11:51:14.409 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn()
- 2024-02-18 11:51:14.411 [, - main] DEBUG o.hibernate.boot.model.internal.CollectionBinder - Collection role: com.tnmaster.entities.BlackListVo.relations
- 2024-02-18 11:51:14.412 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property relations
- 2024-02-18 11:51:14.412 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn(column='report_user_id',referencedColumn='id')
- 2024-02-18 11:51:14.412 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn()
- 2024-02-18 11:51:14.412 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property reportUser
- 2024-02-18 11:51:14.416 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn(column='report_user_info_id',referencedColumn='id')
- 2024-02-18 11:51:14.416 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn()
- 2024-02-18 11:51:14.417 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property reportUserInfo
- 2024-02-18 11:51:14.417 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: IndexColumn(column='tags_ORDER')
- 2024-02-18 11:51:14.417 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn()
- 2024-02-18 11:51:14.417 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='tags_KEY')
- 2024-02-18 11:51:14.417 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn(column='tags_KEY')
- 2024-02-18 11:51:14.417 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn(column='black_list_id',referencedColumn='id')
- 2024-02-18 11:51:14.418 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn(column='tag_id',referencedColumn='id')
- 2024-02-18 11:51:14.418 [, - main] DEBUG o.hibernate.boot.model.internal.CollectionBinder - Collection role: com.tnmaster.entities.BlackListVo.tags
- 2024-02-18 11:51:14.418 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property tags
- 2024-02-18 11:51:14.420 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: com.tnmaster.entities
- 2024-02-18 11:51:14.420 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity com.tnmaster.entities.BlackListVo
- 2024-02-18 11:51:14.421 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity com.tnmaster.entities.BlackListVo
- 2024-02-18 11:51:14.421 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity com.tnmaster.entities.BlackListVo
- 2024-02-18 11:51:14.421 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity com.tnmaster.entities.BlackListVo
- 2024-02-18 11:51:14.421 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: com.tnmaster.entities.CertAccess
- 2024-02-18 11:51:14.421 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name CertAccess
- 2024-02-18 11:51:14.422 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity com.tnmaster.entities.CertAccess on table cert_access
- 2024-02-18 11:51:14.422 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.424 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.424 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.CertAccess] is safe
- 2024-02-18 11:51:14.424 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.CertAccess
- 2024-02-18 11:51:14.424 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.424 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.CertAccess:id]
- 2024-02-18 11:51:14.424 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.424 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert_access.id
- 2024-02-18 11:51:14.424 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.425 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.425 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.425 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.425 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.CertAccess:crd]
- 2024-02-18 11:51:14.425 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.425 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert_access.crd
- 2024-02-18 11:51:14.425 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.425 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.425 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.425 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.CertAccess:ldf]
- 2024-02-18 11:51:14.425 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.425 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert_access.ldf
- 2024-02-18 11:51:14.425 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.426 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.426 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.426 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.CertAccess:mrd]
- 2024-02-18 11:51:14.426 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.426 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert_access.mrd
- 2024-02-18 11:51:14.426 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.426 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.426 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.426 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.CertAccess:rlv]
- 2024-02-18 11:51:14.426 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.426 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert_access.rlv
- 2024-02-18 11:51:14.426 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.427 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='access_datetime')
- 2024-02-18 11:51:14.427 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property accessDatetime with lazy=false
- 2024-02-18 11:51:14.427 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.CertAccess:accessDatetime]
- 2024-02-18 11:51:14.427 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for accessDatetime
- 2024-02-18 11:51:14.427 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert_access.access_datetime
- 2024-02-18 11:51:14.427 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property accessDatetime
- 2024-02-18 11:51:14.428 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='access_device_id')
- 2024-02-18 11:51:14.428 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property accessDeviceId with lazy=false
- 2024-02-18 11:51:14.428 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.CertAccess:accessDeviceId]
- 2024-02-18 11:51:14.428 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for accessDeviceId
- 2024-02-18 11:51:14.428 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert_access.access_device_id
- 2024-02-18 11:51:14.428 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property accessDeviceId
- 2024-02-18 11:51:14.429 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='access_ip')
- 2024-02-18 11:51:14.429 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property accessIp with lazy=false
- 2024-02-18 11:51:14.429 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.CertAccess:accessIp]
- 2024-02-18 11:51:14.429 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for accessIp
- 2024-02-18 11:51:14.429 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert_access.access_ip
- 2024-02-18 11:51:14.429 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property accessIp
- 2024-02-18 11:51:14.429 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='att_id')
- 2024-02-18 11:51:14.429 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property attId with lazy=false
- 2024-02-18 11:51:14.429 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.CertAccess:attId]
- 2024-02-18 11:51:14.429 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for attId
- 2024-02-18 11:51:14.429 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert_access.att_id
- 2024-02-18 11:51:14.429 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property attId
- 2024-02-18 11:51:14.429 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='cert_id')
- 2024-02-18 11:51:14.429 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property certId with lazy=false
- 2024-02-18 11:51:14.429 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.CertAccess:certId]
- 2024-02-18 11:51:14.429 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for certId
- 2024-02-18 11:51:14.429 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert_access.cert_id
- 2024-02-18 11:51:14.429 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property certId
- 2024-02-18 11:51:14.430 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='meta')
- 2024-02-18 11:51:14.430 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property meta with lazy=false
- 2024-02-18 11:51:14.430 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.CertAccess:meta]
- 2024-02-18 11:51:14.430 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for meta
- 2024-02-18 11:51:14.430 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert_access.meta
- 2024-02-18 11:51:14.430 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property meta
- 2024-02-18 11:51:14.430 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='user_id')
- 2024-02-18 11:51:14.430 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property userId with lazy=false
- 2024-02-18 11:51:14.430 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.CertAccess:userId]
- 2024-02-18 11:51:14.430 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for userId
- 2024-02-18 11:51:14.430 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert_access.user_id
- 2024-02-18 11:51:14.430 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property userId
- 2024-02-18 11:51:14.431 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='wm_att_id')
- 2024-02-18 11:51:14.431 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property wmAttId with lazy=false
- 2024-02-18 11:51:14.431 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.CertAccess:wmAttId]
- 2024-02-18 11:51:14.431 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for wmAttId
- 2024-02-18 11:51:14.431 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert_access.wm_att_id
- 2024-02-18 11:51:14.431 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property wmAttId
- 2024-02-18 11:51:14.432 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='wm_code')
- 2024-02-18 11:51:14.432 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property wmCode with lazy=false
- 2024-02-18 11:51:14.432 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.CertAccess:wmCode]
- 2024-02-18 11:51:14.432 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for wmCode
- 2024-02-18 11:51:14.432 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert_access.wm_code
- 2024-02-18 11:51:14.432 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property wmCode
- 2024-02-18 11:51:14.433 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: com.tnmaster.entities
- 2024-02-18 11:51:14.434 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity com.tnmaster.entities.CertAccess
- 2024-02-18 11:51:14.434 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity com.tnmaster.entities.CertAccess
- 2024-02-18 11:51:14.434 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity com.tnmaster.entities.CertAccess
- 2024-02-18 11:51:14.434 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity com.tnmaster.entities.CertAccess
- 2024-02-18 11:51:14.434 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: com.tnmaster.entities.CertShowVo
- 2024-02-18 11:51:14.434 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name CertShowVo
- 2024-02-18 11:51:14.435 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity com.tnmaster.entities.CertShowVo on table cert
- 2024-02-18 11:51:14.435 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.437 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.437 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.CertShowVo] is safe
- 2024-02-18 11:51:14.437 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.CertShowVo
- 2024-02-18 11:51:14.438 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.438 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.CertShowVo:id]
- 2024-02-18 11:51:14.438 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.438 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert.id
- 2024-02-18 11:51:14.438 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.438 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.438 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.438 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.438 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.CertShowVo:crd]
- 2024-02-18 11:51:14.438 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.438 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert.crd
- 2024-02-18 11:51:14.438 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.438 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.438 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.438 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.CertShowVo:ldf]
- 2024-02-18 11:51:14.438 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.438 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert.ldf
- 2024-02-18 11:51:14.438 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.439 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.439 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.439 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.CertShowVo:mrd]
- 2024-02-18 11:51:14.439 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.439 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert.mrd
- 2024-02-18 11:51:14.439 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.439 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.439 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.439 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.CertShowVo:rlv]
- 2024-02-18 11:51:14.439 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.439 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert.rlv
- 2024-02-18 11:51:14.439 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.439 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='att_id')
- 2024-02-18 11:51:14.440 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property attId with lazy=false
- 2024-02-18 11:51:14.440 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.CertShowVo:attId]
- 2024-02-18 11:51:14.440 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for attId
- 2024-02-18 11:51:14.440 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert.att_id
- 2024-02-18 11:51:14.440 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property attId
- 2024-02-18 11:51:14.440 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='audit_status')
- 2024-02-18 11:51:14.440 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property auditStatus with lazy=false
- 2024-02-18 11:51:14.440 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Applying JPA converter [com.tnmaster.entities.CertShowVo:auditStatus]
- 2024-02-18 11:51:14.440 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for auditStatus
- 2024-02-18 11:51:14.440 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert.audit_status
- 2024-02-18 11:51:14.440 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property auditStatus
- 2024-02-18 11:51:14.440 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='co_type')
- 2024-02-18 11:51:14.440 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property coType with lazy=false
- 2024-02-18 11:51:14.441 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Applying JPA converter [com.tnmaster.entities.CertShowVo:coType]
- 2024-02-18 11:51:14.441 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for coType
- 2024-02-18 11:51:14.441 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert.co_type
- 2024-02-18 11:51:14.441 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property coType
- 2024-02-18 11:51:14.441 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='create_datetime')
- 2024-02-18 11:51:14.441 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property createDatetime with lazy=false
- 2024-02-18 11:51:14.441 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.CertShowVo:createDatetime]
- 2024-02-18 11:51:14.441 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for createDatetime
- 2024-02-18 11:51:14.441 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert.create_datetime
- 2024-02-18 11:51:14.441 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property createDatetime
- 2024-02-18 11:51:14.442 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='create_device_id')
- 2024-02-18 11:51:14.442 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property createDeviceId with lazy=false
- 2024-02-18 11:51:14.442 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.CertShowVo:createDeviceId]
- 2024-02-18 11:51:14.442 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for createDeviceId
- 2024-02-18 11:51:14.442 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert.create_device_id
- 2024-02-18 11:51:14.442 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property createDeviceId
- 2024-02-18 11:51:14.442 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='create_ip')
- 2024-02-18 11:51:14.442 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property createIp with lazy=false
- 2024-02-18 11:51:14.442 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.CertShowVo:createIp]
- 2024-02-18 11:51:14.442 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for createIp
- 2024-02-18 11:51:14.442 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert.create_ip
- 2024-02-18 11:51:14.442 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property createIp
- 2024-02-18 11:51:14.443 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='create_user_id')
- 2024-02-18 11:51:14.443 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property createUserId with lazy=false
- 2024-02-18 11:51:14.443 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.CertShowVo:createUserId]
- 2024-02-18 11:51:14.443 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for createUserId
- 2024-02-18 11:51:14.443 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert.create_user_id
- 2024-02-18 11:51:14.443 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property createUserId
- 2024-02-18 11:51:14.444 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='do_type')
- 2024-02-18 11:51:14.444 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property doType with lazy=false
- 2024-02-18 11:51:14.444 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Applying JPA converter [com.tnmaster.entities.CertShowVo:doType]
- 2024-02-18 11:51:14.444 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for doType
- 2024-02-18 11:51:14.444 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert.do_type
- 2024-02-18 11:51:14.444 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property doType
- 2024-02-18 11:51:14.444 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='doc')
- 2024-02-18 11:51:14.444 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property doc with lazy=false
- 2024-02-18 11:51:14.444 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.CertShowVo:doc]
- 2024-02-18 11:51:14.444 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for doc
- 2024-02-18 11:51:14.444 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert.doc
- 2024-02-18 11:51:14.444 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property doc
- 2024-02-18 11:51:14.444 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='name')
- 2024-02-18 11:51:14.444 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property name with lazy=false
- 2024-02-18 11:51:14.444 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.CertShowVo:name]
- 2024-02-18 11:51:14.444 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for name
- 2024-02-18 11:51:14.444 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert.name
- 2024-02-18 11:51:14.444 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property name
- 2024-02-18 11:51:14.445 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='po_type')
- 2024-02-18 11:51:14.445 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property poType with lazy=false
- 2024-02-18 11:51:14.445 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Applying JPA converter [com.tnmaster.entities.CertShowVo:poType]
- 2024-02-18 11:51:14.445 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for poType
- 2024-02-18 11:51:14.445 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert.po_type
- 2024-02-18 11:51:14.445 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property poType
- 2024-02-18 11:51:14.445 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='remark')
- 2024-02-18 11:51:14.445 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property remark with lazy=false
- 2024-02-18 11:51:14.445 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.CertShowVo:remark]
- 2024-02-18 11:51:14.445 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for remark
- 2024-02-18 11:51:14.445 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert.remark
- 2024-02-18 11:51:14.446 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property remark
- 2024-02-18 11:51:14.446 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='user_id')
- 2024-02-18 11:51:14.446 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property userId with lazy=false
- 2024-02-18 11:51:14.446 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.CertShowVo:userId]
- 2024-02-18 11:51:14.446 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for userId
- 2024-02-18 11:51:14.448 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert.user_id
- 2024-02-18 11:51:14.448 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property userId
- 2024-02-18 11:51:14.448 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='user_info_id')
- 2024-02-18 11:51:14.448 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property userInfoId with lazy=false
- 2024-02-18 11:51:14.448 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.CertShowVo:userInfoId]
- 2024-02-18 11:51:14.448 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for userInfoId
- 2024-02-18 11:51:14.448 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert.user_info_id
- 2024-02-18 11:51:14.448 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property userInfoId
- 2024-02-18 11:51:14.449 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='wm_att_id')
- 2024-02-18 11:51:14.449 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property wmAttId with lazy=false
- 2024-02-18 11:51:14.449 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.CertShowVo:wmAttId]
- 2024-02-18 11:51:14.449 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for wmAttId
- 2024-02-18 11:51:14.449 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert.wm_att_id
- 2024-02-18 11:51:14.449 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property wmAttId
- 2024-02-18 11:51:14.449 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='wm_code')
- 2024-02-18 11:51:14.449 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property wmCode with lazy=false
- 2024-02-18 11:51:14.449 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.CertShowVo:wmCode]
- 2024-02-18 11:51:14.449 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for wmCode
- 2024-02-18 11:51:14.449 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert.wm_code
- 2024-02-18 11:51:14.449 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property wmCode
- 2024-02-18 11:51:14.450 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn(column='create_user_id',referencedColumn='id')
- 2024-02-18 11:51:14.450 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn()
- 2024-02-18 11:51:14.450 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property createUser
- 2024-02-18 11:51:14.450 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn(column='wm_att_id',referencedColumn='id')
- 2024-02-18 11:51:14.451 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn()
- 2024-02-18 11:51:14.451 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property wmAtt
- 2024-02-18 11:51:14.452 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: com.tnmaster.entities
- 2024-02-18 11:51:14.452 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity com.tnmaster.entities.CertShowVo
- 2024-02-18 11:51:14.452 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity com.tnmaster.entities.CertShowVo
- 2024-02-18 11:51:14.452 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity com.tnmaster.entities.CertShowVo
- 2024-02-18 11:51:14.453 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity com.tnmaster.entities.CertShowVo
- 2024-02-18 11:51:14.453 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: com.tnmaster.entities.DisAccountVo
- 2024-02-18 11:51:14.453 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name DisAccountVo
- 2024-02-18 11:51:14.454 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity com.tnmaster.entities.DisAccountVo on table usr
- 2024-02-18 11:51:14.454 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.461 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.461 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.DisAccountVo] is safe
- 2024-02-18 11:51:14.461 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.DisAccountVo
- 2024-02-18 11:51:14.461 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.461 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.DisAccountVo:id]
- 2024-02-18 11:51:14.461 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.461 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: usr.id
- 2024-02-18 11:51:14.461 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.461 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.463 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.463 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.463 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.DisAccountVo:crd]
- 2024-02-18 11:51:14.463 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.463 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: usr.crd
- 2024-02-18 11:51:14.463 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.464 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.464 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.464 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.DisAccountVo:ldf]
- 2024-02-18 11:51:14.464 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.464 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: usr.ldf
- 2024-02-18 11:51:14.464 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.465 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.465 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.465 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.DisAccountVo:mrd]
- 2024-02-18 11:51:14.465 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.465 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: usr.mrd
- 2024-02-18 11:51:14.465 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.465 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.465 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.465 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.DisAccountVo:rlv]
- 2024-02-18 11:51:14.465 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.465 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: usr.rlv
- 2024-02-18 11:51:14.465 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.466 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='account')
- 2024-02-18 11:51:14.467 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property account with lazy=false
- 2024-02-18 11:51:14.467 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.DisAccountVo:account]
- 2024-02-18 11:51:14.467 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for account
- 2024-02-18 11:51:14.467 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: usr.account
- 2024-02-18 11:51:14.467 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property account
- 2024-02-18 11:51:14.467 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ban_time')
- 2024-02-18 11:51:14.467 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property banTime with lazy=false
- 2024-02-18 11:51:14.467 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.DisAccountVo:banTime]
- 2024-02-18 11:51:14.467 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for banTime
- 2024-02-18 11:51:14.467 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: usr.ban_time
- 2024-02-18 11:51:14.467 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property banTime
- 2024-02-18 11:51:14.468 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='create_user_id')
- 2024-02-18 11:51:14.468 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property createUserId with lazy=false
- 2024-02-18 11:51:14.468 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.DisAccountVo:createUserId]
- 2024-02-18 11:51:14.468 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for createUserId
- 2024-02-18 11:51:14.468 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: usr.create_user_id
- 2024-02-18 11:51:14.468 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property createUserId
- 2024-02-18 11:51:14.468 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='doc')
- 2024-02-18 11:51:14.468 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property doc with lazy=false
- 2024-02-18 11:51:14.468 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.DisAccountVo:doc]
- 2024-02-18 11:51:14.468 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for doc
- 2024-02-18 11:51:14.468 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: usr.doc
- 2024-02-18 11:51:14.469 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property doc
- 2024-02-18 11:51:14.469 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='last_login_time')
- 2024-02-18 11:51:14.469 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property lastLoginTime with lazy=false
- 2024-02-18 11:51:14.469 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.DisAccountVo:lastLoginTime]
- 2024-02-18 11:51:14.469 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for lastLoginTime
- 2024-02-18 11:51:14.469 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: usr.last_login_time
- 2024-02-18 11:51:14.469 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property lastLoginTime
- 2024-02-18 11:51:14.469 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='nick_name')
- 2024-02-18 11:51:14.469 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property nickName with lazy=false
- 2024-02-18 11:51:14.469 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.DisAccountVo:nickName]
- 2024-02-18 11:51:14.469 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for nickName
- 2024-02-18 11:51:14.469 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: usr.nick_name
- 2024-02-18 11:51:14.469 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property nickName
- 2024-02-18 11:51:14.470 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='pwd_enc')
- 2024-02-18 11:51:14.470 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property pwdEnc with lazy=false
- 2024-02-18 11:51:14.470 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.DisAccountVo:pwdEnc]
- 2024-02-18 11:51:14.470 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for pwdEnc
- 2024-02-18 11:51:14.470 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: usr.pwd_enc
- 2024-02-18 11:51:14.470 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property pwdEnc
- 2024-02-18 11:51:14.470 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: IndexColumn(column='dsInfos_ORDER')
- 2024-02-18 11:51:14.470 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn()
- 2024-02-18 11:51:14.471 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='dsInfos_KEY')
- 2024-02-18 11:51:14.472 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn(column='dsInfos_KEY')
- 2024-02-18 11:51:14.472 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn(column='user_info_id',referencedColumn='id')
- 2024-02-18 11:51:14.472 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn(column='user_info_id',referencedColumn='id')
- 2024-02-18 11:51:14.472 [, - main] DEBUG o.hibernate.boot.model.internal.CollectionBinder - Collection role: com.tnmaster.entities.DisAccountVo.dsInfos
- 2024-02-18 11:51:14.472 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property dsInfos
- 2024-02-18 11:51:14.473 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn(column='user_id',referencedColumn='id')
- 2024-02-18 11:51:14.473 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn()
- 2024-02-18 11:51:14.474 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: IndexColumn(column='userInfos_ORDER')
- 2024-02-18 11:51:14.474 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn()
- 2024-02-18 11:51:14.475 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='userInfos_KEY')
- 2024-02-18 11:51:14.475 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn(column='userInfos_KEY')
- 2024-02-18 11:51:14.475 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn()
- 2024-02-18 11:51:14.475 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn()
- 2024-02-18 11:51:14.475 [, - main] DEBUG o.hibernate.boot.model.internal.CollectionBinder - Collection role: com.tnmaster.entities.DisAccountVo.userInfos
- 2024-02-18 11:51:14.475 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property userInfos
- 2024-02-18 11:51:14.476 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: com.tnmaster.entities
- 2024-02-18 11:51:14.478 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity com.tnmaster.entities.DisAccountVo
- 2024-02-18 11:51:14.478 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity com.tnmaster.entities.DisAccountVo
- 2024-02-18 11:51:14.478 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity com.tnmaster.entities.DisAccountVo
- 2024-02-18 11:51:14.478 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity com.tnmaster.entities.DisAccountVo
- 2024-02-18 11:51:14.479 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: com.tnmaster.entities.DisInfo
- 2024-02-18 11:51:14.479 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name DisInfo
- 2024-02-18 11:51:14.479 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity com.tnmaster.entities.DisInfo on table dis_info
- 2024-02-18 11:51:14.479 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.482 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.482 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.DisInfo] is safe
- 2024-02-18 11:51:14.482 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.DisInfo
- 2024-02-18 11:51:14.482 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.482 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.DisInfo:id]
- 2024-02-18 11:51:14.482 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.482 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: dis_info.id
- 2024-02-18 11:51:14.482 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.482 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.484 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.484 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.484 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.DisInfo:crd]
- 2024-02-18 11:51:14.485 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.485 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: dis_info.crd
- 2024-02-18 11:51:14.485 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.485 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.485 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.485 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.DisInfo:ldf]
- 2024-02-18 11:51:14.485 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.485 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: dis_info.ldf
- 2024-02-18 11:51:14.485 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.485 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.485 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.485 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.DisInfo:mrd]
- 2024-02-18 11:51:14.485 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.485 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: dis_info.mrd
- 2024-02-18 11:51:14.485 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.488 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.488 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.488 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.DisInfo:rlv]
- 2024-02-18 11:51:14.488 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.488 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: dis_info.rlv
- 2024-02-18 11:51:14.488 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.488 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='cause')
- 2024-02-18 11:51:14.488 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property cause with lazy=false
- 2024-02-18 11:51:14.488 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.DisInfo:cause]
- 2024-02-18 11:51:14.488 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for cause
- 2024-02-18 11:51:14.488 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: dis_info.cause
- 2024-02-18 11:51:14.488 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property cause
- 2024-02-18 11:51:14.489 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='cert_code')
- 2024-02-18 11:51:14.489 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property certCode with lazy=false
- 2024-02-18 11:51:14.489 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.DisInfo:certCode]
- 2024-02-18 11:51:14.489 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for certCode
- 2024-02-18 11:51:14.489 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: dis_info.cert_code
- 2024-02-18 11:51:14.489 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property certCode
- 2024-02-18 11:51:14.489 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ds_type')
- 2024-02-18 11:51:14.489 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property dsType with lazy=false
- 2024-02-18 11:51:14.489 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Applying JPA converter [com.tnmaster.entities.DisInfo:dsType]
- 2024-02-18 11:51:14.490 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for dsType
- 2024-02-18 11:51:14.490 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: dis_info.ds_type
- 2024-02-18 11:51:14.490 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property dsType
- 2024-02-18 11:51:14.490 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='level')
- 2024-02-18 11:51:14.490 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property level with lazy=false
- 2024-02-18 11:51:14.490 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.DisInfo:level]
- 2024-02-18 11:51:14.490 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for level
- 2024-02-18 11:51:14.490 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: dis_info.level
- 2024-02-18 11:51:14.490 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property level
- 2024-02-18 11:51:14.491 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mu_rule')
- 2024-02-18 11:51:14.491 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property muRule with lazy=false
- 2024-02-18 11:51:14.492 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.DisInfo:muRule]
- 2024-02-18 11:51:14.492 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for muRule
- 2024-02-18 11:51:14.493 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: dis_info.mu_rule
- 2024-02-18 11:51:14.493 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property muRule
- 2024-02-18 11:51:14.493 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='place')
- 2024-02-18 11:51:14.493 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property place with lazy=false
- 2024-02-18 11:51:14.493 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.DisInfo:place]
- 2024-02-18 11:51:14.493 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for place
- 2024-02-18 11:51:14.497 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: dis_info.place
- 2024-02-18 11:51:14.498 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property place
- 2024-02-18 11:51:14.498 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='user_info_id')
- 2024-02-18 11:51:14.498 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property userInfoId with lazy=false
- 2024-02-18 11:51:14.498 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.DisInfo:userInfoId]
- 2024-02-18 11:51:14.498 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for userInfoId
- 2024-02-18 11:51:14.498 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: dis_info.user_info_id
- 2024-02-18 11:51:14.498 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property userInfoId
- 2024-02-18 11:51:14.499 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: com.tnmaster.entities
- 2024-02-18 11:51:14.500 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity com.tnmaster.entities.DisInfo
- 2024-02-18 11:51:14.500 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity com.tnmaster.entities.DisInfo
- 2024-02-18 11:51:14.500 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity com.tnmaster.entities.DisInfo
- 2024-02-18 11:51:14.500 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity com.tnmaster.entities.DisInfo
- 2024-02-18 11:51:14.500 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: com.tnmaster.entities.DisUserInfoVo
- 2024-02-18 11:51:14.501 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name DisUserInfoVo
- 2024-02-18 11:51:14.502 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity com.tnmaster.entities.DisUserInfoVo on table user_info
- 2024-02-18 11:51:14.502 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.506 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.506 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.DisUserInfoVo] is safe
- 2024-02-18 11:51:14.506 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.DisUserInfoVo
- 2024-02-18 11:51:14.506 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.506 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.DisUserInfoVo:id]
- 2024-02-18 11:51:14.506 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.506 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.id
- 2024-02-18 11:51:14.506 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.506 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.507 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.507 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.507 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.DisUserInfoVo:crd]
- 2024-02-18 11:51:14.507 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.507 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.crd
- 2024-02-18 11:51:14.507 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.507 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.507 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.507 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.DisUserInfoVo:ldf]
- 2024-02-18 11:51:14.507 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.507 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.ldf
- 2024-02-18 11:51:14.507 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.507 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.507 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.507 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.DisUserInfoVo:mrd]
- 2024-02-18 11:51:14.507 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.507 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.mrd
- 2024-02-18 11:51:14.507 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.509 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.509 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.509 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.DisUserInfoVo:rlv]
- 2024-02-18 11:51:14.509 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.509 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.rlv
- 2024-02-18 11:51:14.510 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.510 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='address_code')
- 2024-02-18 11:51:14.510 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property addressCode with lazy=false
- 2024-02-18 11:51:14.510 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.DisUserInfoVo:addressCode]
- 2024-02-18 11:51:14.510 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for addressCode
- 2024-02-18 11:51:14.510 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.address_code
- 2024-02-18 11:51:14.510 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property addressCode
- 2024-02-18 11:51:14.510 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='address_details_id')
- 2024-02-18 11:51:14.511 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property addressDetailsId with lazy=false
- 2024-02-18 11:51:14.511 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.DisUserInfoVo:addressDetailsId]
- 2024-02-18 11:51:14.511 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for addressDetailsId
- 2024-02-18 11:51:14.511 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.address_details_id
- 2024-02-18 11:51:14.511 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property addressDetailsId
- 2024-02-18 11:51:14.511 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='address_id')
- 2024-02-18 11:51:14.511 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property addressId with lazy=false
- 2024-02-18 11:51:14.511 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.DisUserInfoVo:addressId]
- 2024-02-18 11:51:14.511 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for addressId
- 2024-02-18 11:51:14.511 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.address_id
- 2024-02-18 11:51:14.511 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property addressId
- 2024-02-18 11:51:14.511 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='avatar_img_id')
- 2024-02-18 11:51:14.511 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property avatarImgId with lazy=false
- 2024-02-18 11:51:14.511 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.DisUserInfoVo:avatarImgId]
- 2024-02-18 11:51:14.511 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for avatarImgId
- 2024-02-18 11:51:14.512 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.avatar_img_id
- 2024-02-18 11:51:14.512 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property avatarImgId
- 2024-02-18 11:51:14.512 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='birthday')
- 2024-02-18 11:51:14.512 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property birthday with lazy=false
- 2024-02-18 11:51:14.513 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.DisUserInfoVo:birthday]
- 2024-02-18 11:51:14.513 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for birthday
- 2024-02-18 11:51:14.513 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.birthday
- 2024-02-18 11:51:14.513 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property birthday
- 2024-02-18 11:51:14.513 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='create_user_id')
- 2024-02-18 11:51:14.513 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property createUserId with lazy=false
- 2024-02-18 11:51:14.513 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.DisUserInfoVo:createUserId]
- 2024-02-18 11:51:14.513 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for createUserId
- 2024-02-18 11:51:14.513 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.create_user_id
- 2024-02-18 11:51:14.513 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property createUserId
- 2024-02-18 11:51:14.513 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='email')
- 2024-02-18 11:51:14.513 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property email with lazy=false
- 2024-02-18 11:51:14.513 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.DisUserInfoVo:email]
- 2024-02-18 11:51:14.513 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for email
- 2024-02-18 11:51:14.513 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.email
- 2024-02-18 11:51:14.513 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property email
- 2024-02-18 11:51:14.513 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='first_name')
- 2024-02-18 11:51:14.513 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property firstName with lazy=false
- 2024-02-18 11:51:14.513 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.DisUserInfoVo:firstName]
- 2024-02-18 11:51:14.514 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for firstName
- 2024-02-18 11:51:14.514 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.first_name
- 2024-02-18 11:51:14.514 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property firstName
- 2024-02-18 11:51:14.514 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='gender')
- 2024-02-18 11:51:14.514 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property gender with lazy=false
- 2024-02-18 11:51:14.515 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Applying JPA converter [com.tnmaster.entities.DisUserInfoVo:gender]
- 2024-02-18 11:51:14.515 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for gender
- 2024-02-18 11:51:14.515 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.gender
- 2024-02-18 11:51:14.515 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property gender
- 2024-02-18 11:51:14.515 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id_card')
- 2024-02-18 11:51:14.515 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property idCard with lazy=false
- 2024-02-18 11:51:14.515 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.DisUserInfoVo:idCard]
- 2024-02-18 11:51:14.515 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for idCard
- 2024-02-18 11:51:14.515 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.id_card
- 2024-02-18 11:51:14.515 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property idCard
- 2024-02-18 11:51:14.516 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='last_name')
- 2024-02-18 11:51:14.516 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property lastName with lazy=false
- 2024-02-18 11:51:14.516 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.DisUserInfoVo:lastName]
- 2024-02-18 11:51:14.516 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for lastName
- 2024-02-18 11:51:14.516 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.last_name
- 2024-02-18 11:51:14.516 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property lastName
- 2024-02-18 11:51:14.516 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='phone')
- 2024-02-18 11:51:14.516 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property phone with lazy=false
- 2024-02-18 11:51:14.516 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.DisUserInfoVo:phone]
- 2024-02-18 11:51:14.516 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for phone
- 2024-02-18 11:51:14.516 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.phone
- 2024-02-18 11:51:14.516 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property phone
- 2024-02-18 11:51:14.516 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='pri')
- 2024-02-18 11:51:14.516 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property pri with lazy=false
- 2024-02-18 11:51:14.516 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.DisUserInfoVo:pri]
- 2024-02-18 11:51:14.516 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for pri
- 2024-02-18 11:51:14.517 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.pri
- 2024-02-18 11:51:14.517 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property pri
- 2024-02-18 11:51:14.517 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='qq_account')
- 2024-02-18 11:51:14.517 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property qqAccount with lazy=false
- 2024-02-18 11:51:14.517 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.DisUserInfoVo:qqAccount]
- 2024-02-18 11:51:14.517 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for qqAccount
- 2024-02-18 11:51:14.517 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.qq_account
- 2024-02-18 11:51:14.517 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property qqAccount
- 2024-02-18 11:51:14.518 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='qq_openid')
- 2024-02-18 11:51:14.518 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property qqOpenid with lazy=false
- 2024-02-18 11:51:14.518 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.DisUserInfoVo:qqOpenid]
- 2024-02-18 11:51:14.518 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for qqOpenid
- 2024-02-18 11:51:14.518 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.qq_openid
- 2024-02-18 11:51:14.518 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property qqOpenid
- 2024-02-18 11:51:14.518 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='spare_phone')
- 2024-02-18 11:51:14.518 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property sparePhone with lazy=false
- 2024-02-18 11:51:14.518 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.DisUserInfoVo:sparePhone]
- 2024-02-18 11:51:14.518 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for sparePhone
- 2024-02-18 11:51:14.518 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.spare_phone
- 2024-02-18 11:51:14.518 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property sparePhone
- 2024-02-18 11:51:14.519 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='user_id')
- 2024-02-18 11:51:14.519 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property userId with lazy=false
- 2024-02-18 11:51:14.519 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.DisUserInfoVo:userId]
- 2024-02-18 11:51:14.519 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for userId
- 2024-02-18 11:51:14.519 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.user_id
- 2024-02-18 11:51:14.519 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property userId
- 2024-02-18 11:51:14.519 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='wechat_account')
- 2024-02-18 11:51:14.519 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property wechatAccount with lazy=false
- 2024-02-18 11:51:14.519 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.DisUserInfoVo:wechatAccount]
- 2024-02-18 11:51:14.519 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for wechatAccount
- 2024-02-18 11:51:14.519 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.wechat_account
- 2024-02-18 11:51:14.519 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property wechatAccount
- 2024-02-18 11:51:14.520 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='wechat_authid')
- 2024-02-18 11:51:14.520 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property wechatAuthid with lazy=false
- 2024-02-18 11:51:14.520 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.DisUserInfoVo:wechatAuthid]
- 2024-02-18 11:51:14.520 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for wechatAuthid
- 2024-02-18 11:51:14.520 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.wechat_authid
- 2024-02-18 11:51:14.520 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property wechatAuthid
- 2024-02-18 11:51:14.520 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='wechat_openid')
- 2024-02-18 11:51:14.520 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property wechatOpenid with lazy=false
- 2024-02-18 11:51:14.520 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.DisUserInfoVo:wechatOpenid]
- 2024-02-18 11:51:14.520 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for wechatOpenid
- 2024-02-18 11:51:14.520 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.wechat_openid
- 2024-02-18 11:51:14.520 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property wechatOpenid
- 2024-02-18 11:51:14.520 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn(column='user_id',referencedColumn='id')
- 2024-02-18 11:51:14.520 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn()
- 2024-02-18 11:51:14.520 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property account
- 2024-02-18 11:51:14.521 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn(column='id',referencedColumn='user_info_id')
- 2024-02-18 11:51:14.521 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn()
- 2024-02-18 11:51:14.521 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property dsInfo
- 2024-02-18 11:51:14.521 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: com.tnmaster.entities
- 2024-02-18 11:51:14.523 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity com.tnmaster.entities.DisUserInfoVo
- 2024-02-18 11:51:14.523 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity com.tnmaster.entities.DisUserInfoVo
- 2024-02-18 11:51:14.523 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity com.tnmaster.entities.DisUserInfoVo
- 2024-02-18 11:51:14.524 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity com.tnmaster.entities.DisUserInfoVo
- 2024-02-18 11:51:14.524 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: com.tnmaster.entities.EmploymentRecord
- 2024-02-18 11:51:14.524 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name EmploymentRecord
- 2024-02-18 11:51:14.525 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity com.tnmaster.entities.EmploymentRecord on table employment_record
- 2024-02-18 11:51:14.525 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.527 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.527 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.EmploymentRecord] is safe
- 2024-02-18 11:51:14.527 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.EmploymentRecord
- 2024-02-18 11:51:14.527 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.527 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.EmploymentRecord:id]
- 2024-02-18 11:51:14.527 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.527 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: employment_record.id
- 2024-02-18 11:51:14.527 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.527 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.527 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.527 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.528 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.EmploymentRecord:crd]
- 2024-02-18 11:51:14.528 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.528 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: employment_record.crd
- 2024-02-18 11:51:14.528 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.528 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.528 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.528 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.EmploymentRecord:ldf]
- 2024-02-18 11:51:14.528 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.528 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: employment_record.ldf
- 2024-02-18 11:51:14.528 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.528 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.528 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.528 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.EmploymentRecord:mrd]
- 2024-02-18 11:51:14.528 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.528 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: employment_record.mrd
- 2024-02-18 11:51:14.528 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.528 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.529 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.529 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.EmploymentRecord:rlv]
- 2024-02-18 11:51:14.529 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.529 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: employment_record.rlv
- 2024-02-18 11:51:14.529 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.529 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='cause_by')
- 2024-02-18 11:51:14.529 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property causeBy with lazy=false
- 2024-02-18 11:51:14.529 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.EmploymentRecord:causeBy]
- 2024-02-18 11:51:14.529 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for causeBy
- 2024-02-18 11:51:14.529 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: employment_record.cause_by
- 2024-02-18 11:51:14.529 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property causeBy
- 2024-02-18 11:51:14.529 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='create_datetime')
- 2024-02-18 11:51:14.529 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property createDatetime with lazy=false
- 2024-02-18 11:51:14.529 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.EmploymentRecord:createDatetime]
- 2024-02-18 11:51:14.529 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for createDatetime
- 2024-02-18 11:51:14.529 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: employment_record.create_datetime
- 2024-02-18 11:51:14.529 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property createDatetime
- 2024-02-18 11:51:14.530 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='end_datetime')
- 2024-02-18 11:51:14.530 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property endDatetime with lazy=false
- 2024-02-18 11:51:14.530 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.EmploymentRecord:endDatetime]
- 2024-02-18 11:51:14.530 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for endDatetime
- 2024-02-18 11:51:14.530 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: employment_record.end_datetime
- 2024-02-18 11:51:14.530 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property endDatetime
- 2024-02-18 11:51:14.530 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='job_id')
- 2024-02-18 11:51:14.530 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property jobId with lazy=false
- 2024-02-18 11:51:14.530 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.EmploymentRecord:jobId]
- 2024-02-18 11:51:14.530 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for jobId
- 2024-02-18 11:51:14.530 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: employment_record.job_id
- 2024-02-18 11:51:14.530 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property jobId
- 2024-02-18 11:51:14.530 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='job_seeker_id')
- 2024-02-18 11:51:14.530 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property jobSeekerId with lazy=false
- 2024-02-18 11:51:14.530 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.EmploymentRecord:jobSeekerId]
- 2024-02-18 11:51:14.530 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for jobSeekerId
- 2024-02-18 11:51:14.530 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: employment_record.job_seeker_id
- 2024-02-18 11:51:14.530 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property jobSeekerId
- 2024-02-18 11:51:14.530 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='opt_user_id')
- 2024-02-18 11:51:14.530 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property optUserId with lazy=false
- 2024-02-18 11:51:14.530 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.EmploymentRecord:optUserId]
- 2024-02-18 11:51:14.530 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for optUserId
- 2024-02-18 11:51:14.530 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: employment_record.opt_user_id
- 2024-02-18 11:51:14.531 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property optUserId
- 2024-02-18 11:51:14.531 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='typ')
- 2024-02-18 11:51:14.531 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property typ with lazy=false
- 2024-02-18 11:51:14.531 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.EmploymentRecord:typ]
- 2024-02-18 11:51:14.531 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for typ
- 2024-02-18 11:51:14.532 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: employment_record.typ
- 2024-02-18 11:51:14.532 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property typ
- 2024-02-18 11:51:14.532 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='user_id')
- 2024-02-18 11:51:14.532 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property userId with lazy=false
- 2024-02-18 11:51:14.532 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.EmploymentRecord:userId]
- 2024-02-18 11:51:14.532 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for userId
- 2024-02-18 11:51:14.532 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: employment_record.user_id
- 2024-02-18 11:51:14.532 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property userId
- 2024-02-18 11:51:14.533 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: com.tnmaster.entities
- 2024-02-18 11:51:14.534 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity com.tnmaster.entities.EmploymentRecord
- 2024-02-18 11:51:14.534 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity com.tnmaster.entities.EmploymentRecord
- 2024-02-18 11:51:14.534 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity com.tnmaster.entities.EmploymentRecord
- 2024-02-18 11:51:14.534 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity com.tnmaster.entities.EmploymentRecord
- 2024-02-18 11:51:14.535 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: com.tnmaster.entities.Enterprise
- 2024-02-18 11:51:14.535 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name Enterprise
- 2024-02-18 11:51:14.535 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity com.tnmaster.entities.Enterprise on table enterprise
- 2024-02-18 11:51:14.535 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.541 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.541 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.Enterprise] is safe
- 2024-02-18 11:51:14.541 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.Enterprise
- 2024-02-18 11:51:14.541 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.541 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Enterprise:id]
- 2024-02-18 11:51:14.541 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.541 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.id
- 2024-02-18 11:51:14.541 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.541 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.541 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.541 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.541 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Enterprise:crd]
- 2024-02-18 11:51:14.541 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.541 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.crd
- 2024-02-18 11:51:14.542 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.542 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.542 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.542 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Enterprise:ldf]
- 2024-02-18 11:51:14.542 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.542 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.ldf
- 2024-02-18 11:51:14.542 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.542 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.542 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.542 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Enterprise:mrd]
- 2024-02-18 11:51:14.542 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.542 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.mrd
- 2024-02-18 11:51:14.542 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.542 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.542 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.542 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Enterprise:rlv]
- 2024-02-18 11:51:14.542 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.542 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.rlv
- 2024-02-18 11:51:14.542 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.544 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='nlv')
- 2024-02-18 11:51:14.544 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property nlv with lazy=false
- 2024-02-18 11:51:14.544 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Enterprise:nlv]
- 2024-02-18 11:51:14.545 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for nlv
- 2024-02-18 11:51:14.545 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.nlv
- 2024-02-18 11:51:14.545 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property nlv
- 2024-02-18 11:51:14.545 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rln')
- 2024-02-18 11:51:14.545 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rln with lazy=false
- 2024-02-18 11:51:14.545 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Enterprise:rln]
- 2024-02-18 11:51:14.545 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rln
- 2024-02-18 11:51:14.545 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.rln
- 2024-02-18 11:51:14.545 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rln
- 2024-02-18 11:51:14.545 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rpi')
- 2024-02-18 11:51:14.545 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rpi with lazy=false
- 2024-02-18 11:51:14.545 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Enterprise:rpi]
- 2024-02-18 11:51:14.545 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rpi
- 2024-02-18 11:51:14.545 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.rpi
- 2024-02-18 11:51:14.545 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rpi
- 2024-02-18 11:51:14.545 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rrn')
- 2024-02-18 11:51:14.545 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rrn with lazy=false
- 2024-02-18 11:51:14.546 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Enterprise:rrn]
- 2024-02-18 11:51:14.546 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rrn
- 2024-02-18 11:51:14.546 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.rrn
- 2024-02-18 11:51:14.546 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rrn
- 2024-02-18 11:51:14.546 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='tgi')
- 2024-02-18 11:51:14.546 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property tgi with lazy=false
- 2024-02-18 11:51:14.546 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Enterprise:tgi]
- 2024-02-18 11:51:14.546 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for tgi
- 2024-02-18 11:51:14.546 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.tgi
- 2024-02-18 11:51:14.546 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property tgi
- 2024-02-18 11:51:14.546 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='address_code')
- 2024-02-18 11:51:14.546 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property addressCode with lazy=false
- 2024-02-18 11:51:14.546 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Enterprise:addressCode]
- 2024-02-18 11:51:14.546 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for addressCode
- 2024-02-18 11:51:14.546 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.address_code
- 2024-02-18 11:51:14.546 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property addressCode
- 2024-02-18 11:51:14.547 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='address_details_id')
- 2024-02-18 11:51:14.547 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property addressDetailsId with lazy=false
- 2024-02-18 11:51:14.547 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Enterprise:addressDetailsId]
- 2024-02-18 11:51:14.547 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for addressDetailsId
- 2024-02-18 11:51:14.547 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.address_details_id
- 2024-02-18 11:51:14.547 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property addressDetailsId
- 2024-02-18 11:51:14.547 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='capital_currency')
- 2024-02-18 11:51:14.547 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property capitalCurrency with lazy=false
- 2024-02-18 11:51:14.547 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Applying JPA converter [com.tnmaster.entities.Enterprise:capitalCurrency]
- 2024-02-18 11:51:14.547 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for capitalCurrency
- 2024-02-18 11:51:14.547 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.capital_currency
- 2024-02-18 11:51:14.548 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property capitalCurrency
- 2024-02-18 11:51:14.548 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='create_datetime')
- 2024-02-18 11:51:14.548 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property createDatetime with lazy=false
- 2024-02-18 11:51:14.548 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Enterprise:createDatetime]
- 2024-02-18 11:51:14.548 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for createDatetime
- 2024-02-18 11:51:14.548 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.create_datetime
- 2024-02-18 11:51:14.548 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property createDatetime
- 2024-02-18 11:51:14.548 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='credit_code_v1')
- 2024-02-18 11:51:14.548 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property creditCodeV1 with lazy=false
- 2024-02-18 11:51:14.548 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Enterprise:creditCodeV1]
- 2024-02-18 11:51:14.548 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for creditCodeV1
- 2024-02-18 11:51:14.548 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.credit_code_v1
- 2024-02-18 11:51:14.548 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property creditCodeV1
- 2024-02-18 11:51:14.548 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='data_score')
- 2024-02-18 11:51:14.548 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property dataScore with lazy=false
- 2024-02-18 11:51:14.548 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Enterprise:dataScore]
- 2024-02-18 11:51:14.548 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for dataScore
- 2024-02-18 11:51:14.548 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.data_score
- 2024-02-18 11:51:14.548 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property dataScore
- 2024-02-18 11:51:14.549 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='doc')
- 2024-02-18 11:51:14.549 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property doc with lazy=false
- 2024-02-18 11:51:14.549 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Enterprise:doc]
- 2024-02-18 11:51:14.549 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for doc
- 2024-02-18 11:51:14.549 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.doc
- 2024-02-18 11:51:14.549 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property doc
- 2024-02-18 11:51:14.549 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='employee_count')
- 2024-02-18 11:51:14.549 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property employeeCount with lazy=false
- 2024-02-18 11:51:14.549 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Enterprise:employeeCount]
- 2024-02-18 11:51:14.549 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for employeeCount
- 2024-02-18 11:51:14.549 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.employee_count
- 2024-02-18 11:51:14.549 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property employeeCount
- 2024-02-18 11:51:14.549 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='enterprise_type')
- 2024-02-18 11:51:14.549 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property enterpriseType with lazy=false
- 2024-02-18 11:51:14.549 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Enterprise:enterpriseType]
- 2024-02-18 11:51:14.549 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for enterpriseType
- 2024-02-18 11:51:14.549 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.enterprise_type
- 2024-02-18 11:51:14.549 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property enterpriseType
- 2024-02-18 11:51:14.549 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='industry_id')
- 2024-02-18 11:51:14.549 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property industryId with lazy=false
- 2024-02-18 11:51:14.549 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Enterprise:industryId]
- 2024-02-18 11:51:14.549 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for industryId
- 2024-02-18 11:51:14.549 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.industry_id
- 2024-02-18 11:51:14.550 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property industryId
- 2024-02-18 11:51:14.550 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='leader_name')
- 2024-02-18 11:51:14.550 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property leaderName with lazy=false
- 2024-02-18 11:51:14.550 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Enterprise:leaderName]
- 2024-02-18 11:51:14.550 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for leaderName
- 2024-02-18 11:51:14.550 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.leader_name
- 2024-02-18 11:51:14.550 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property leaderName
- 2024-02-18 11:51:14.550 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='leader_user_id')
- 2024-02-18 11:51:14.550 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property leaderUserId with lazy=false
- 2024-02-18 11:51:14.550 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Enterprise:leaderUserId]
- 2024-02-18 11:51:14.550 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for leaderUserId
- 2024-02-18 11:51:14.550 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.leader_user_id
- 2024-02-18 11:51:14.550 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property leaderUserId
- 2024-02-18 11:51:14.550 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='leader_user_info_id')
- 2024-02-18 11:51:14.550 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property leaderUserInfoId with lazy=false
- 2024-02-18 11:51:14.550 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Enterprise:leaderUserInfoId]
- 2024-02-18 11:51:14.550 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for leaderUserInfoId
- 2024-02-18 11:51:14.550 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.leader_user_info_id
- 2024-02-18 11:51:14.550 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property leaderUserInfoId
- 2024-02-18 11:51:14.550 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='logo_attachment_id')
- 2024-02-18 11:51:14.550 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property logoAttachmentId with lazy=false
- 2024-02-18 11:51:14.550 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Enterprise:logoAttachmentId]
- 2024-02-18 11:51:14.551 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for logoAttachmentId
- 2024-02-18 11:51:14.551 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.logo_attachment_id
- 2024-02-18 11:51:14.551 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property logoAttachmentId
- 2024-02-18 11:51:14.551 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='reg_capital')
- 2024-02-18 11:51:14.551 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property regCapital with lazy=false
- 2024-02-18 11:51:14.551 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Enterprise:regCapital]
- 2024-02-18 11:51:14.551 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for regCapital
- 2024-02-18 11:51:14.551 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.reg_capital
- 2024-02-18 11:51:14.551 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property regCapital
- 2024-02-18 11:51:14.551 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='reg_date')
- 2024-02-18 11:51:14.551 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property regDate with lazy=false
- 2024-02-18 11:51:14.551 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Enterprise:regDate]
- 2024-02-18 11:51:14.551 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for regDate
- 2024-02-18 11:51:14.551 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.reg_date
- 2024-02-18 11:51:14.551 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property regDate
- 2024-02-18 11:51:14.551 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='status')
- 2024-02-18 11:51:14.551 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property status with lazy=false
- 2024-02-18 11:51:14.551 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Enterprise:status]
- 2024-02-18 11:51:14.551 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for status
- 2024-02-18 11:51:14.551 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.status
- 2024-02-18 11:51:14.551 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property status
- 2024-02-18 11:51:14.552 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='title')
- 2024-02-18 11:51:14.552 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property title with lazy=false
- 2024-02-18 11:51:14.552 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Enterprise:title]
- 2024-02-18 11:51:14.552 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for title
- 2024-02-18 11:51:14.552 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.title
- 2024-02-18 11:51:14.552 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property title
- 2024-02-18 11:51:14.555 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: com.tnmaster.entities
- 2024-02-18 11:51:14.556 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity com.tnmaster.entities.Enterprise
- 2024-02-18 11:51:14.556 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity com.tnmaster.entities.Enterprise
- 2024-02-18 11:51:14.556 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity com.tnmaster.entities.Enterprise
- 2024-02-18 11:51:14.556 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity com.tnmaster.entities.Enterprise
- 2024-02-18 11:51:14.556 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: com.tnmaster.entities.EnterpriseEmail
- 2024-02-18 11:51:14.557 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name EnterpriseEmail
- 2024-02-18 11:51:14.557 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity com.tnmaster.entities.EnterpriseEmail on table enterprise_email
- 2024-02-18 11:51:14.557 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.558 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.558 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.EnterpriseEmail] is safe
- 2024-02-18 11:51:14.558 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.EnterpriseEmail
- 2024-02-18 11:51:14.558 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.558 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.EnterpriseEmail:id]
- 2024-02-18 11:51:14.558 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.558 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise_email.id
- 2024-02-18 11:51:14.558 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.558 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.558 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.558 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.558 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.EnterpriseEmail:crd]
- 2024-02-18 11:51:14.558 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.558 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise_email.crd
- 2024-02-18 11:51:14.558 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.558 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.558 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.558 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.EnterpriseEmail:ldf]
- 2024-02-18 11:51:14.558 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.558 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise_email.ldf
- 2024-02-18 11:51:14.558 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.558 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.559 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.559 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.EnterpriseEmail:mrd]
- 2024-02-18 11:51:14.559 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.559 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise_email.mrd
- 2024-02-18 11:51:14.559 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.559 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.559 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.559 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.EnterpriseEmail:rlv]
- 2024-02-18 11:51:14.559 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.559 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise_email.rlv
- 2024-02-18 11:51:14.559 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.559 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='email')
- 2024-02-18 11:51:14.559 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property email with lazy=false
- 2024-02-18 11:51:14.559 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.EnterpriseEmail:email]
- 2024-02-18 11:51:14.559 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for email
- 2024-02-18 11:51:14.559 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise_email.email
- 2024-02-18 11:51:14.559 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property email
- 2024-02-18 11:51:14.559 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='enterprise_id')
- 2024-02-18 11:51:14.559 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property enterpriseId with lazy=false
- 2024-02-18 11:51:14.559 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.EnterpriseEmail:enterpriseId]
- 2024-02-18 11:51:14.559 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for enterpriseId
- 2024-02-18 11:51:14.559 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise_email.enterprise_id
- 2024-02-18 11:51:14.559 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property enterpriseId
- 2024-02-18 11:51:14.560 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: com.tnmaster.entities
- 2024-02-18 11:51:14.560 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity com.tnmaster.entities.EnterpriseEmail
- 2024-02-18 11:51:14.560 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity com.tnmaster.entities.EnterpriseEmail
- 2024-02-18 11:51:14.560 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity com.tnmaster.entities.EnterpriseEmail
- 2024-02-18 11:51:14.560 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity com.tnmaster.entities.EnterpriseEmail
- 2024-02-18 11:51:14.561 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: com.tnmaster.entities.EnterpriseIndustry
- 2024-02-18 11:51:14.561 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name EnterpriseIndustry
- 2024-02-18 11:51:14.561 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity com.tnmaster.entities.EnterpriseIndustry on table enterprise_industry
- 2024-02-18 11:51:14.561 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.562 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.562 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.EnterpriseIndustry] is safe
- 2024-02-18 11:51:14.562 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.EnterpriseIndustry
- 2024-02-18 11:51:14.562 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.562 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.EnterpriseIndustry:id]
- 2024-02-18 11:51:14.562 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.562 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise_industry.id
- 2024-02-18 11:51:14.562 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.562 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.562 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.562 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.562 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.EnterpriseIndustry:crd]
- 2024-02-18 11:51:14.562 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.562 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise_industry.crd
- 2024-02-18 11:51:14.562 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.563 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.563 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.563 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.EnterpriseIndustry:ldf]
- 2024-02-18 11:51:14.563 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.563 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise_industry.ldf
- 2024-02-18 11:51:14.563 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.563 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.563 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.563 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.EnterpriseIndustry:mrd]
- 2024-02-18 11:51:14.563 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.563 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise_industry.mrd
- 2024-02-18 11:51:14.563 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.563 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.563 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.563 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.EnterpriseIndustry:rlv]
- 2024-02-18 11:51:14.563 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.563 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise_industry.rlv
- 2024-02-18 11:51:14.563 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.563 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='enterprise_id')
- 2024-02-18 11:51:14.563 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property enterpriseId with lazy=false
- 2024-02-18 11:51:14.563 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.EnterpriseIndustry:enterpriseId]
- 2024-02-18 11:51:14.563 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for enterpriseId
- 2024-02-18 11:51:14.563 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise_industry.enterprise_id
- 2024-02-18 11:51:14.563 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property enterpriseId
- 2024-02-18 11:51:14.564 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='industry_id')
- 2024-02-18 11:51:14.564 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property industryId with lazy=false
- 2024-02-18 11:51:14.564 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.EnterpriseIndustry:industryId]
- 2024-02-18 11:51:14.564 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for industryId
- 2024-02-18 11:51:14.564 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise_industry.industry_id
- 2024-02-18 11:51:14.564 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property industryId
- 2024-02-18 11:51:14.564 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: com.tnmaster.entities
- 2024-02-18 11:51:14.565 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity com.tnmaster.entities.EnterpriseIndustry
- 2024-02-18 11:51:14.565 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity com.tnmaster.entities.EnterpriseIndustry
- 2024-02-18 11:51:14.565 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity com.tnmaster.entities.EnterpriseIndustry
- 2024-02-18 11:51:14.565 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity com.tnmaster.entities.EnterpriseIndustry
- 2024-02-18 11:51:14.565 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: com.tnmaster.entities.EnterprisePhone
- 2024-02-18 11:51:14.566 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name EnterprisePhone
- 2024-02-18 11:51:14.566 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity com.tnmaster.entities.EnterprisePhone on table enterprise_phone
- 2024-02-18 11:51:14.566 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.567 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.567 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.EnterprisePhone] is safe
- 2024-02-18 11:51:14.567 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.EnterprisePhone
- 2024-02-18 11:51:14.567 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.567 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.EnterprisePhone:id]
- 2024-02-18 11:51:14.567 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.567 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise_phone.id
- 2024-02-18 11:51:14.567 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.567 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.567 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.568 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.568 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.EnterprisePhone:crd]
- 2024-02-18 11:51:14.568 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.568 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise_phone.crd
- 2024-02-18 11:51:14.568 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.569 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.569 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.569 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.EnterprisePhone:ldf]
- 2024-02-18 11:51:14.569 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.569 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise_phone.ldf
- 2024-02-18 11:51:14.569 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.569 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.569 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.569 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.EnterprisePhone:mrd]
- 2024-02-18 11:51:14.569 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.569 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise_phone.mrd
- 2024-02-18 11:51:14.569 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.570 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.570 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.570 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.EnterprisePhone:rlv]
- 2024-02-18 11:51:14.570 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.570 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise_phone.rlv
- 2024-02-18 11:51:14.570 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.571 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='enterprise_id')
- 2024-02-18 11:51:14.571 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property enterpriseId with lazy=false
- 2024-02-18 11:51:14.571 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.EnterprisePhone:enterpriseId]
- 2024-02-18 11:51:14.571 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for enterpriseId
- 2024-02-18 11:51:14.571 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise_phone.enterprise_id
- 2024-02-18 11:51:14.571 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property enterpriseId
- 2024-02-18 11:51:14.572 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='phone')
- 2024-02-18 11:51:14.572 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property phone with lazy=false
- 2024-02-18 11:51:14.572 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.EnterprisePhone:phone]
- 2024-02-18 11:51:14.572 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for phone
- 2024-02-18 11:51:14.572 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise_phone.phone
- 2024-02-18 11:51:14.572 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property phone
- 2024-02-18 11:51:14.572 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='phone_type')
- 2024-02-18 11:51:14.572 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property phoneType with lazy=false
- 2024-02-18 11:51:14.572 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.EnterprisePhone:phoneType]
- 2024-02-18 11:51:14.572 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for phoneType
- 2024-02-18 11:51:14.572 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise_phone.phone_type
- 2024-02-18 11:51:14.572 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property phoneType
- 2024-02-18 11:51:14.573 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: com.tnmaster.entities
- 2024-02-18 11:51:14.573 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity com.tnmaster.entities.EnterprisePhone
- 2024-02-18 11:51:14.573 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity com.tnmaster.entities.EnterprisePhone
- 2024-02-18 11:51:14.573 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity com.tnmaster.entities.EnterprisePhone
- 2024-02-18 11:51:14.574 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity com.tnmaster.entities.EnterprisePhone
- 2024-02-18 11:51:14.574 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: com.tnmaster.entities.EnterpriseUser
- 2024-02-18 11:51:14.574 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name EnterpriseUser
- 2024-02-18 11:51:14.574 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity com.tnmaster.entities.EnterpriseUser on table enterprise_user
- 2024-02-18 11:51:14.574 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.575 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.575 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.EnterpriseUser] is safe
- 2024-02-18 11:51:14.575 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.EnterpriseUser
- 2024-02-18 11:51:14.575 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.575 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.EnterpriseUser:id]
- 2024-02-18 11:51:14.575 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.575 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise_user.id
- 2024-02-18 11:51:14.575 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.575 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.576 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.576 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.576 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.EnterpriseUser:crd]
- 2024-02-18 11:51:14.576 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.576 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise_user.crd
- 2024-02-18 11:51:14.576 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.576 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.576 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.576 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.EnterpriseUser:ldf]
- 2024-02-18 11:51:14.576 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.576 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise_user.ldf
- 2024-02-18 11:51:14.576 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.576 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.576 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.576 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.EnterpriseUser:mrd]
- 2024-02-18 11:51:14.576 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.576 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise_user.mrd
- 2024-02-18 11:51:14.576 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.576 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.576 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.576 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.EnterpriseUser:rlv]
- 2024-02-18 11:51:14.576 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.576 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise_user.rlv
- 2024-02-18 11:51:14.576 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.577 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='enterprise_id')
- 2024-02-18 11:51:14.577 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property enterpriseId with lazy=false
- 2024-02-18 11:51:14.577 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.EnterpriseUser:enterpriseId]
- 2024-02-18 11:51:14.577 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for enterpriseId
- 2024-02-18 11:51:14.577 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise_user.enterprise_id
- 2024-02-18 11:51:14.577 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property enterpriseId
- 2024-02-18 11:51:14.577 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='title')
- 2024-02-18 11:51:14.577 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property title with lazy=false
- 2024-02-18 11:51:14.577 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.EnterpriseUser:title]
- 2024-02-18 11:51:14.577 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for title
- 2024-02-18 11:51:14.577 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise_user.title
- 2024-02-18 11:51:14.577 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property title
- 2024-02-18 11:51:14.577 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='user_id')
- 2024-02-18 11:51:14.577 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property userId with lazy=false
- 2024-02-18 11:51:14.577 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.EnterpriseUser:userId]
- 2024-02-18 11:51:14.577 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for userId
- 2024-02-18 11:51:14.577 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise_user.user_id
- 2024-02-18 11:51:14.577 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property userId
- 2024-02-18 11:51:14.577 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='user_info_id')
- 2024-02-18 11:51:14.577 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property userInfoId with lazy=false
- 2024-02-18 11:51:14.577 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.EnterpriseUser:userInfoId]
- 2024-02-18 11:51:14.577 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for userInfoId
- 2024-02-18 11:51:14.578 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise_user.user_info_id
- 2024-02-18 11:51:14.578 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property userInfoId
- 2024-02-18 11:51:14.578 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: com.tnmaster.entities
- 2024-02-18 11:51:14.578 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity com.tnmaster.entities.EnterpriseUser
- 2024-02-18 11:51:14.578 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity com.tnmaster.entities.EnterpriseUser
- 2024-02-18 11:51:14.578 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity com.tnmaster.entities.EnterpriseUser
- 2024-02-18 11:51:14.578 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity com.tnmaster.entities.EnterpriseUser
- 2024-02-18 11:51:14.578 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: com.tnmaster.entities.FullEnterprise
- 2024-02-18 11:51:14.579 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name FullEnterprise
- 2024-02-18 11:51:14.579 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity com.tnmaster.entities.FullEnterprise on table enterprise
- 2024-02-18 11:51:14.579 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.580 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.580 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.FullEnterprise] is safe
- 2024-02-18 11:51:14.580 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.FullEnterprise
- 2024-02-18 11:51:14.580 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.580 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.FullEnterprise:id]
- 2024-02-18 11:51:14.580 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.580 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.id
- 2024-02-18 11:51:14.580 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.580 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.581 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.581 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.581 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.FullEnterprise:crd]
- 2024-02-18 11:51:14.581 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.581 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.crd
- 2024-02-18 11:51:14.581 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.581 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.581 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.581 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.FullEnterprise:ldf]
- 2024-02-18 11:51:14.581 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.581 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.ldf
- 2024-02-18 11:51:14.581 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.581 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.581 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.581 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.FullEnterprise:mrd]
- 2024-02-18 11:51:14.581 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.581 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.mrd
- 2024-02-18 11:51:14.582 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.582 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.582 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.582 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.FullEnterprise:rlv]
- 2024-02-18 11:51:14.582 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.582 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.rlv
- 2024-02-18 11:51:14.582 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.582 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='nlv')
- 2024-02-18 11:51:14.583 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property nlv with lazy=false
- 2024-02-18 11:51:14.583 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.FullEnterprise:nlv]
- 2024-02-18 11:51:14.583 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for nlv
- 2024-02-18 11:51:14.583 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.nlv
- 2024-02-18 11:51:14.583 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property nlv
- 2024-02-18 11:51:14.583 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rln')
- 2024-02-18 11:51:14.583 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rln with lazy=false
- 2024-02-18 11:51:14.583 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.FullEnterprise:rln]
- 2024-02-18 11:51:14.583 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rln
- 2024-02-18 11:51:14.583 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.rln
- 2024-02-18 11:51:14.583 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rln
- 2024-02-18 11:51:14.583 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rpi')
- 2024-02-18 11:51:14.583 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rpi with lazy=false
- 2024-02-18 11:51:14.583 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.FullEnterprise:rpi]
- 2024-02-18 11:51:14.583 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rpi
- 2024-02-18 11:51:14.583 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.rpi
- 2024-02-18 11:51:14.583 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rpi
- 2024-02-18 11:51:14.584 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rrn')
- 2024-02-18 11:51:14.584 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rrn with lazy=false
- 2024-02-18 11:51:14.584 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.FullEnterprise:rrn]
- 2024-02-18 11:51:14.584 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rrn
- 2024-02-18 11:51:14.584 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.rrn
- 2024-02-18 11:51:14.584 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rrn
- 2024-02-18 11:51:14.584 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='tgi')
- 2024-02-18 11:51:14.584 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property tgi with lazy=false
- 2024-02-18 11:51:14.584 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.FullEnterprise:tgi]
- 2024-02-18 11:51:14.584 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for tgi
- 2024-02-18 11:51:14.584 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.tgi
- 2024-02-18 11:51:14.584 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property tgi
- 2024-02-18 11:51:14.586 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='address_code')
- 2024-02-18 11:51:14.586 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property addressCode with lazy=false
- 2024-02-18 11:51:14.586 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.FullEnterprise:addressCode]
- 2024-02-18 11:51:14.586 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for addressCode
- 2024-02-18 11:51:14.586 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.address_code
- 2024-02-18 11:51:14.587 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property addressCode
- 2024-02-18 11:51:14.587 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='address_details_id')
- 2024-02-18 11:51:14.587 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property addressDetailsId with lazy=false
- 2024-02-18 11:51:14.587 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.FullEnterprise:addressDetailsId]
- 2024-02-18 11:51:14.587 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for addressDetailsId
- 2024-02-18 11:51:14.587 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.address_details_id
- 2024-02-18 11:51:14.587 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property addressDetailsId
- 2024-02-18 11:51:14.587 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='capital_currency')
- 2024-02-18 11:51:14.587 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property capitalCurrency with lazy=false
- 2024-02-18 11:51:14.587 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Applying JPA converter [com.tnmaster.entities.FullEnterprise:capitalCurrency]
- 2024-02-18 11:51:14.587 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for capitalCurrency
- 2024-02-18 11:51:14.587 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.capital_currency
- 2024-02-18 11:51:14.587 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property capitalCurrency
- 2024-02-18 11:51:14.587 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='create_datetime')
- 2024-02-18 11:51:14.587 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property createDatetime with lazy=false
- 2024-02-18 11:51:14.587 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.FullEnterprise:createDatetime]
- 2024-02-18 11:51:14.587 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for createDatetime
- 2024-02-18 11:51:14.587 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.create_datetime
- 2024-02-18 11:51:14.587 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property createDatetime
- 2024-02-18 11:51:14.588 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='credit_code_v1')
- 2024-02-18 11:51:14.588 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property creditCodeV1 with lazy=false
- 2024-02-18 11:51:14.588 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.FullEnterprise:creditCodeV1]
- 2024-02-18 11:51:14.588 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for creditCodeV1
- 2024-02-18 11:51:14.588 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.credit_code_v1
- 2024-02-18 11:51:14.588 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property creditCodeV1
- 2024-02-18 11:51:14.588 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='data_score')
- 2024-02-18 11:51:14.588 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property dataScore with lazy=false
- 2024-02-18 11:51:14.588 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.FullEnterprise:dataScore]
- 2024-02-18 11:51:14.588 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for dataScore
- 2024-02-18 11:51:14.588 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.data_score
- 2024-02-18 11:51:14.588 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property dataScore
- 2024-02-18 11:51:14.588 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='doc')
- 2024-02-18 11:51:14.588 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property doc with lazy=false
- 2024-02-18 11:51:14.588 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.FullEnterprise:doc]
- 2024-02-18 11:51:14.588 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for doc
- 2024-02-18 11:51:14.588 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.doc
- 2024-02-18 11:51:14.588 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property doc
- 2024-02-18 11:51:14.589 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='employee_count')
- 2024-02-18 11:51:14.589 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property employeeCount with lazy=false
- 2024-02-18 11:51:14.589 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.FullEnterprise:employeeCount]
- 2024-02-18 11:51:14.589 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for employeeCount
- 2024-02-18 11:51:14.589 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.employee_count
- 2024-02-18 11:51:14.589 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property employeeCount
- 2024-02-18 11:51:14.589 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='enterprise_type')
- 2024-02-18 11:51:14.589 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property enterpriseType with lazy=false
- 2024-02-18 11:51:14.589 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.FullEnterprise:enterpriseType]
- 2024-02-18 11:51:14.589 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for enterpriseType
- 2024-02-18 11:51:14.589 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.enterprise_type
- 2024-02-18 11:51:14.589 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property enterpriseType
- 2024-02-18 11:51:14.589 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='industry_id')
- 2024-02-18 11:51:14.589 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property industryId with lazy=false
- 2024-02-18 11:51:14.589 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.FullEnterprise:industryId]
- 2024-02-18 11:51:14.589 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for industryId
- 2024-02-18 11:51:14.589 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.industry_id
- 2024-02-18 11:51:14.589 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property industryId
- 2024-02-18 11:51:14.589 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='leader_name')
- 2024-02-18 11:51:14.589 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property leaderName with lazy=false
- 2024-02-18 11:51:14.589 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.FullEnterprise:leaderName]
- 2024-02-18 11:51:14.589 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for leaderName
- 2024-02-18 11:51:14.590 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.leader_name
- 2024-02-18 11:51:14.590 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property leaderName
- 2024-02-18 11:51:14.590 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='leader_user_id')
- 2024-02-18 11:51:14.590 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property leaderUserId with lazy=false
- 2024-02-18 11:51:14.590 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.FullEnterprise:leaderUserId]
- 2024-02-18 11:51:14.590 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for leaderUserId
- 2024-02-18 11:51:14.590 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.leader_user_id
- 2024-02-18 11:51:14.590 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property leaderUserId
- 2024-02-18 11:51:14.590 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='leader_user_info_id')
- 2024-02-18 11:51:14.590 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property leaderUserInfoId with lazy=false
- 2024-02-18 11:51:14.590 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.FullEnterprise:leaderUserInfoId]
- 2024-02-18 11:51:14.590 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for leaderUserInfoId
- 2024-02-18 11:51:14.590 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.leader_user_info_id
- 2024-02-18 11:51:14.590 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property leaderUserInfoId
- 2024-02-18 11:51:14.590 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='logo_attachment_id')
- 2024-02-18 11:51:14.590 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property logoAttachmentId with lazy=false
- 2024-02-18 11:51:14.590 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.FullEnterprise:logoAttachmentId]
- 2024-02-18 11:51:14.590 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for logoAttachmentId
- 2024-02-18 11:51:14.590 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.logo_attachment_id
- 2024-02-18 11:51:14.590 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property logoAttachmentId
- 2024-02-18 11:51:14.591 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='reg_capital')
- 2024-02-18 11:51:14.591 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property regCapital with lazy=false
- 2024-02-18 11:51:14.591 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.FullEnterprise:regCapital]
- 2024-02-18 11:51:14.591 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for regCapital
- 2024-02-18 11:51:14.591 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.reg_capital
- 2024-02-18 11:51:14.591 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property regCapital
- 2024-02-18 11:51:14.591 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='reg_date')
- 2024-02-18 11:51:14.591 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property regDate with lazy=false
- 2024-02-18 11:51:14.591 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.FullEnterprise:regDate]
- 2024-02-18 11:51:14.591 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for regDate
- 2024-02-18 11:51:14.591 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.reg_date
- 2024-02-18 11:51:14.591 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property regDate
- 2024-02-18 11:51:14.591 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='status')
- 2024-02-18 11:51:14.591 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property status with lazy=false
- 2024-02-18 11:51:14.591 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.FullEnterprise:status]
- 2024-02-18 11:51:14.591 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for status
- 2024-02-18 11:51:14.591 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.status
- 2024-02-18 11:51:14.591 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property status
- 2024-02-18 11:51:14.591 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='title')
- 2024-02-18 11:51:14.591 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property title with lazy=false
- 2024-02-18 11:51:14.591 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.FullEnterprise:title]
- 2024-02-18 11:51:14.592 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for title
- 2024-02-18 11:51:14.592 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: enterprise.title
- 2024-02-18 11:51:14.592 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property title
- 2024-02-18 11:51:14.592 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn(column='enterprise_id',referencedColumn='id')
- 2024-02-18 11:51:14.592 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn()
- 2024-02-18 11:51:14.592 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: IndexColumn(column='emails_ORDER')
- 2024-02-18 11:51:14.592 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn()
- 2024-02-18 11:51:14.592 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='emails_KEY')
- 2024-02-18 11:51:14.592 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn(column='emails_KEY')
- 2024-02-18 11:51:14.592 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn()
- 2024-02-18 11:51:14.592 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn()
- 2024-02-18 11:51:14.592 [, - main] DEBUG o.hibernate.boot.model.internal.CollectionBinder - Collection role: com.tnmaster.entities.FullEnterprise.emails
- 2024-02-18 11:51:14.592 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property emails
- 2024-02-18 11:51:14.593 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn(column='enterprise_id',referencedColumn='id')
- 2024-02-18 11:51:14.593 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn()
- 2024-02-18 11:51:14.593 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: IndexColumn(column='phones_ORDER')
- 2024-02-18 11:51:14.593 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn()
- 2024-02-18 11:51:14.593 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='phones_KEY')
- 2024-02-18 11:51:14.593 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn(column='phones_KEY')
- 2024-02-18 11:51:14.593 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn()
- 2024-02-18 11:51:14.593 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn()
- 2024-02-18 11:51:14.593 [, - main] DEBUG o.hibernate.boot.model.internal.CollectionBinder - Collection role: com.tnmaster.entities.FullEnterprise.phones
- 2024-02-18 11:51:14.593 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property phones
- 2024-02-18 11:51:14.593 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: com.tnmaster.entities
- 2024-02-18 11:51:14.594 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity com.tnmaster.entities.FullEnterprise
- 2024-02-18 11:51:14.594 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity com.tnmaster.entities.FullEnterprise
- 2024-02-18 11:51:14.594 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity com.tnmaster.entities.FullEnterprise
- 2024-02-18 11:51:14.594 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity com.tnmaster.entities.FullEnterprise
- 2024-02-18 11:51:14.595 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: com.tnmaster.entities.Industry
- 2024-02-18 11:51:14.595 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name Industry
- 2024-02-18 11:51:14.595 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity com.tnmaster.entities.Industry on table industry
- 2024-02-18 11:51:14.595 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.596 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.596 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.Industry] is safe
- 2024-02-18 11:51:14.596 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.Industry
- 2024-02-18 11:51:14.596 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.596 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Industry:id]
- 2024-02-18 11:51:14.596 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.596 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: industry.id
- 2024-02-18 11:51:14.596 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.596 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.596 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.596 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.596 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Industry:crd]
- 2024-02-18 11:51:14.596 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.596 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: industry.crd
- 2024-02-18 11:51:14.596 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.596 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.596 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.596 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Industry:ldf]
- 2024-02-18 11:51:14.596 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.596 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: industry.ldf
- 2024-02-18 11:51:14.597 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.597 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.597 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.597 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Industry:mrd]
- 2024-02-18 11:51:14.597 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.597 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: industry.mrd
- 2024-02-18 11:51:14.597 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.597 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.597 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.597 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Industry:rlv]
- 2024-02-18 11:51:14.597 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.597 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: industry.rlv
- 2024-02-18 11:51:14.597 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.597 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='doc')
- 2024-02-18 11:51:14.597 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property doc with lazy=false
- 2024-02-18 11:51:14.597 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Industry:doc]
- 2024-02-18 11:51:14.597 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for doc
- 2024-02-18 11:51:14.597 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: industry.doc
- 2024-02-18 11:51:14.597 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property doc
- 2024-02-18 11:51:14.597 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='title')
- 2024-02-18 11:51:14.597 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property title with lazy=false
- 2024-02-18 11:51:14.597 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Industry:title]
- 2024-02-18 11:51:14.597 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for title
- 2024-02-18 11:51:14.598 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: industry.title
- 2024-02-18 11:51:14.598 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property title
- 2024-02-18 11:51:14.598 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: com.tnmaster.entities
- 2024-02-18 11:51:14.598 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity com.tnmaster.entities.Industry
- 2024-02-18 11:51:14.598 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity com.tnmaster.entities.Industry
- 2024-02-18 11:51:14.598 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity com.tnmaster.entities.Industry
- 2024-02-18 11:51:14.598 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity com.tnmaster.entities.Industry
- 2024-02-18 11:51:14.598 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: com.tnmaster.entities.Job
- 2024-02-18 11:51:14.599 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name Job
- 2024-02-18 11:51:14.599 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity com.tnmaster.entities.Job on table job
- 2024-02-18 11:51:14.599 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.604 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.604 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.Job] is safe
- 2024-02-18 11:51:14.604 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.Job
- 2024-02-18 11:51:14.604 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.604 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Job:id]
- 2024-02-18 11:51:14.604 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.604 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job.id
- 2024-02-18 11:51:14.604 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.604 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.605 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.605 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.605 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Job:crd]
- 2024-02-18 11:51:14.605 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.605 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job.crd
- 2024-02-18 11:51:14.605 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.605 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.605 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.605 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Job:ldf]
- 2024-02-18 11:51:14.605 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.605 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job.ldf
- 2024-02-18 11:51:14.605 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.605 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.605 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.605 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Job:mrd]
- 2024-02-18 11:51:14.605 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.605 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job.mrd
- 2024-02-18 11:51:14.605 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.605 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.605 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.605 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Job:rlv]
- 2024-02-18 11:51:14.605 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.605 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job.rlv
- 2024-02-18 11:51:14.605 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.606 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='address_code')
- 2024-02-18 11:51:14.606 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property addressCode with lazy=false
- 2024-02-18 11:51:14.606 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Job:addressCode]
- 2024-02-18 11:51:14.606 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for addressCode
- 2024-02-18 11:51:14.606 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job.address_code
- 2024-02-18 11:51:14.606 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property addressCode
- 2024-02-18 11:51:14.606 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='address_details_id')
- 2024-02-18 11:51:14.606 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property addressDetailsId with lazy=false
- 2024-02-18 11:51:14.606 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Job:addressDetailsId]
- 2024-02-18 11:51:14.606 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for addressDetailsId
- 2024-02-18 11:51:14.606 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job.address_details_id
- 2024-02-18 11:51:14.606 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property addressDetailsId
- 2024-02-18 11:51:14.606 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='audit_status')
- 2024-02-18 11:51:14.606 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property auditStatus with lazy=false
- 2024-02-18 11:51:14.606 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Applying JPA converter [com.tnmaster.entities.Job:auditStatus]
- 2024-02-18 11:51:14.606 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for auditStatus
- 2024-02-18 11:51:14.606 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job.audit_status
- 2024-02-18 11:51:14.606 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property auditStatus
- 2024-02-18 11:51:14.606 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='contact_name')
- 2024-02-18 11:51:14.607 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property contactName with lazy=false
- 2024-02-18 11:51:14.607 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Job:contactName]
- 2024-02-18 11:51:14.607 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for contactName
- 2024-02-18 11:51:14.607 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job.contact_name
- 2024-02-18 11:51:14.607 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property contactName
- 2024-02-18 11:51:14.607 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='create_datetime')
- 2024-02-18 11:51:14.607 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property createDatetime with lazy=false
- 2024-02-18 11:51:14.607 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Job:createDatetime]
- 2024-02-18 11:51:14.607 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for createDatetime
- 2024-02-18 11:51:14.607 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job.create_datetime
- 2024-02-18 11:51:14.607 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property createDatetime
- 2024-02-18 11:51:14.607 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='degree')
- 2024-02-18 11:51:14.607 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property degree with lazy=false
- 2024-02-18 11:51:14.607 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Applying JPA converter [com.tnmaster.entities.Job:degree]
- 2024-02-18 11:51:14.607 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for degree
- 2024-02-18 11:51:14.607 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job.degree
- 2024-02-18 11:51:14.607 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property degree
- 2024-02-18 11:51:14.608 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='dispatch_type')
- 2024-02-18 11:51:14.608 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property dispatchType with lazy=false
- 2024-02-18 11:51:14.608 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Job:dispatchType]
- 2024-02-18 11:51:14.608 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for dispatchType
- 2024-02-18 11:51:14.608 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job.dispatch_type
- 2024-02-18 11:51:14.608 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property dispatchType
- 2024-02-18 11:51:14.608 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='doc')
- 2024-02-18 11:51:14.608 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property doc with lazy=false
- 2024-02-18 11:51:14.608 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Job:doc]
- 2024-02-18 11:51:14.608 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for doc
- 2024-02-18 11:51:14.608 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job.doc
- 2024-02-18 11:51:14.608 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property doc
- 2024-02-18 11:51:14.608 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='end_date')
- 2024-02-18 11:51:14.609 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property endDate with lazy=false
- 2024-02-18 11:51:14.609 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Job:endDate]
- 2024-02-18 11:51:14.609 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for endDate
- 2024-02-18 11:51:14.609 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job.end_date
- 2024-02-18 11:51:14.609 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property endDate
- 2024-02-18 11:51:14.609 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='enterprise_id')
- 2024-02-18 11:51:14.609 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property enterpriseId with lazy=false
- 2024-02-18 11:51:14.609 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Job:enterpriseId]
- 2024-02-18 11:51:14.609 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for enterpriseId
- 2024-02-18 11:51:14.609 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job.enterprise_id
- 2024-02-18 11:51:14.609 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property enterpriseId
- 2024-02-18 11:51:14.609 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='enterprise_type')
- 2024-02-18 11:51:14.609 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property enterpriseType with lazy=false
- 2024-02-18 11:51:14.609 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Job:enterpriseType]
- 2024-02-18 11:51:14.609 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for enterpriseType
- 2024-02-18 11:51:14.609 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job.enterprise_type
- 2024-02-18 11:51:14.609 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property enterpriseType
- 2024-02-18 11:51:14.609 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='enterprise_user_id')
- 2024-02-18 11:51:14.609 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property enterpriseUserId with lazy=false
- 2024-02-18 11:51:14.609 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Job:enterpriseUserId]
- 2024-02-18 11:51:14.609 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for enterpriseUserId
- 2024-02-18 11:51:14.609 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job.enterprise_user_id
- 2024-02-18 11:51:14.609 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property enterpriseUserId
- 2024-02-18 11:51:14.610 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ex_year')
- 2024-02-18 11:51:14.610 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property exYear with lazy=false
- 2024-02-18 11:51:14.610 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Job:exYear]
- 2024-02-18 11:51:14.610 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for exYear
- 2024-02-18 11:51:14.610 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job.ex_year
- 2024-02-18 11:51:14.610 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property exYear
- 2024-02-18 11:51:14.610 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='industry_id')
- 2024-02-18 11:51:14.610 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property industryId with lazy=false
- 2024-02-18 11:51:14.610 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Job:industryId]
- 2024-02-18 11:51:14.610 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for industryId
- 2024-02-18 11:51:14.610 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job.industry_id
- 2024-02-18 11:51:14.610 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property industryId
- 2024-02-18 11:51:14.610 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='job_type')
- 2024-02-18 11:51:14.610 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property jobType with lazy=false
- 2024-02-18 11:51:14.610 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Job:jobType]
- 2024-02-18 11:51:14.610 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for jobType
- 2024-02-18 11:51:14.610 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job.job_type
- 2024-02-18 11:51:14.610 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property jobType
- 2024-02-18 11:51:14.612 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='landline')
- 2024-02-18 11:51:14.612 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property landline with lazy=false
- 2024-02-18 11:51:14.612 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Job:landline]
- 2024-02-18 11:51:14.612 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for landline
- 2024-02-18 11:51:14.612 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job.landline
- 2024-02-18 11:51:14.612 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property landline
- 2024-02-18 11:51:14.612 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='max_man_age')
- 2024-02-18 11:51:14.612 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property maxManAge with lazy=false
- 2024-02-18 11:51:14.612 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Job:maxManAge]
- 2024-02-18 11:51:14.612 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for maxManAge
- 2024-02-18 11:51:14.612 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job.max_man_age
- 2024-02-18 11:51:14.612 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property maxManAge
- 2024-02-18 11:51:14.613 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='max_salary')
- 2024-02-18 11:51:14.613 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property maxSalary with lazy=false
- 2024-02-18 11:51:14.613 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Job:maxSalary]
- 2024-02-18 11:51:14.613 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for maxSalary
- 2024-02-18 11:51:14.613 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job.max_salary
- 2024-02-18 11:51:14.613 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property maxSalary
- 2024-02-18 11:51:14.613 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='max_woman_age')
- 2024-02-18 11:51:14.613 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property maxWomanAge with lazy=false
- 2024-02-18 11:51:14.613 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Job:maxWomanAge]
- 2024-02-18 11:51:14.613 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for maxWomanAge
- 2024-02-18 11:51:14.613 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job.max_woman_age
- 2024-02-18 11:51:14.613 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property maxWomanAge
- 2024-02-18 11:51:14.613 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='min_man_age')
- 2024-02-18 11:51:14.613 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property minManAge with lazy=false
- 2024-02-18 11:51:14.613 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Job:minManAge]
- 2024-02-18 11:51:14.613 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for minManAge
- 2024-02-18 11:51:14.613 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job.min_man_age
- 2024-02-18 11:51:14.613 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property minManAge
- 2024-02-18 11:51:14.613 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='min_salary')
- 2024-02-18 11:51:14.613 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property minSalary with lazy=false
- 2024-02-18 11:51:14.613 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Job:minSalary]
- 2024-02-18 11:51:14.613 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for minSalary
- 2024-02-18 11:51:14.613 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job.min_salary
- 2024-02-18 11:51:14.614 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property minSalary
- 2024-02-18 11:51:14.614 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='min_woman_age')
- 2024-02-18 11:51:14.614 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property minWomanAge with lazy=false
- 2024-02-18 11:51:14.614 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Job:minWomanAge]
- 2024-02-18 11:51:14.614 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for minWomanAge
- 2024-02-18 11:51:14.614 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job.min_woman_age
- 2024-02-18 11:51:14.614 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property minWomanAge
- 2024-02-18 11:51:14.614 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ordered_weight')
- 2024-02-18 11:51:14.614 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property orderedWight with lazy=false
- 2024-02-18 11:51:14.614 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Job:orderedWight]
- 2024-02-18 11:51:14.614 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for orderedWight
- 2024-02-18 11:51:14.614 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job.ordered_weight
- 2024-02-18 11:51:14.614 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property orderedWight
- 2024-02-18 11:51:14.614 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='payday')
- 2024-02-18 11:51:14.614 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property payday with lazy=false
- 2024-02-18 11:51:14.614 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Job:payday]
- 2024-02-18 11:51:14.614 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for payday
- 2024-02-18 11:51:14.614 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job.payday
- 2024-02-18 11:51:14.614 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property payday
- 2024-02-18 11:51:14.614 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='phone')
- 2024-02-18 11:51:14.615 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property phone with lazy=false
- 2024-02-18 11:51:14.615 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Job:phone]
- 2024-02-18 11:51:14.615 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for phone
- 2024-02-18 11:51:14.615 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job.phone
- 2024-02-18 11:51:14.615 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property phone
- 2024-02-18 11:51:14.615 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='post_period')
- 2024-02-18 11:51:14.615 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property postPeriod with lazy=false
- 2024-02-18 11:51:14.615 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Job:postPeriod]
- 2024-02-18 11:51:14.615 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for postPeriod
- 2024-02-18 11:51:14.615 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job.post_period
- 2024-02-18 11:51:14.615 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property postPeriod
- 2024-02-18 11:51:14.615 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='post_resp')
- 2024-02-18 11:51:14.615 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property postResp with lazy=false
- 2024-02-18 11:51:14.615 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Job:postResp]
- 2024-02-18 11:51:14.615 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for postResp
- 2024-02-18 11:51:14.615 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job.post_resp
- 2024-02-18 11:51:14.615 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property postResp
- 2024-02-18 11:51:14.615 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='post_type')
- 2024-02-18 11:51:14.615 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property postType with lazy=false
- 2024-02-18 11:51:14.615 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Job:postType]
- 2024-02-18 11:51:14.615 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for postType
- 2024-02-18 11:51:14.615 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job.post_type
- 2024-02-18 11:51:14.615 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property postType
- 2024-02-18 11:51:14.616 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='qualification')
- 2024-02-18 11:51:14.616 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property qualification with lazy=false
- 2024-02-18 11:51:14.616 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Job:qualification]
- 2024-02-18 11:51:14.616 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for qualification
- 2024-02-18 11:51:14.616 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job.qualification
- 2024-02-18 11:51:14.616 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property qualification
- 2024-02-18 11:51:14.616 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rq_address_code')
- 2024-02-18 11:51:14.616 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rqAddressCode with lazy=false
- 2024-02-18 11:51:14.616 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Job:rqAddressCode]
- 2024-02-18 11:51:14.616 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rqAddressCode
- 2024-02-18 11:51:14.616 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job.rq_address_code
- 2024-02-18 11:51:14.616 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rqAddressCode
- 2024-02-18 11:51:14.616 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rq_count')
- 2024-02-18 11:51:14.616 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rqCount with lazy=false
- 2024-02-18 11:51:14.616 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Job:rqCount]
- 2024-02-18 11:51:14.616 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rqCount
- 2024-02-18 11:51:14.616 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job.rq_count
- 2024-02-18 11:51:14.616 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rqCount
- 2024-02-18 11:51:14.617 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rq_dis_rule')
- 2024-02-18 11:51:14.617 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rqDisRule with lazy=false
- 2024-02-18 11:51:14.617 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Job:rqDisRule]
- 2024-02-18 11:51:14.617 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rqDisRule
- 2024-02-18 11:51:14.617 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job.rq_dis_rule
- 2024-02-18 11:51:14.617 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rqDisRule
- 2024-02-18 11:51:14.617 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rq_gender')
- 2024-02-18 11:51:14.617 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rqGender with lazy=false
- 2024-02-18 11:51:14.617 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Applying JPA converter [com.tnmaster.entities.Job:rqGender]
- 2024-02-18 11:51:14.617 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rqGender
- 2024-02-18 11:51:14.617 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job.rq_gender
- 2024-02-18 11:51:14.617 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rqGender
- 2024-02-18 11:51:14.617 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='salary_commission_rule')
- 2024-02-18 11:51:14.617 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property salaryCommissionRule with lazy=false
- 2024-02-18 11:51:14.618 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Job:salaryCommissionRule]
- 2024-02-18 11:51:14.618 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for salaryCommissionRule
- 2024-02-18 11:51:14.618 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job.salary_commission_rule
- 2024-02-18 11:51:14.618 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property salaryCommissionRule
- 2024-02-18 11:51:14.618 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='start_date')
- 2024-02-18 11:51:14.618 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property startDate with lazy=false
- 2024-02-18 11:51:14.618 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Job:startDate]
- 2024-02-18 11:51:14.618 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for startDate
- 2024-02-18 11:51:14.618 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job.start_date
- 2024-02-18 11:51:14.618 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property startDate
- 2024-02-18 11:51:14.618 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='subsidy')
- 2024-02-18 11:51:14.618 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property subsidy with lazy=false
- 2024-02-18 11:51:14.618 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Job:subsidy]
- 2024-02-18 11:51:14.618 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for subsidy
- 2024-02-18 11:51:14.618 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job.subsidy
- 2024-02-18 11:51:14.618 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property subsidy
- 2024-02-18 11:51:14.618 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='title')
- 2024-02-18 11:51:14.618 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property title with lazy=false
- 2024-02-18 11:51:14.618 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.Job:title]
- 2024-02-18 11:51:14.619 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for title
- 2024-02-18 11:51:14.619 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job.title
- 2024-02-18 11:51:14.619 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property title
- 2024-02-18 11:51:14.619 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: com.tnmaster.entities
- 2024-02-18 11:51:14.620 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity com.tnmaster.entities.Job
- 2024-02-18 11:51:14.620 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity com.tnmaster.entities.Job
- 2024-02-18 11:51:14.620 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity com.tnmaster.entities.Job
- 2024-02-18 11:51:14.620 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity com.tnmaster.entities.Job
- 2024-02-18 11:51:14.621 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: com.tnmaster.entities.JobJobTag
- 2024-02-18 11:51:14.621 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name JobJobTag
- 2024-02-18 11:51:14.621 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity com.tnmaster.entities.JobJobTag on table job_job_tag
- 2024-02-18 11:51:14.621 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.622 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.622 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.JobJobTag] is safe
- 2024-02-18 11:51:14.622 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.JobJobTag
- 2024-02-18 11:51:14.622 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.622 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobJobTag:id]
- 2024-02-18 11:51:14.622 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.622 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_job_tag.id
- 2024-02-18 11:51:14.622 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.622 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.622 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.622 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.622 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobJobTag:crd]
- 2024-02-18 11:51:14.622 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.623 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_job_tag.crd
- 2024-02-18 11:51:14.623 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.623 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.623 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.623 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobJobTag:ldf]
- 2024-02-18 11:51:14.623 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.623 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_job_tag.ldf
- 2024-02-18 11:51:14.623 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.623 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.623 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.623 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobJobTag:mrd]
- 2024-02-18 11:51:14.623 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.623 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_job_tag.mrd
- 2024-02-18 11:51:14.623 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.623 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.623 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.623 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobJobTag:rlv]
- 2024-02-18 11:51:14.623 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.623 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_job_tag.rlv
- 2024-02-18 11:51:14.623 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.624 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='job_id')
- 2024-02-18 11:51:14.624 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property jobId with lazy=false
- 2024-02-18 11:51:14.624 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobJobTag:jobId]
- 2024-02-18 11:51:14.624 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for jobId
- 2024-02-18 11:51:14.624 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_job_tag.job_id
- 2024-02-18 11:51:14.624 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property jobId
- 2024-02-18 11:51:14.624 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='job_tag_id')
- 2024-02-18 11:51:14.624 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property jobTagId with lazy=false
- 2024-02-18 11:51:14.624 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobJobTag:jobTagId]
- 2024-02-18 11:51:14.624 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for jobTagId
- 2024-02-18 11:51:14.624 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_job_tag.job_tag_id
- 2024-02-18 11:51:14.624 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property jobTagId
- 2024-02-18 11:51:14.624 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: com.tnmaster.entities
- 2024-02-18 11:51:14.625 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity com.tnmaster.entities.JobJobTag
- 2024-02-18 11:51:14.625 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity com.tnmaster.entities.JobJobTag
- 2024-02-18 11:51:14.625 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity com.tnmaster.entities.JobJobTag
- 2024-02-18 11:51:14.625 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity com.tnmaster.entities.JobJobTag
- 2024-02-18 11:51:14.625 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: com.tnmaster.entities.JobRqCertRule
- 2024-02-18 11:51:14.625 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name JobRqCertRule
- 2024-02-18 11:51:14.626 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity com.tnmaster.entities.JobRqCertRule on table job_rq_cert_rule
- 2024-02-18 11:51:14.626 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.626 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.626 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.JobRqCertRule] is safe
- 2024-02-18 11:51:14.626 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.JobRqCertRule
- 2024-02-18 11:51:14.626 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.626 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobRqCertRule:id]
- 2024-02-18 11:51:14.626 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.626 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_rq_cert_rule.id
- 2024-02-18 11:51:14.626 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.626 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.627 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.627 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.627 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobRqCertRule:crd]
- 2024-02-18 11:51:14.627 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.627 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_rq_cert_rule.crd
- 2024-02-18 11:51:14.627 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.627 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.627 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.627 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobRqCertRule:ldf]
- 2024-02-18 11:51:14.627 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.627 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_rq_cert_rule.ldf
- 2024-02-18 11:51:14.627 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.627 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.627 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.627 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobRqCertRule:mrd]
- 2024-02-18 11:51:14.627 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.627 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_rq_cert_rule.mrd
- 2024-02-18 11:51:14.627 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.628 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.628 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.628 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobRqCertRule:rlv]
- 2024-02-18 11:51:14.628 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.628 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_rq_cert_rule.rlv
- 2024-02-18 11:51:14.628 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.628 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='job_id')
- 2024-02-18 11:51:14.628 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property jobId with lazy=false
- 2024-02-18 11:51:14.628 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobRqCertRule:jobId]
- 2024-02-18 11:51:14.628 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for jobId
- 2024-02-18 11:51:14.628 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_rq_cert_rule.job_id
- 2024-02-18 11:51:14.628 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property jobId
- 2024-02-18 11:51:14.628 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rq_cert_rule_id')
- 2024-02-18 11:51:14.628 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rqCertRuleId with lazy=false
- 2024-02-18 11:51:14.628 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobRqCertRule:rqCertRuleId]
- 2024-02-18 11:51:14.628 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rqCertRuleId
- 2024-02-18 11:51:14.628 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_rq_cert_rule.rq_cert_rule_id
- 2024-02-18 11:51:14.628 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rqCertRuleId
- 2024-02-18 11:51:14.629 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: com.tnmaster.entities
- 2024-02-18 11:51:14.629 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity com.tnmaster.entities.JobRqCertRule
- 2024-02-18 11:51:14.629 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity com.tnmaster.entities.JobRqCertRule
- 2024-02-18 11:51:14.629 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity com.tnmaster.entities.JobRqCertRule
- 2024-02-18 11:51:14.629 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity com.tnmaster.entities.JobRqCertRule
- 2024-02-18 11:51:14.629 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: com.tnmaster.entities.JobRuleAddress
- 2024-02-18 11:51:14.630 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name JobRuleAddress
- 2024-02-18 11:51:14.630 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity com.tnmaster.entities.JobRuleAddress on table job_rule_address
- 2024-02-18 11:51:14.630 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.631 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.631 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.JobRuleAddress] is safe
- 2024-02-18 11:51:14.631 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.JobRuleAddress
- 2024-02-18 11:51:14.631 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.631 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobRuleAddress:id]
- 2024-02-18 11:51:14.631 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.631 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_rule_address.id
- 2024-02-18 11:51:14.631 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.631 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.631 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.631 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.631 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobRuleAddress:crd]
- 2024-02-18 11:51:14.631 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.631 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_rule_address.crd
- 2024-02-18 11:51:14.631 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.632 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.632 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.632 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobRuleAddress:ldf]
- 2024-02-18 11:51:14.632 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.632 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_rule_address.ldf
- 2024-02-18 11:51:14.632 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.632 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.632 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.632 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobRuleAddress:mrd]
- 2024-02-18 11:51:14.632 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.632 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_rule_address.mrd
- 2024-02-18 11:51:14.632 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.632 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.632 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.632 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobRuleAddress:rlv]
- 2024-02-18 11:51:14.632 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.632 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_rule_address.rlv
- 2024-02-18 11:51:14.632 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.632 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='address_code')
- 2024-02-18 11:51:14.632 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property addressCode with lazy=false
- 2024-02-18 11:51:14.632 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobRuleAddress:addressCode]
- 2024-02-18 11:51:14.632 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for addressCode
- 2024-02-18 11:51:14.633 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_rule_address.address_code
- 2024-02-18 11:51:14.633 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property addressCode
- 2024-02-18 11:51:14.633 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='address_id')
- 2024-02-18 11:51:14.633 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property addressId with lazy=false
- 2024-02-18 11:51:14.633 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobRuleAddress:addressId]
- 2024-02-18 11:51:14.633 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for addressId
- 2024-02-18 11:51:14.633 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_rule_address.address_id
- 2024-02-18 11:51:14.633 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property addressId
- 2024-02-18 11:51:14.633 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='job_id')
- 2024-02-18 11:51:14.633 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property jobId with lazy=false
- 2024-02-18 11:51:14.633 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobRuleAddress:jobId]
- 2024-02-18 11:51:14.633 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for jobId
- 2024-02-18 11:51:14.633 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_rule_address.job_id
- 2024-02-18 11:51:14.633 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property jobId
- 2024-02-18 11:51:14.633 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rule_type')
- 2024-02-18 11:51:14.633 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ruleType with lazy=false
- 2024-02-18 11:51:14.634 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Applying JPA converter [com.tnmaster.entities.JobRuleAddress:ruleType]
- 2024-02-18 11:51:14.634 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ruleType
- 2024-02-18 11:51:14.634 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_rule_address.rule_type
- 2024-02-18 11:51:14.634 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ruleType
- 2024-02-18 11:51:14.634 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: com.tnmaster.entities
- 2024-02-18 11:51:14.634 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity com.tnmaster.entities.JobRuleAddress
- 2024-02-18 11:51:14.634 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity com.tnmaster.entities.JobRuleAddress
- 2024-02-18 11:51:14.634 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity com.tnmaster.entities.JobRuleAddress
- 2024-02-18 11:51:14.634 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity com.tnmaster.entities.JobRuleAddress
- 2024-02-18 11:51:14.635 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: com.tnmaster.entities.JobSeeker
- 2024-02-18 11:51:14.635 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name JobSeeker
- 2024-02-18 11:51:14.635 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity com.tnmaster.entities.JobSeeker on table job_seeker
- 2024-02-18 11:51:14.635 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.636 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.636 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.JobSeeker] is safe
- 2024-02-18 11:51:14.636 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.JobSeeker
- 2024-02-18 11:51:14.636 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.636 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobSeeker:id]
- 2024-02-18 11:51:14.636 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.636 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_seeker.id
- 2024-02-18 11:51:14.636 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.636 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.637 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.637 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.637 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobSeeker:crd]
- 2024-02-18 11:51:14.637 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.637 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_seeker.crd
- 2024-02-18 11:51:14.637 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.637 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.637 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.637 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobSeeker:ldf]
- 2024-02-18 11:51:14.637 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.637 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_seeker.ldf
- 2024-02-18 11:51:14.637 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.637 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.637 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.637 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobSeeker:mrd]
- 2024-02-18 11:51:14.637 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.637 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_seeker.mrd
- 2024-02-18 11:51:14.637 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.637 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.637 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.637 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobSeeker:rlv]
- 2024-02-18 11:51:14.637 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.637 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_seeker.rlv
- 2024-02-18 11:51:14.638 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.638 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='create_datetime')
- 2024-02-18 11:51:14.638 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property createDatetime with lazy=false
- 2024-02-18 11:51:14.638 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobSeeker:createDatetime]
- 2024-02-18 11:51:14.638 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for createDatetime
- 2024-02-18 11:51:14.638 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_seeker.create_datetime
- 2024-02-18 11:51:14.638 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property createDatetime
- 2024-02-18 11:51:14.638 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='degree')
- 2024-02-18 11:51:14.638 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property degree with lazy=false
- 2024-02-18 11:51:14.638 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Applying JPA converter [com.tnmaster.entities.JobSeeker:degree]
- 2024-02-18 11:51:14.638 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for degree
- 2024-02-18 11:51:14.638 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_seeker.degree
- 2024-02-18 11:51:14.638 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property degree
- 2024-02-18 11:51:14.638 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ex_address_code')
- 2024-02-18 11:51:14.638 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property exAddressCode with lazy=false
- 2024-02-18 11:51:14.638 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobSeeker:exAddressCode]
- 2024-02-18 11:51:14.638 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for exAddressCode
- 2024-02-18 11:51:14.638 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_seeker.ex_address_code
- 2024-02-18 11:51:14.638 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property exAddressCode
- 2024-02-18 11:51:14.639 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ex_industry_id')
- 2024-02-18 11:51:14.639 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property exIndustryId with lazy=false
- 2024-02-18 11:51:14.639 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobSeeker:exIndustryId]
- 2024-02-18 11:51:14.639 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for exIndustryId
- 2024-02-18 11:51:14.639 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_seeker.ex_industry_id
- 2024-02-18 11:51:14.639 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property exIndustryId
- 2024-02-18 11:51:14.639 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ex_max_salary')
- 2024-02-18 11:51:14.639 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property exMaxSalary with lazy=false
- 2024-02-18 11:51:14.639 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobSeeker:exMaxSalary]
- 2024-02-18 11:51:14.639 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for exMaxSalary
- 2024-02-18 11:51:14.639 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_seeker.ex_max_salary
- 2024-02-18 11:51:14.639 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property exMaxSalary
- 2024-02-18 11:51:14.639 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ex_min_salary')
- 2024-02-18 11:51:14.639 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property exMinSalary with lazy=false
- 2024-02-18 11:51:14.639 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobSeeker:exMinSalary]
- 2024-02-18 11:51:14.639 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for exMinSalary
- 2024-02-18 11:51:14.639 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_seeker.ex_min_salary
- 2024-02-18 11:51:14.639 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property exMinSalary
- 2024-02-18 11:51:14.639 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ex_remote')
- 2024-02-18 11:51:14.640 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property exRemote with lazy=false
- 2024-02-18 11:51:14.640 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobSeeker:exRemote]
- 2024-02-18 11:51:14.640 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for exRemote
- 2024-02-18 11:51:14.640 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_seeker.ex_remote
- 2024-02-18 11:51:14.640 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property exRemote
- 2024-02-18 11:51:14.640 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='reg_address_code')
- 2024-02-18 11:51:14.640 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property regAddressCode with lazy=false
- 2024-02-18 11:51:14.640 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobSeeker:regAddressCode]
- 2024-02-18 11:51:14.640 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for regAddressCode
- 2024-02-18 11:51:14.640 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_seeker.reg_address_code
- 2024-02-18 11:51:14.640 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property regAddressCode
- 2024-02-18 11:51:14.640 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rq_social')
- 2024-02-18 11:51:14.640 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rqSocial with lazy=false
- 2024-02-18 11:51:14.640 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobSeeker:rqSocial]
- 2024-02-18 11:51:14.640 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rqSocial
- 2024-02-18 11:51:14.640 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_seeker.rq_social
- 2024-02-18 11:51:14.640 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rqSocial
- 2024-02-18 11:51:14.640 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='user_id')
- 2024-02-18 11:51:14.640 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property userId with lazy=false
- 2024-02-18 11:51:14.640 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobSeeker:userId]
- 2024-02-18 11:51:14.640 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for userId
- 2024-02-18 11:51:14.640 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_seeker.user_id
- 2024-02-18 11:51:14.640 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property userId
- 2024-02-18 11:51:14.641 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: com.tnmaster.entities
- 2024-02-18 11:51:14.641 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity com.tnmaster.entities.JobSeeker
- 2024-02-18 11:51:14.641 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity com.tnmaster.entities.JobSeeker
- 2024-02-18 11:51:14.641 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity com.tnmaster.entities.JobSeeker
- 2024-02-18 11:51:14.641 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity com.tnmaster.entities.JobSeeker
- 2024-02-18 11:51:14.642 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: com.tnmaster.entities.JobSeekerSuperior
- 2024-02-18 11:51:14.642 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name JobSeekerSuperior
- 2024-02-18 11:51:14.642 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity com.tnmaster.entities.JobSeekerSuperior on table job_seeker_superior
- 2024-02-18 11:51:14.642 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.643 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.643 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.JobSeekerSuperior] is safe
- 2024-02-18 11:51:14.643 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.JobSeekerSuperior
- 2024-02-18 11:51:14.643 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.643 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobSeekerSuperior:id]
- 2024-02-18 11:51:14.643 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.643 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_seeker_superior.id
- 2024-02-18 11:51:14.643 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.643 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.643 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.643 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.643 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobSeekerSuperior:crd]
- 2024-02-18 11:51:14.643 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.643 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_seeker_superior.crd
- 2024-02-18 11:51:14.643 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.644 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.644 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.644 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobSeekerSuperior:ldf]
- 2024-02-18 11:51:14.644 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.644 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_seeker_superior.ldf
- 2024-02-18 11:51:14.644 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.644 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.644 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.644 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobSeekerSuperior:mrd]
- 2024-02-18 11:51:14.644 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.644 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_seeker_superior.mrd
- 2024-02-18 11:51:14.644 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.644 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.644 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.644 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobSeekerSuperior:rlv]
- 2024-02-18 11:51:14.644 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.644 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_seeker_superior.rlv
- 2024-02-18 11:51:14.644 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.645 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='create_datetime')
- 2024-02-18 11:51:14.645 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property createDatetime with lazy=false
- 2024-02-18 11:51:14.645 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobSeekerSuperior:createDatetime]
- 2024-02-18 11:51:14.645 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for createDatetime
- 2024-02-18 11:51:14.645 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_seeker_superior.create_datetime
- 2024-02-18 11:51:14.645 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property createDatetime
- 2024-02-18 11:51:14.645 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='end_datetime')
- 2024-02-18 11:51:14.645 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property endDatetime with lazy=false
- 2024-02-18 11:51:14.645 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobSeekerSuperior:endDatetime]
- 2024-02-18 11:51:14.645 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for endDatetime
- 2024-02-18 11:51:14.645 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_seeker_superior.end_datetime
- 2024-02-18 11:51:14.645 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property endDatetime
- 2024-02-18 11:51:14.645 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='subordinate_user_id')
- 2024-02-18 11:51:14.645 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property subordinateUserId with lazy=false
- 2024-02-18 11:51:14.645 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobSeekerSuperior:subordinateUserId]
- 2024-02-18 11:51:14.645 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for subordinateUserId
- 2024-02-18 11:51:14.645 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_seeker_superior.subordinate_user_id
- 2024-02-18 11:51:14.645 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property subordinateUserId
- 2024-02-18 11:51:14.645 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='superior_user_id')
- 2024-02-18 11:51:14.645 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property superiorUserId with lazy=false
- 2024-02-18 11:51:14.645 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobSeekerSuperior:superiorUserId]
- 2024-02-18 11:51:14.645 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for superiorUserId
- 2024-02-18 11:51:14.645 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_seeker_superior.superior_user_id
- 2024-02-18 11:51:14.645 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property superiorUserId
- 2024-02-18 11:51:14.646 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: com.tnmaster.entities
- 2024-02-18 11:51:14.646 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity com.tnmaster.entities.JobSeekerSuperior
- 2024-02-18 11:51:14.646 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity com.tnmaster.entities.JobSeekerSuperior
- 2024-02-18 11:51:14.646 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity com.tnmaster.entities.JobSeekerSuperior
- 2024-02-18 11:51:14.646 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity com.tnmaster.entities.JobSeekerSuperior
- 2024-02-18 11:51:14.647 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: com.tnmaster.entities.JobTag
- 2024-02-18 11:51:14.647 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name JobTag
- 2024-02-18 11:51:14.647 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity com.tnmaster.entities.JobTag on table job_tag
- 2024-02-18 11:51:14.647 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.648 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.648 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.JobTag] is safe
- 2024-02-18 11:51:14.648 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.JobTag
- 2024-02-18 11:51:14.648 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.648 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobTag:id]
- 2024-02-18 11:51:14.648 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.648 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_tag.id
- 2024-02-18 11:51:14.648 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.648 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.648 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.648 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.648 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobTag:crd]
- 2024-02-18 11:51:14.648 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.648 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_tag.crd
- 2024-02-18 11:51:14.648 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.648 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.648 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.648 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobTag:ldf]
- 2024-02-18 11:51:14.648 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.648 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_tag.ldf
- 2024-02-18 11:51:14.649 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.649 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.649 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.649 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobTag:mrd]
- 2024-02-18 11:51:14.649 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.649 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_tag.mrd
- 2024-02-18 11:51:14.649 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.649 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.649 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.649 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobTag:rlv]
- 2024-02-18 11:51:14.649 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.649 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_tag.rlv
- 2024-02-18 11:51:14.649 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.649 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='doc')
- 2024-02-18 11:51:14.649 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property doc with lazy=false
- 2024-02-18 11:51:14.649 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobTag:doc]
- 2024-02-18 11:51:14.649 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for doc
- 2024-02-18 11:51:14.649 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_tag.doc
- 2024-02-18 11:51:14.649 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property doc
- 2024-02-18 11:51:14.650 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='name')
- 2024-02-18 11:51:14.650 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property name with lazy=false
- 2024-02-18 11:51:14.650 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.JobTag:name]
- 2024-02-18 11:51:14.650 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for name
- 2024-02-18 11:51:14.650 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: job_tag.name
- 2024-02-18 11:51:14.650 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property name
- 2024-02-18 11:51:14.650 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: com.tnmaster.entities
- 2024-02-18 11:51:14.650 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity com.tnmaster.entities.JobTag
- 2024-02-18 11:51:14.650 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity com.tnmaster.entities.JobTag
- 2024-02-18 11:51:14.650 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity com.tnmaster.entities.JobTag
- 2024-02-18 11:51:14.650 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity com.tnmaster.entities.JobTag
- 2024-02-18 11:51:14.651 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: com.tnmaster.entities.RegShare
- 2024-02-18 11:51:14.651 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name RegShare
- 2024-02-18 11:51:14.651 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity com.tnmaster.entities.RegShare on table reg_share
- 2024-02-18 11:51:14.651 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.652 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.652 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.RegShare] is safe
- 2024-02-18 11:51:14.652 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.RegShare
- 2024-02-18 11:51:14.652 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.652 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.RegShare:id]
- 2024-02-18 11:51:14.652 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.652 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: reg_share.id
- 2024-02-18 11:51:14.652 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.652 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.652 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.652 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.653 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.RegShare:crd]
- 2024-02-18 11:51:14.653 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.653 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: reg_share.crd
- 2024-02-18 11:51:14.653 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.653 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.653 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.653 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.RegShare:ldf]
- 2024-02-18 11:51:14.653 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.653 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: reg_share.ldf
- 2024-02-18 11:51:14.653 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.653 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.653 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.653 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.RegShare:mrd]
- 2024-02-18 11:51:14.653 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.653 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: reg_share.mrd
- 2024-02-18 11:51:14.653 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.653 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.653 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.653 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.RegShare:rlv]
- 2024-02-18 11:51:14.653 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.653 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: reg_share.rlv
- 2024-02-18 11:51:14.653 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.654 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='reg_datetime')
- 2024-02-18 11:51:14.654 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property regDatetime with lazy=false
- 2024-02-18 11:51:14.654 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.RegShare:regDatetime]
- 2024-02-18 11:51:14.654 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for regDatetime
- 2024-02-18 11:51:14.654 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: reg_share.reg_datetime
- 2024-02-18 11:51:14.654 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property regDatetime
- 2024-02-18 11:51:14.654 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='reg_status')
- 2024-02-18 11:51:14.654 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property regStatus with lazy=false
- 2024-02-18 11:51:14.654 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.RegShare:regStatus]
- 2024-02-18 11:51:14.654 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for regStatus
- 2024-02-18 11:51:14.654 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: reg_share.reg_status
- 2024-02-18 11:51:14.654 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property regStatus
- 2024-02-18 11:51:14.654 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='share_code')
- 2024-02-18 11:51:14.654 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property shareCode with lazy=false
- 2024-02-18 11:51:14.654 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.RegShare:shareCode]
- 2024-02-18 11:51:14.654 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for shareCode
- 2024-02-18 11:51:14.654 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: reg_share.share_code
- 2024-02-18 11:51:14.654 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property shareCode
- 2024-02-18 11:51:14.655 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='share_datetime')
- 2024-02-18 11:51:14.655 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property shareDatetime with lazy=false
- 2024-02-18 11:51:14.655 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.RegShare:shareDatetime]
- 2024-02-18 11:51:14.655 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for shareDatetime
- 2024-02-18 11:51:14.655 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: reg_share.share_datetime
- 2024-02-18 11:51:14.655 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property shareDatetime
- 2024-02-18 11:51:14.655 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='share_end_datetime')
- 2024-02-18 11:51:14.655 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property shareEndDatetime with lazy=false
- 2024-02-18 11:51:14.655 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.RegShare:shareEndDatetime]
- 2024-02-18 11:51:14.655 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for shareEndDatetime
- 2024-02-18 11:51:14.655 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: reg_share.share_end_datetime
- 2024-02-18 11:51:14.655 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property shareEndDatetime
- 2024-02-18 11:51:14.655 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='share_enterprise_id')
- 2024-02-18 11:51:14.655 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property shareEnterpriseId with lazy=false
- 2024-02-18 11:51:14.655 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.RegShare:shareEnterpriseId]
- 2024-02-18 11:51:14.655 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for shareEnterpriseId
- 2024-02-18 11:51:14.655 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: reg_share.share_enterprise_id
- 2024-02-18 11:51:14.655 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property shareEnterpriseId
- 2024-02-18 11:51:14.655 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='share_user_id')
- 2024-02-18 11:51:14.655 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property shareUserId with lazy=false
- 2024-02-18 11:51:14.655 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.RegShare:shareUserId]
- 2024-02-18 11:51:14.656 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for shareUserId
- 2024-02-18 11:51:14.656 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: reg_share.share_user_id
- 2024-02-18 11:51:14.656 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property shareUserId
- 2024-02-18 11:51:14.656 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: com.tnmaster.entities
- 2024-02-18 11:51:14.656 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity com.tnmaster.entities.RegShare
- 2024-02-18 11:51:14.656 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity com.tnmaster.entities.RegShare
- 2024-02-18 11:51:14.656 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity com.tnmaster.entities.RegShare
- 2024-02-18 11:51:14.656 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity com.tnmaster.entities.RegShare
- 2024-02-18 11:51:14.657 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: com.tnmaster.entities.RqCertRule
- 2024-02-18 11:51:14.657 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name RqCertRule
- 2024-02-18 11:51:14.657 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity com.tnmaster.entities.RqCertRule on table rq_cert_rule
- 2024-02-18 11:51:14.657 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.658 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.658 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.RqCertRule] is safe
- 2024-02-18 11:51:14.658 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.RqCertRule
- 2024-02-18 11:51:14.658 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.658 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.RqCertRule:id]
- 2024-02-18 11:51:14.658 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.658 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: rq_cert_rule.id
- 2024-02-18 11:51:14.658 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.658 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.658 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.658 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.658 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.RqCertRule:crd]
- 2024-02-18 11:51:14.658 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.658 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: rq_cert_rule.crd
- 2024-02-18 11:51:14.658 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.659 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.659 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.659 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.RqCertRule:ldf]
- 2024-02-18 11:51:14.659 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.659 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: rq_cert_rule.ldf
- 2024-02-18 11:51:14.659 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.659 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.659 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.659 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.RqCertRule:mrd]
- 2024-02-18 11:51:14.659 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.659 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: rq_cert_rule.mrd
- 2024-02-18 11:51:14.659 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.659 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.659 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.659 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.RqCertRule:rlv]
- 2024-02-18 11:51:14.659 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.659 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: rq_cert_rule.rlv
- 2024-02-18 11:51:14.659 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.659 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='co_type')
- 2024-02-18 11:51:14.660 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property coType with lazy=false
- 2024-02-18 11:51:14.660 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Applying JPA converter [com.tnmaster.entities.RqCertRule:coType]
- 2024-02-18 11:51:14.660 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for coType
- 2024-02-18 11:51:14.660 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: rq_cert_rule.co_type
- 2024-02-18 11:51:14.660 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property coType
- 2024-02-18 11:51:14.660 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='do_type')
- 2024-02-18 11:51:14.660 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property doType with lazy=false
- 2024-02-18 11:51:14.660 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Applying JPA converter [com.tnmaster.entities.RqCertRule:doType]
- 2024-02-18 11:51:14.660 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for doType
- 2024-02-18 11:51:14.660 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: rq_cert_rule.do_type
- 2024-02-18 11:51:14.660 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property doType
- 2024-02-18 11:51:14.660 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='po_type')
- 2024-02-18 11:51:14.660 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property poType with lazy=false
- 2024-02-18 11:51:14.660 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Applying JPA converter [com.tnmaster.entities.RqCertRule:poType]
- 2024-02-18 11:51:14.660 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for poType
- 2024-02-18 11:51:14.660 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: rq_cert_rule.po_type
- 2024-02-18 11:51:14.660 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property poType
- 2024-02-18 11:51:14.660 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='remark')
- 2024-02-18 11:51:14.660 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property remark with lazy=false
- 2024-02-18 11:51:14.660 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.RqCertRule:remark]
- 2024-02-18 11:51:14.660 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for remark
- 2024-02-18 11:51:14.660 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: rq_cert_rule.remark
- 2024-02-18 11:51:14.660 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property remark
- 2024-02-18 11:51:14.661 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rq')
- 2024-02-18 11:51:14.661 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rq with lazy=false
- 2024-02-18 11:51:14.661 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.RqCertRule:rq]
- 2024-02-18 11:51:14.661 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rq
- 2024-02-18 11:51:14.661 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: rq_cert_rule.rq
- 2024-02-18 11:51:14.661 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rq
- 2024-02-18 11:51:14.661 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='title')
- 2024-02-18 11:51:14.661 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property title with lazy=false
- 2024-02-18 11:51:14.661 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.RqCertRule:title]
- 2024-02-18 11:51:14.661 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for title
- 2024-02-18 11:51:14.661 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: rq_cert_rule.title
- 2024-02-18 11:51:14.661 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property title
- 2024-02-18 11:51:14.661 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: com.tnmaster.entities
- 2024-02-18 11:51:14.662 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity com.tnmaster.entities.RqCertRule
- 2024-02-18 11:51:14.662 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity com.tnmaster.entities.RqCertRule
- 2024-02-18 11:51:14.662 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity com.tnmaster.entities.RqCertRule
- 2024-02-18 11:51:14.662 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity com.tnmaster.entities.RqCertRule
- 2024-02-18 11:51:14.662 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: com.tnmaster.entities.WorkExperience
- 2024-02-18 11:51:14.662 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name WorkExperience
- 2024-02-18 11:51:14.663 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity com.tnmaster.entities.WorkExperience on table work_experience
- 2024-02-18 11:51:14.663 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.663 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.663 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.WorkExperience] is safe
- 2024-02-18 11:51:14.663 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.WorkExperience
- 2024-02-18 11:51:14.663 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.663 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.WorkExperience:id]
- 2024-02-18 11:51:14.663 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.663 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: work_experience.id
- 2024-02-18 11:51:14.664 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.664 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.664 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.664 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.664 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.WorkExperience:crd]
- 2024-02-18 11:51:14.664 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.664 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: work_experience.crd
- 2024-02-18 11:51:14.664 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.664 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.664 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.664 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.WorkExperience:ldf]
- 2024-02-18 11:51:14.664 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.664 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: work_experience.ldf
- 2024-02-18 11:51:14.664 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.664 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.664 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.664 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.WorkExperience:mrd]
- 2024-02-18 11:51:14.664 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.664 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: work_experience.mrd
- 2024-02-18 11:51:14.664 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.665 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.665 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.665 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.WorkExperience:rlv]
- 2024-02-18 11:51:14.665 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.665 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: work_experience.rlv
- 2024-02-18 11:51:14.665 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.665 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='com_address_code')
- 2024-02-18 11:51:14.665 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property comAddressCode with lazy=false
- 2024-02-18 11:51:14.665 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.WorkExperience:comAddressCode]
- 2024-02-18 11:51:14.665 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for comAddressCode
- 2024-02-18 11:51:14.665 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: work_experience.com_address_code
- 2024-02-18 11:51:14.665 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property comAddressCode
- 2024-02-18 11:51:14.665 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='com_name')
- 2024-02-18 11:51:14.665 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property comName with lazy=false
- 2024-02-18 11:51:14.665 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.WorkExperience:comName]
- 2024-02-18 11:51:14.665 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for comName
- 2024-02-18 11:51:14.665 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: work_experience.com_name
- 2024-02-18 11:51:14.665 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property comName
- 2024-02-18 11:51:14.665 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='doc')
- 2024-02-18 11:51:14.665 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property doc with lazy=false
- 2024-02-18 11:51:14.665 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.WorkExperience:doc]
- 2024-02-18 11:51:14.665 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for doc
- 2024-02-18 11:51:14.665 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: work_experience.doc
- 2024-02-18 11:51:14.665 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property doc
- 2024-02-18 11:51:14.666 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='end_date')
- 2024-02-18 11:51:14.666 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property endDate with lazy=false
- 2024-02-18 11:51:14.666 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.WorkExperience:endDate]
- 2024-02-18 11:51:14.666 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for endDate
- 2024-02-18 11:51:14.666 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: work_experience.end_date
- 2024-02-18 11:51:14.666 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property endDate
- 2024-02-18 11:51:14.666 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='enterprise_id')
- 2024-02-18 11:51:14.666 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property enterpriseId with lazy=false
- 2024-02-18 11:51:14.666 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.WorkExperience:enterpriseId]
- 2024-02-18 11:51:14.666 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for enterpriseId
- 2024-02-18 11:51:14.666 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: work_experience.enterprise_id
- 2024-02-18 11:51:14.666 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property enterpriseId
- 2024-02-18 11:51:14.666 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='start_date')
- 2024-02-18 11:51:14.666 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property startDate with lazy=false
- 2024-02-18 11:51:14.666 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.WorkExperience:startDate]
- 2024-02-18 11:51:14.666 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for startDate
- 2024-02-18 11:51:14.666 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: work_experience.start_date
- 2024-02-18 11:51:14.666 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property startDate
- 2024-02-18 11:51:14.666 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='title')
- 2024-02-18 11:51:14.666 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property title with lazy=false
- 2024-02-18 11:51:14.666 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.WorkExperience:title]
- 2024-02-18 11:51:14.666 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for title
- 2024-02-18 11:51:14.666 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: work_experience.title
- 2024-02-18 11:51:14.666 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property title
- 2024-02-18 11:51:14.667 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='user_id')
- 2024-02-18 11:51:14.667 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property userId with lazy=false
- 2024-02-18 11:51:14.667 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [com.tnmaster.entities.WorkExperience:userId]
- 2024-02-18 11:51:14.667 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for userId
- 2024-02-18 11:51:14.667 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: work_experience.user_id
- 2024-02-18 11:51:14.667 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property userId
- 2024-02-18 11:51:14.667 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: com.tnmaster.entities
- 2024-02-18 11:51:14.667 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity com.tnmaster.entities.WorkExperience
- 2024-02-18 11:51:14.667 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity com.tnmaster.entities.WorkExperience
- 2024-02-18 11:51:14.667 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity com.tnmaster.entities.WorkExperience
- 2024-02-18 11:51:14.668 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity com.tnmaster.entities.WorkExperience
- 2024-02-18 11:51:14.668 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole
- 2024-02-18 11:51:14.668 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name RoleGroupRole
- 2024-02-18 11:51:14.668 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole on table role_group_role
- 2024-02-18 11:51:14.668 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.669 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.669 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole] is safe
- 2024-02-18 11:51:14.669 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole
- 2024-02-18 11:51:14.669 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.669 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole:id]
- 2024-02-18 11:51:14.669 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.669 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role_group_role.id
- 2024-02-18 11:51:14.669 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.669 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.669 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.669 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.669 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole:crd]
- 2024-02-18 11:51:14.669 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.669 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role_group_role.crd
- 2024-02-18 11:51:14.669 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.669 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.669 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.669 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole:ldf]
- 2024-02-18 11:51:14.670 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.670 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role_group_role.ldf
- 2024-02-18 11:51:14.670 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.670 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.670 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.670 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole:mrd]
- 2024-02-18 11:51:14.670 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.670 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role_group_role.mrd
- 2024-02-18 11:51:14.670 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.670 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.670 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.670 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole:rlv]
- 2024-02-18 11:51:14.670 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.670 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role_group_role.rlv
- 2024-02-18 11:51:14.670 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.670 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='role_group_id')
- 2024-02-18 11:51:14.671 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property roleGroupId with lazy=false
- 2024-02-18 11:51:14.671 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole:roleGroupId]
- 2024-02-18 11:51:14.671 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for roleGroupId
- 2024-02-18 11:51:14.671 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role_group_role.role_group_id
- 2024-02-18 11:51:14.671 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property roleGroupId
- 2024-02-18 11:51:14.671 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='role_id')
- 2024-02-18 11:51:14.671 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property roleId with lazy=false
- 2024-02-18 11:51:14.671 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole:roleId]
- 2024-02-18 11:51:14.671 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for roleId
- 2024-02-18 11:51:14.671 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role_group_role.role_id
- 2024-02-18 11:51:14.671 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property roleId
- 2024-02-18 11:51:14.671 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: io.github.truenine.composeserver.rds.entities.relationship
- 2024-02-18 11:51:14.672 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole
- 2024-02-18 11:51:14.672 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole
- 2024-02-18 11:51:14.672 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole
- 2024-02-18 11:51:14.672 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole
- 2024-02-18 11:51:14.672 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: io.github.truenine.composeserver.rds.entities.relationship.RolePermissions
- 2024-02-18 11:51:14.672 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name RolePermissions
- 2024-02-18 11:51:14.672 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity io.github.truenine.composeserver.rds.entities.relationship.RolePermissions on table role_permissions
- 2024-02-18 11:51:14.672 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.673 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.673 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.relationship.RolePermissions] is safe
- 2024-02-18 11:51:14.673 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.relationship.RolePermissions
- 2024-02-18 11:51:14.673 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.673 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.relationship.RolePermissions:id]
- 2024-02-18 11:51:14.673 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.673 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role_permissions.id
- 2024-02-18 11:51:14.673 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.673 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.673 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.673 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.673 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.relationship.RolePermissions:crd]
- 2024-02-18 11:51:14.673 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.673 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role_permissions.crd
- 2024-02-18 11:51:14.673 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.674 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.674 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.674 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.relationship.RolePermissions:ldf]
- 2024-02-18 11:51:14.674 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.674 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role_permissions.ldf
- 2024-02-18 11:51:14.674 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.674 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.674 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.674 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.relationship.RolePermissions:mrd]
- 2024-02-18 11:51:14.674 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.674 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role_permissions.mrd
- 2024-02-18 11:51:14.674 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.674 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.674 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.674 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.relationship.RolePermissions:rlv]
- 2024-02-18 11:51:14.674 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.674 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role_permissions.rlv
- 2024-02-18 11:51:14.674 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.675 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='permissions_id')
- 2024-02-18 11:51:14.675 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property permissionsId with lazy=false
- 2024-02-18 11:51:14.675 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.relationship.RolePermissions:permissionsId]
- 2024-02-18 11:51:14.675 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for permissionsId
- 2024-02-18 11:51:14.675 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role_permissions.permissions_id
- 2024-02-18 11:51:14.675 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property permissionsId
- 2024-02-18 11:51:14.675 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='role_id')
- 2024-02-18 11:51:14.675 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property roleId with lazy=false
- 2024-02-18 11:51:14.675 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.relationship.RolePermissions:roleId]
- 2024-02-18 11:51:14.675 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for roleId
- 2024-02-18 11:51:14.675 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role_permissions.role_id
- 2024-02-18 11:51:14.675 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property roleId
- 2024-02-18 11:51:14.675 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: io.github.truenine.composeserver.rds.entities.relationship
- 2024-02-18 11:51:14.676 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.relationship.RolePermissions
- 2024-02-18 11:51:14.676 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.relationship.RolePermissions
- 2024-02-18 11:51:14.676 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.relationship.RolePermissions
- 2024-02-18 11:51:14.676 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity io.github.truenine.composeserver.rds.entities.relationship.RolePermissions
- 2024-02-18 11:51:14.676 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup
- 2024-02-18 11:51:14.676 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name UserRoleGroup
- 2024-02-18 11:51:14.676 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup on table user_role_group
- 2024-02-18 11:51:14.676 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.677 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.677 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup] is safe
- 2024-02-18 11:51:14.677 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup
- 2024-02-18 11:51:14.677 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.677 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup:id]
- 2024-02-18 11:51:14.677 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.677 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_role_group.id
- 2024-02-18 11:51:14.677 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.677 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.677 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.677 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.677 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup:crd]
- 2024-02-18 11:51:14.677 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.677 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_role_group.crd
- 2024-02-18 11:51:14.677 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.677 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.677 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.677 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup:ldf]
- 2024-02-18 11:51:14.677 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.677 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_role_group.ldf
- 2024-02-18 11:51:14.677 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.678 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.678 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.678 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup:mrd]
- 2024-02-18 11:51:14.678 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.678 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_role_group.mrd
- 2024-02-18 11:51:14.678 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.678 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.678 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.678 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup:rlv]
- 2024-02-18 11:51:14.678 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.678 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_role_group.rlv
- 2024-02-18 11:51:14.678 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.678 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='role_group_id')
- 2024-02-18 11:51:14.678 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property roleGroupId with lazy=false
- 2024-02-18 11:51:14.678 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup:roleGroupId]
- 2024-02-18 11:51:14.678 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for roleGroupId
- 2024-02-18 11:51:14.678 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_role_group.role_group_id
- 2024-02-18 11:51:14.678 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property roleGroupId
- 2024-02-18 11:51:14.678 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='user_id')
- 2024-02-18 11:51:14.678 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property userId with lazy=false
- 2024-02-18 11:51:14.678 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup:userId]
- 2024-02-18 11:51:14.678 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for userId
- 2024-02-18 11:51:14.678 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_role_group.user_id
- 2024-02-18 11:51:14.679 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property userId
- 2024-02-18 11:51:14.679 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: io.github.truenine.composeserver.rds.entities.relationship
- 2024-02-18 11:51:14.679 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup
- 2024-02-18 11:51:14.679 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup
- 2024-02-18 11:51:14.679 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup
- 2024-02-18 11:51:14.679 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup
- 2024-02-18 11:51:14.679 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: io.github.truenine.composeserver.rds.entities.Address
- 2024-02-18 11:51:14.680 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name Address
- 2024-02-18 11:51:14.680 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity io.github.truenine.composeserver.rds.entities.Address on table address
- 2024-02-18 11:51:14.680 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.681 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.681 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.Address] is safe
- 2024-02-18 11:51:14.681 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.Address
- 2024-02-18 11:51:14.681 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.681 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Address:id]
- 2024-02-18 11:51:14.681 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.681 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address.id
- 2024-02-18 11:51:14.681 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.681 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.681 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.681 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.681 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Address:crd]
- 2024-02-18 11:51:14.681 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.682 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address.crd
- 2024-02-18 11:51:14.682 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.682 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.682 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.682 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Address:ldf]
- 2024-02-18 11:51:14.682 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.682 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address.ldf
- 2024-02-18 11:51:14.682 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.682 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.682 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.682 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Address:mrd]
- 2024-02-18 11:51:14.682 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.682 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address.mrd
- 2024-02-18 11:51:14.682 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.682 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.682 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.682 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Address:rlv]
- 2024-02-18 11:51:14.682 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.682 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address.rlv
- 2024-02-18 11:51:14.682 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.682 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='nlv')
- 2024-02-18 11:51:14.682 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property nlv with lazy=false
- 2024-02-18 11:51:14.682 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Address:nlv]
- 2024-02-18 11:51:14.682 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for nlv
- 2024-02-18 11:51:14.682 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address.nlv
- 2024-02-18 11:51:14.683 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property nlv
- 2024-02-18 11:51:14.683 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rln')
- 2024-02-18 11:51:14.683 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rln with lazy=false
- 2024-02-18 11:51:14.683 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Address:rln]
- 2024-02-18 11:51:14.683 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rln
- 2024-02-18 11:51:14.683 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address.rln
- 2024-02-18 11:51:14.683 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rln
- 2024-02-18 11:51:14.683 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rpi')
- 2024-02-18 11:51:14.683 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rpi with lazy=false
- 2024-02-18 11:51:14.683 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Address:rpi]
- 2024-02-18 11:51:14.683 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rpi
- 2024-02-18 11:51:14.683 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address.rpi
- 2024-02-18 11:51:14.683 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rpi
- 2024-02-18 11:51:14.683 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rrn')
- 2024-02-18 11:51:14.683 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rrn with lazy=false
- 2024-02-18 11:51:14.683 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Address:rrn]
- 2024-02-18 11:51:14.683 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rrn
- 2024-02-18 11:51:14.683 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address.rrn
- 2024-02-18 11:51:14.683 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rrn
- 2024-02-18 11:51:14.683 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='tgi')
- 2024-02-18 11:51:14.683 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property tgi with lazy=false
- 2024-02-18 11:51:14.683 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Address:tgi]
- 2024-02-18 11:51:14.683 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for tgi
- 2024-02-18 11:51:14.683 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address.tgi
- 2024-02-18 11:51:14.683 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property tgi
- 2024-02-18 11:51:14.684 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='center')
- 2024-02-18 11:51:14.684 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property center with lazy=false
- 2024-02-18 11:51:14.684 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Applying JPA converter [io.github.truenine.composeserver.rds.entities.Address:center]
- 2024-02-18 11:51:14.684 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for center
- 2024-02-18 11:51:14.684 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address.center
- 2024-02-18 11:51:14.684 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property center
- 2024-02-18 11:51:14.684 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='code')
- 2024-02-18 11:51:14.684 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property code with lazy=false
- 2024-02-18 11:51:14.684 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Address:code]
- 2024-02-18 11:51:14.684 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for code
- 2024-02-18 11:51:14.684 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address.code
- 2024-02-18 11:51:14.684 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property code
- 2024-02-18 11:51:14.684 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='leaf')
- 2024-02-18 11:51:14.684 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property leaf with lazy=false
- 2024-02-18 11:51:14.684 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Address:leaf]
- 2024-02-18 11:51:14.684 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for leaf
- 2024-02-18 11:51:14.684 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address.leaf
- 2024-02-18 11:51:14.684 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property leaf
- 2024-02-18 11:51:14.685 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='level')
- 2024-02-18 11:51:14.685 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property level with lazy=false
- 2024-02-18 11:51:14.685 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Address:level]
- 2024-02-18 11:51:14.685 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for level
- 2024-02-18 11:51:14.685 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address.level
- 2024-02-18 11:51:14.685 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property level
- 2024-02-18 11:51:14.685 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='name')
- 2024-02-18 11:51:14.685 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property name with lazy=false
- 2024-02-18 11:51:14.685 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Address:name]
- 2024-02-18 11:51:14.685 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for name
- 2024-02-18 11:51:14.685 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address.name
- 2024-02-18 11:51:14.685 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property name
- 2024-02-18 11:51:14.685 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='year_version')
- 2024-02-18 11:51:14.685 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property yearVersion with lazy=false
- 2024-02-18 11:51:14.685 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Address:yearVersion]
- 2024-02-18 11:51:14.685 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for yearVersion
- 2024-02-18 11:51:14.685 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address.year_version
- 2024-02-18 11:51:14.685 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property yearVersion
- 2024-02-18 11:51:14.686 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: io.github.truenine.composeserver.rds.entities
- 2024-02-18 11:51:14.686 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.Address
- 2024-02-18 11:51:14.686 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.Address
- 2024-02-18 11:51:14.686 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.Address
- 2024-02-18 11:51:14.686 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity io.github.truenine.composeserver.rds.entities.Address
- 2024-02-18 11:51:14.686 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: io.github.truenine.composeserver.rds.entities.AddressDetails
- 2024-02-18 11:51:14.687 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name AddressDetails
- 2024-02-18 11:51:14.687 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity io.github.truenine.composeserver.rds.entities.AddressDetails on table address_details
- 2024-02-18 11:51:14.687 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.688 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.688 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.AddressDetails] is safe
- 2024-02-18 11:51:14.688 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.AddressDetails
- 2024-02-18 11:51:14.688 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.688 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.AddressDetails:id]
- 2024-02-18 11:51:14.689 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.689 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address_details.id
- 2024-02-18 11:51:14.689 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.689 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.689 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.689 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.689 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.AddressDetails:crd]
- 2024-02-18 11:51:14.689 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.689 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address_details.crd
- 2024-02-18 11:51:14.689 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.689 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.689 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.689 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.AddressDetails:ldf]
- 2024-02-18 11:51:14.689 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.689 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address_details.ldf
- 2024-02-18 11:51:14.689 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.689 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.689 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.689 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.AddressDetails:mrd]
- 2024-02-18 11:51:14.689 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.690 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address_details.mrd
- 2024-02-18 11:51:14.690 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.690 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.690 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.690 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.AddressDetails:rlv]
- 2024-02-18 11:51:14.690 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.690 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address_details.rlv
- 2024-02-18 11:51:14.690 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.690 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='address_code')
- 2024-02-18 11:51:14.690 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property addressCode with lazy=false
- 2024-02-18 11:51:14.690 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.AddressDetails:addressCode]
- 2024-02-18 11:51:14.690 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for addressCode
- 2024-02-18 11:51:14.690 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address_details.address_code
- 2024-02-18 11:51:14.690 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property addressCode
- 2024-02-18 11:51:14.690 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='address_details')
- 2024-02-18 11:51:14.690 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property addressDetails with lazy=false
- 2024-02-18 11:51:14.690 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.AddressDetails:addressDetails]
- 2024-02-18 11:51:14.690 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for addressDetails
- 2024-02-18 11:51:14.690 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address_details.address_details
- 2024-02-18 11:51:14.690 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property addressDetails
- 2024-02-18 11:51:14.691 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='address_id')
- 2024-02-18 11:51:14.691 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property addressId with lazy=false
- 2024-02-18 11:51:14.691 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.AddressDetails:addressId]
- 2024-02-18 11:51:14.691 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for addressId
- 2024-02-18 11:51:14.691 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address_details.address_id
- 2024-02-18 11:51:14.691 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property addressId
- 2024-02-18 11:51:14.691 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='center')
- 2024-02-18 11:51:14.691 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property center with lazy=false
- 2024-02-18 11:51:14.691 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Applying JPA converter [io.github.truenine.composeserver.rds.entities.AddressDetails:center]
- 2024-02-18 11:51:14.691 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for center
- 2024-02-18 11:51:14.691 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address_details.center
- 2024-02-18 11:51:14.691 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property center
- 2024-02-18 11:51:14.691 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='name')
- 2024-02-18 11:51:14.691 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property name with lazy=false
- 2024-02-18 11:51:14.691 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.AddressDetails:name]
- 2024-02-18 11:51:14.691 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for name
- 2024-02-18 11:51:14.691 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address_details.name
- 2024-02-18 11:51:14.691 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property name
- 2024-02-18 11:51:14.691 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='phone')
- 2024-02-18 11:51:14.691 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property phone with lazy=false
- 2024-02-18 11:51:14.691 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.AddressDetails:phone]
- 2024-02-18 11:51:14.692 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for phone
- 2024-02-18 11:51:14.692 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address_details.phone
- 2024-02-18 11:51:14.692 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property phone
- 2024-02-18 11:51:14.692 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='user_id')
- 2024-02-18 11:51:14.692 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property userId with lazy=false
- 2024-02-18 11:51:14.692 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.AddressDetails:userId]
- 2024-02-18 11:51:14.692 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for userId
- 2024-02-18 11:51:14.692 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address_details.user_id
- 2024-02-18 11:51:14.692 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property userId
- 2024-02-18 11:51:14.692 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: io.github.truenine.composeserver.rds.entities
- 2024-02-18 11:51:14.693 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.AddressDetails
- 2024-02-18 11:51:14.693 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.AddressDetails
- 2024-02-18 11:51:14.693 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.AddressDetails
- 2024-02-18 11:51:14.693 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity io.github.truenine.composeserver.rds.entities.AddressDetails
- 2024-02-18 11:51:14.693 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: io.github.truenine.composeserver.rds.entities.Api
- 2024-02-18 11:51:14.693 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name Api
- 2024-02-18 11:51:14.693 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity io.github.truenine.composeserver.rds.entities.Api on table api
- 2024-02-18 11:51:14.694 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.694 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.694 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.Api] is safe
- 2024-02-18 11:51:14.694 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.Api
- 2024-02-18 11:51:14.694 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.694 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Api:id]
- 2024-02-18 11:51:14.694 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.694 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: api.id
- 2024-02-18 11:51:14.694 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.694 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.695 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.695 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.695 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Api:crd]
- 2024-02-18 11:51:14.695 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.695 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: api.crd
- 2024-02-18 11:51:14.695 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.695 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.695 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.695 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Api:ldf]
- 2024-02-18 11:51:14.695 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.695 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: api.ldf
- 2024-02-18 11:51:14.695 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.695 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.695 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.695 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Api:mrd]
- 2024-02-18 11:51:14.695 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.695 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: api.mrd
- 2024-02-18 11:51:14.695 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.696 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.696 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.696 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Api:rlv]
- 2024-02-18 11:51:14.696 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.696 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: api.rlv
- 2024-02-18 11:51:14.696 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.696 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='api_method')
- 2024-02-18 11:51:14.696 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property apiMethod with lazy=false
- 2024-02-18 11:51:14.696 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Api:apiMethod]
- 2024-02-18 11:51:14.696 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for apiMethod
- 2024-02-18 11:51:14.696 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: api.api_method
- 2024-02-18 11:51:14.696 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property apiMethod
- 2024-02-18 11:51:14.696 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='api_path')
- 2024-02-18 11:51:14.696 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property apiPath with lazy=false
- 2024-02-18 11:51:14.696 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Api:apiPath]
- 2024-02-18 11:51:14.696 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for apiPath
- 2024-02-18 11:51:14.696 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: api.api_path
- 2024-02-18 11:51:14.696 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property apiPath
- 2024-02-18 11:51:14.696 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='api_protocol')
- 2024-02-18 11:51:14.696 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property apiProtocol with lazy=false
- 2024-02-18 11:51:14.696 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Api:apiProtocol]
- 2024-02-18 11:51:14.696 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for apiProtocol
- 2024-02-18 11:51:14.696 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: api.api_protocol
- 2024-02-18 11:51:14.696 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property apiProtocol
- 2024-02-18 11:51:14.697 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='doc')
- 2024-02-18 11:51:14.697 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property doc with lazy=false
- 2024-02-18 11:51:14.697 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Api:doc]
- 2024-02-18 11:51:14.697 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for doc
- 2024-02-18 11:51:14.697 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: api.doc
- 2024-02-18 11:51:14.697 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property doc
- 2024-02-18 11:51:14.697 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='name')
- 2024-02-18 11:51:14.697 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property name with lazy=false
- 2024-02-18 11:51:14.697 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Api:name]
- 2024-02-18 11:51:14.697 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for name
- 2024-02-18 11:51:14.697 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: api.name
- 2024-02-18 11:51:14.697 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property name
- 2024-02-18 11:51:14.697 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn(column='permissions_id',referencedColumn='id')
- 2024-02-18 11:51:14.698 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn()
- 2024-02-18 11:51:14.698 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property permissions
- 2024-02-18 11:51:14.698 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: io.github.truenine.composeserver.rds.entities
- 2024-02-18 11:51:14.698 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.Api
- 2024-02-18 11:51:14.698 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.Api
- 2024-02-18 11:51:14.698 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.Api
- 2024-02-18 11:51:14.699 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity io.github.truenine.composeserver.rds.entities.Api
- 2024-02-18 11:51:14.699 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity
- 2024-02-18 11:51:14.699 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name ApiCallRecordIEntity
- 2024-02-18 11:51:14.699 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity on table api_call_record
- 2024-02-18 11:51:14.699 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.700 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.700 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity] is safe
- 2024-02-18 11:51:14.700 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity
- 2024-02-18 11:51:14.700 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.700 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity:id]
- 2024-02-18 11:51:14.700 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.700 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: api_call_record.id
- 2024-02-18 11:51:14.700 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.700 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.700 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.700 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.700 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity:crd]
- 2024-02-18 11:51:14.700 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.700 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: api_call_record.crd
- 2024-02-18 11:51:14.700 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.701 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.701 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.701 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity:ldf]
- 2024-02-18 11:51:14.701 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.701 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: api_call_record.ldf
- 2024-02-18 11:51:14.701 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.701 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.701 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.701 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity:mrd]
- 2024-02-18 11:51:14.701 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.701 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: api_call_record.mrd
- 2024-02-18 11:51:14.701 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.701 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.701 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.701 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity:rlv]
- 2024-02-18 11:51:14.701 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.701 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: api_call_record.rlv
- 2024-02-18 11:51:14.701 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.701 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn(column='api_id',referencedColumn='id')
- 2024-02-18 11:51:14.701 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn()
- 2024-02-18 11:51:14.701 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property api
- 2024-02-18 11:51:14.702 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='device_code')
- 2024-02-18 11:51:14.702 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property deviceCode with lazy=false
- 2024-02-18 11:51:14.702 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity:deviceCode]
- 2024-02-18 11:51:14.702 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for deviceCode
- 2024-02-18 11:51:14.702 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: api_call_record.device_code
- 2024-02-18 11:51:14.702 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property deviceCode
- 2024-02-18 11:51:14.702 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='login_ip')
- 2024-02-18 11:51:14.702 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property loginIp with lazy=false
- 2024-02-18 11:51:14.702 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity:loginIp]
- 2024-02-18 11:51:14.702 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for loginIp
- 2024-02-18 11:51:14.702 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: api_call_record.login_ip
- 2024-02-18 11:51:14.702 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property loginIp
- 2024-02-18 11:51:14.702 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='req_ip')
- 2024-02-18 11:51:14.702 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property reqIp with lazy=false
- 2024-02-18 11:51:14.702 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity:reqIp]
- 2024-02-18 11:51:14.702 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for reqIp
- 2024-02-18 11:51:14.702 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: api_call_record.req_ip
- 2024-02-18 11:51:14.702 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property reqIp
- 2024-02-18 11:51:14.702 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='resp_code')
- 2024-02-18 11:51:14.702 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property respCode with lazy=false
- 2024-02-18 11:51:14.702 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity:respCode]
- 2024-02-18 11:51:14.702 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for respCode
- 2024-02-18 11:51:14.702 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: api_call_record.resp_code
- 2024-02-18 11:51:14.702 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property respCode
- 2024-02-18 11:51:14.703 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='resp_result_enc')
- 2024-02-18 11:51:14.703 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property respResultEnc with lazy=false
- 2024-02-18 11:51:14.703 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity:respResultEnc]
- 2024-02-18 11:51:14.703 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for respResultEnc
- 2024-02-18 11:51:14.703 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: api_call_record.resp_result_enc
- 2024-02-18 11:51:14.703 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property respResultEnc
- 2024-02-18 11:51:14.703 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: io.github.truenine.composeserver.rds.entities
- 2024-02-18 11:51:14.703 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity
- 2024-02-18 11:51:14.703 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity
- 2024-02-18 11:51:14.703 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity
- 2024-02-18 11:51:14.703 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity
- 2024-02-18 11:51:14.704 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: io.github.truenine.composeserver.rds.entities.Attachment
- 2024-02-18 11:51:14.704 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name Attachment
- 2024-02-18 11:51:14.704 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity io.github.truenine.composeserver.rds.entities.Attachment on table attachment
- 2024-02-18 11:51:14.704 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.705 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.705 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.Attachment] is safe
- 2024-02-18 11:51:14.705 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.Attachment
- 2024-02-18 11:51:14.705 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.705 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Attachment:id]
- 2024-02-18 11:51:14.705 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.705 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: attachment.id
- 2024-02-18 11:51:14.706 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.706 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.706 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.706 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.706 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Attachment:crd]
- 2024-02-18 11:51:14.706 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.706 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: attachment.crd
- 2024-02-18 11:51:14.706 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.706 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.706 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.706 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Attachment:ldf]
- 2024-02-18 11:51:14.706 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.706 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: attachment.ldf
- 2024-02-18 11:51:14.706 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.706 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.706 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.706 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Attachment:mrd]
- 2024-02-18 11:51:14.706 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.706 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: attachment.mrd
- 2024-02-18 11:51:14.706 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.707 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.707 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.707 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Attachment:rlv]
- 2024-02-18 11:51:14.707 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.707 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: attachment.rlv
- 2024-02-18 11:51:14.707 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.707 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='att_type')
- 2024-02-18 11:51:14.707 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property attType with lazy=false
- 2024-02-18 11:51:14.707 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Attachment:attType]
- 2024-02-18 11:51:14.707 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for attType
- 2024-02-18 11:51:14.707 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: attachment.att_type
- 2024-02-18 11:51:14.707 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property attType
- 2024-02-18 11:51:14.707 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='base_uri')
- 2024-02-18 11:51:14.707 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property baseUri with lazy=false
- 2024-02-18 11:51:14.707 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Attachment:baseUri]
- 2024-02-18 11:51:14.707 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for baseUri
- 2024-02-18 11:51:14.707 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: attachment.base_uri
- 2024-02-18 11:51:14.707 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property baseUri
- 2024-02-18 11:51:14.707 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='base_url')
- 2024-02-18 11:51:14.707 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property baseUrl with lazy=false
- 2024-02-18 11:51:14.707 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Attachment:baseUrl]
- 2024-02-18 11:51:14.707 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for baseUrl
- 2024-02-18 11:51:14.708 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: attachment.base_url
- 2024-02-18 11:51:14.708 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property baseUrl
- 2024-02-18 11:51:14.708 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='meta_name')
- 2024-02-18 11:51:14.708 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property metaName with lazy=false
- 2024-02-18 11:51:14.708 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Attachment:metaName]
- 2024-02-18 11:51:14.708 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for metaName
- 2024-02-18 11:51:14.708 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: attachment.meta_name
- 2024-02-18 11:51:14.708 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property metaName
- 2024-02-18 11:51:14.708 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mime_type')
- 2024-02-18 11:51:14.708 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mimeType with lazy=false
- 2024-02-18 11:51:14.708 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Attachment:mimeType]
- 2024-02-18 11:51:14.708 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mimeType
- 2024-02-18 11:51:14.708 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: attachment.mime_type
- 2024-02-18 11:51:14.708 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mimeType
- 2024-02-18 11:51:14.708 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='save_name')
- 2024-02-18 11:51:14.708 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property saveName with lazy=false
- 2024-02-18 11:51:14.708 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Attachment:saveName]
- 2024-02-18 11:51:14.708 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for saveName
- 2024-02-18 11:51:14.708 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: attachment.save_name
- 2024-02-18 11:51:14.708 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property saveName
- 2024-02-18 11:51:14.708 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='size')
- 2024-02-18 11:51:14.708 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property size with lazy=false
- 2024-02-18 11:51:14.708 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Attachment:size]
- 2024-02-18 11:51:14.709 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for size
- 2024-02-18 11:51:14.709 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: attachment.size
- 2024-02-18 11:51:14.709 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property size
- 2024-02-18 11:51:14.709 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='url_doc')
- 2024-02-18 11:51:14.709 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property urlDoc with lazy=false
- 2024-02-18 11:51:14.709 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Attachment:urlDoc]
- 2024-02-18 11:51:14.709 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for urlDoc
- 2024-02-18 11:51:14.709 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: attachment.url_doc
- 2024-02-18 11:51:14.709 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property urlDoc
- 2024-02-18 11:51:14.709 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='url_id')
- 2024-02-18 11:51:14.709 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property urlId with lazy=false
- 2024-02-18 11:51:14.709 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Attachment:urlId]
- 2024-02-18 11:51:14.709 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for urlId
- 2024-02-18 11:51:14.709 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: attachment.url_id
- 2024-02-18 11:51:14.709 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property urlId
- 2024-02-18 11:51:14.709 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='url_name')
- 2024-02-18 11:51:14.709 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property urlName with lazy=false
- 2024-02-18 11:51:14.709 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Attachment:urlName]
- 2024-02-18 11:51:14.709 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for urlName
- 2024-02-18 11:51:14.709 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: attachment.url_name
- 2024-02-18 11:51:14.709 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property urlName
- 2024-02-18 11:51:14.710 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: io.github.truenine.composeserver.rds.entities
- 2024-02-18 11:51:14.710 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.Attachment
- 2024-02-18 11:51:14.710 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.Attachment
- 2024-02-18 11:51:14.710 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.Attachment
- 2024-02-18 11:51:14.710 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity io.github.truenine.composeserver.rds.entities.Attachment
- 2024-02-18 11:51:14.711 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: io.github.truenine.composeserver.rds.entities.Audit
- 2024-02-18 11:51:14.711 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name Audit
- 2024-02-18 11:51:14.711 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity io.github.truenine.composeserver.rds.entities.Audit on table audit
- 2024-02-18 11:51:14.711 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.712 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.712 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.Audit] is safe
- 2024-02-18 11:51:14.712 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.Audit
- 2024-02-18 11:51:14.712 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.712 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Audit:id]
- 2024-02-18 11:51:14.712 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.712 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: audit.id
- 2024-02-18 11:51:14.712 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.712 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.713 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.713 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.713 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Audit:crd]
- 2024-02-18 11:51:14.713 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.713 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: audit.crd
- 2024-02-18 11:51:14.713 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.713 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.713 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.713 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Audit:ldf]
- 2024-02-18 11:51:14.713 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.713 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: audit.ldf
- 2024-02-18 11:51:14.713 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.713 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.713 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.713 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Audit:mrd]
- 2024-02-18 11:51:14.713 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.713 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: audit.mrd
- 2024-02-18 11:51:14.713 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.713 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.713 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.713 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Audit:rlv]
- 2024-02-18 11:51:14.713 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.713 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: audit.rlv
- 2024-02-18 11:51:14.713 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.713 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='audit_device_id')
- 2024-02-18 11:51:14.714 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property auditDeviceId with lazy=false
- 2024-02-18 11:51:14.714 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Audit:auditDeviceId]
- 2024-02-18 11:51:14.714 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for auditDeviceId
- 2024-02-18 11:51:14.714 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: audit.audit_device_id
- 2024-02-18 11:51:14.714 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property auditDeviceId
- 2024-02-18 11:51:14.714 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='audit_ip')
- 2024-02-18 11:51:14.714 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property auditIp with lazy=false
- 2024-02-18 11:51:14.714 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Audit:auditIp]
- 2024-02-18 11:51:14.714 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for auditIp
- 2024-02-18 11:51:14.714 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: audit.audit_ip
- 2024-02-18 11:51:14.714 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property auditIp
- 2024-02-18 11:51:14.714 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='create_datetime')
- 2024-02-18 11:51:14.714 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property createDatetime with lazy=false
- 2024-02-18 11:51:14.714 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Audit:createDatetime]
- 2024-02-18 11:51:14.714 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for createDatetime
- 2024-02-18 11:51:14.714 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: audit.create_datetime
- 2024-02-18 11:51:14.714 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property createDatetime
- 2024-02-18 11:51:14.714 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ref_id')
- 2024-02-18 11:51:14.714 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property refId with lazy=false
- 2024-02-18 11:51:14.714 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Audit:refId]
- 2024-02-18 11:51:14.714 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for refId
- 2024-02-18 11:51:14.714 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: audit.ref_id
- 2024-02-18 11:51:14.714 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property refId
- 2024-02-18 11:51:14.714 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ref_type')
- 2024-02-18 11:51:14.714 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property refType with lazy=false
- 2024-02-18 11:51:14.714 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Audit:refType]
- 2024-02-18 11:51:14.714 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for refType
- 2024-02-18 11:51:14.714 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: audit.ref_type
- 2024-02-18 11:51:14.714 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property refType
- 2024-02-18 11:51:14.715 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='remark')
- 2024-02-18 11:51:14.715 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property remark with lazy=false
- 2024-02-18 11:51:14.715 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Audit:remark]
- 2024-02-18 11:51:14.715 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for remark
- 2024-02-18 11:51:14.715 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: audit.remark
- 2024-02-18 11:51:14.715 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property remark
- 2024-02-18 11:51:14.715 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='status')
- 2024-02-18 11:51:14.715 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property state with lazy=false
- 2024-02-18 11:51:14.715 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Applying JPA converter [io.github.truenine.composeserver.rds.entities.Audit:state]
- 2024-02-18 11:51:14.715 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for state
- 2024-02-18 11:51:14.715 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: audit.status
- 2024-02-18 11:51:14.715 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property state
- 2024-02-18 11:51:14.715 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: io.github.truenine.composeserver.rds.entities
- 2024-02-18 11:51:14.716 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.Audit
- 2024-02-18 11:51:14.716 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.Audit
- 2024-02-18 11:51:14.716 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.Audit
- 2024-02-18 11:51:14.716 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity io.github.truenine.composeserver.rds.entities.Audit
- 2024-02-18 11:51:14.716 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: io.github.truenine.composeserver.rds.entities.AuditAttachment
- 2024-02-18 11:51:14.717 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name AuditAttachment
- 2024-02-18 11:51:14.717 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity io.github.truenine.composeserver.rds.entities.AuditAttachment on table audit_attachment
- 2024-02-18 11:51:14.717 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.717 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.717 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.AuditAttachment] is safe
- 2024-02-18 11:51:14.717 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.AuditAttachment
- 2024-02-18 11:51:14.717 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.717 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.AuditAttachment:id]
- 2024-02-18 11:51:14.718 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.718 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: audit_attachment.id
- 2024-02-18 11:51:14.718 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.718 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.718 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.718 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.718 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.AuditAttachment:crd]
- 2024-02-18 11:51:14.718 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.718 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: audit_attachment.crd
- 2024-02-18 11:51:14.718 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.718 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.718 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.718 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.AuditAttachment:ldf]
- 2024-02-18 11:51:14.718 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.718 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: audit_attachment.ldf
- 2024-02-18 11:51:14.718 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.718 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.718 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.718 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.AuditAttachment:mrd]
- 2024-02-18 11:51:14.718 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.718 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: audit_attachment.mrd
- 2024-02-18 11:51:14.718 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.719 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.719 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.719 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.AuditAttachment:rlv]
- 2024-02-18 11:51:14.719 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.719 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: audit_attachment.rlv
- 2024-02-18 11:51:14.719 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.719 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='att_id')
- 2024-02-18 11:51:14.719 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property attId with lazy=false
- 2024-02-18 11:51:14.719 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.AuditAttachment:attId]
- 2024-02-18 11:51:14.719 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for attId
- 2024-02-18 11:51:14.719 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: audit_attachment.att_id
- 2024-02-18 11:51:14.719 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property attId
- 2024-02-18 11:51:14.719 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='audit_id')
- 2024-02-18 11:51:14.719 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property auditId with lazy=false
- 2024-02-18 11:51:14.719 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.AuditAttachment:auditId]
- 2024-02-18 11:51:14.719 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for auditId
- 2024-02-18 11:51:14.719 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: audit_attachment.audit_id
- 2024-02-18 11:51:14.719 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property auditId
- 2024-02-18 11:51:14.719 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='status')
- 2024-02-18 11:51:14.719 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property status with lazy=false
- 2024-02-18 11:51:14.719 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Applying JPA converter [io.github.truenine.composeserver.rds.entities.AuditAttachment:status]
- 2024-02-18 11:51:14.719 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for status
- 2024-02-18 11:51:14.719 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: audit_attachment.status
- 2024-02-18 11:51:14.719 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property status
- 2024-02-18 11:51:14.720 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: io.github.truenine.composeserver.rds.entities
- 2024-02-18 11:51:14.720 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.AuditAttachment
- 2024-02-18 11:51:14.720 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.AuditAttachment
- 2024-02-18 11:51:14.720 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.AuditAttachment
- 2024-02-18 11:51:14.720 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity io.github.truenine.composeserver.rds.entities.AuditAttachment
- 2024-02-18 11:51:14.720 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: io.github.truenine.composeserver.rds.entities.cert.BankCard
- 2024-02-18 11:51:14.721 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name BankCard
- 2024-02-18 11:51:14.721 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity io.github.truenine.composeserver.rds.entities.cert.BankCard on table bank_card
- 2024-02-18 11:51:14.721 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.722 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.722 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.cert.BankCard] is safe
- 2024-02-18 11:51:14.722 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.cert.BankCard
- 2024-02-18 11:51:14.722 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.722 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.BankCard:id]
- 2024-02-18 11:51:14.722 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.722 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: bank_card.id
- 2024-02-18 11:51:14.722 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.722 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.722 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.722 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.722 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.BankCard:crd]
- 2024-02-18 11:51:14.722 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.722 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: bank_card.crd
- 2024-02-18 11:51:14.722 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.722 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.722 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.722 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.BankCard:ldf]
- 2024-02-18 11:51:14.722 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.722 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: bank_card.ldf
- 2024-02-18 11:51:14.722 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.723 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.723 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.723 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.BankCard:mrd]
- 2024-02-18 11:51:14.723 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.723 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: bank_card.mrd
- 2024-02-18 11:51:14.723 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.723 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.723 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.723 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.BankCard:rlv]
- 2024-02-18 11:51:14.723 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.723 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: bank_card.rlv
- 2024-02-18 11:51:14.723 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.723 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='nlv')
- 2024-02-18 11:51:14.723 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property nlv with lazy=false
- 2024-02-18 11:51:14.723 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.BankCard:nlv]
- 2024-02-18 11:51:14.723 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for nlv
- 2024-02-18 11:51:14.723 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: bank_card.nlv
- 2024-02-18 11:51:14.723 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property nlv
- 2024-02-18 11:51:14.723 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rln')
- 2024-02-18 11:51:14.724 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rln with lazy=false
- 2024-02-18 11:51:14.724 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.BankCard:rln]
- 2024-02-18 11:51:14.724 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rln
- 2024-02-18 11:51:14.724 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: bank_card.rln
- 2024-02-18 11:51:14.724 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rln
- 2024-02-18 11:51:14.724 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rpi')
- 2024-02-18 11:51:14.724 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rpi with lazy=false
- 2024-02-18 11:51:14.724 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.BankCard:rpi]
- 2024-02-18 11:51:14.724 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rpi
- 2024-02-18 11:51:14.724 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: bank_card.rpi
- 2024-02-18 11:51:14.724 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rpi
- 2024-02-18 11:51:14.724 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rrn')
- 2024-02-18 11:51:14.724 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rrn with lazy=false
- 2024-02-18 11:51:14.724 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.BankCard:rrn]
- 2024-02-18 11:51:14.724 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rrn
- 2024-02-18 11:51:14.724 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: bank_card.rrn
- 2024-02-18 11:51:14.724 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rrn
- 2024-02-18 11:51:14.724 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='tgi')
- 2024-02-18 11:51:14.724 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property tgi with lazy=false
- 2024-02-18 11:51:14.724 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.BankCard:tgi]
- 2024-02-18 11:51:14.724 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for tgi
- 2024-02-18 11:51:14.724 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: bank_card.tgi
- 2024-02-18 11:51:14.724 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property tgi
- 2024-02-18 11:51:14.725 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='bank_group')
- 2024-02-18 11:51:14.725 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property bankGroup with lazy=false
- 2024-02-18 11:51:14.725 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.BankCard:bankGroup]
- 2024-02-18 11:51:14.725 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for bankGroup
- 2024-02-18 11:51:14.725 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: bank_card.bank_group
- 2024-02-18 11:51:14.725 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property bankGroup
- 2024-02-18 11:51:14.725 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='bank_type')
- 2024-02-18 11:51:14.725 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property bankType with lazy=false
- 2024-02-18 11:51:14.725 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.BankCard:bankType]
- 2024-02-18 11:51:14.725 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for bankType
- 2024-02-18 11:51:14.725 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: bank_card.bank_type
- 2024-02-18 11:51:14.725 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property bankType
- 2024-02-18 11:51:14.725 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='code')
- 2024-02-18 11:51:14.725 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property code with lazy=false
- 2024-02-18 11:51:14.725 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.BankCard:code]
- 2024-02-18 11:51:14.725 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for code
- 2024-02-18 11:51:14.725 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: bank_card.code
- 2024-02-18 11:51:14.725 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property code
- 2024-02-18 11:51:14.725 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='country')
- 2024-02-18 11:51:14.725 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property country with lazy=false
- 2024-02-18 11:51:14.725 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.BankCard:country]
- 2024-02-18 11:51:14.725 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for country
- 2024-02-18 11:51:14.725 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: bank_card.country
- 2024-02-18 11:51:14.726 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property country
- 2024-02-18 11:51:14.726 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='issue_address_details')
- 2024-02-18 11:51:14.726 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property issueAddressDetails with lazy=false
- 2024-02-18 11:51:14.726 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.BankCard:issueAddressDetails]
- 2024-02-18 11:51:14.726 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for issueAddressDetails
- 2024-02-18 11:51:14.726 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: bank_card.issue_address_details
- 2024-02-18 11:51:14.726 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property issueAddressDetails
- 2024-02-18 11:51:14.726 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='reserve_phone')
- 2024-02-18 11:51:14.726 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property reservePhone with lazy=false
- 2024-02-18 11:51:14.726 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.BankCard:reservePhone]
- 2024-02-18 11:51:14.726 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for reservePhone
- 2024-02-18 11:51:14.726 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: bank_card.reserve_phone
- 2024-02-18 11:51:14.726 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property reservePhone
- 2024-02-18 11:51:14.726 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='user_id')
- 2024-02-18 11:51:14.726 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property userId with lazy=false
- 2024-02-18 11:51:14.726 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.BankCard:userId]
- 2024-02-18 11:51:14.726 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for userId
- 2024-02-18 11:51:14.726 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: bank_card.user_id
- 2024-02-18 11:51:14.726 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property userId
- 2024-02-18 11:51:14.726 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='user_info_id')
- 2024-02-18 11:51:14.726 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property userInfoId with lazy=false
- 2024-02-18 11:51:14.726 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.BankCard:userInfoId]
- 2024-02-18 11:51:14.726 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for userInfoId
- 2024-02-18 11:51:14.726 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: bank_card.user_info_id
- 2024-02-18 11:51:14.726 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property userInfoId
- 2024-02-18 11:51:14.727 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: io.github.truenine.composeserver.rds.entities.cert
- 2024-02-18 11:51:14.727 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.cert.BankCard
- 2024-02-18 11:51:14.727 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.cert.BankCard
- 2024-02-18 11:51:14.727 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.cert.BankCard
- 2024-02-18 11:51:14.728 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity io.github.truenine.composeserver.rds.entities.cert.BankCard
- 2024-02-18 11:51:14.728 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: io.github.truenine.composeserver.rds.entities.cert.BizCert
- 2024-02-18 11:51:14.728 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name BizCert
- 2024-02-18 11:51:14.728 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity io.github.truenine.composeserver.rds.entities.cert.BizCert on table biz_cert
- 2024-02-18 11:51:14.728 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.729 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.729 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.cert.BizCert] is safe
- 2024-02-18 11:51:14.729 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.cert.BizCert
- 2024-02-18 11:51:14.729 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.729 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.BizCert:id]
- 2024-02-18 11:51:14.729 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.729 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: biz_cert.id
- 2024-02-18 11:51:14.729 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.729 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.730 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.730 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.730 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.BizCert:crd]
- 2024-02-18 11:51:14.730 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.730 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: biz_cert.crd
- 2024-02-18 11:51:14.730 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.730 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.730 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.730 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.BizCert:ldf]
- 2024-02-18 11:51:14.730 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.730 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: biz_cert.ldf
- 2024-02-18 11:51:14.730 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.730 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.730 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.730 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.BizCert:mrd]
- 2024-02-18 11:51:14.730 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.730 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: biz_cert.mrd
- 2024-02-18 11:51:14.730 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.730 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.730 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.730 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.BizCert:rlv]
- 2024-02-18 11:51:14.730 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.730 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: biz_cert.rlv
- 2024-02-18 11:51:14.730 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.731 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='address_code')
- 2024-02-18 11:51:14.731 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property addressCode with lazy=false
- 2024-02-18 11:51:14.731 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.BizCert:addressCode]
- 2024-02-18 11:51:14.731 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for addressCode
- 2024-02-18 11:51:14.731 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: biz_cert.address_code
- 2024-02-18 11:51:14.731 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property addressCode
- 2024-02-18 11:51:14.731 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='address_details_id')
- 2024-02-18 11:51:14.731 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property addressDetailsId with lazy=false
- 2024-02-18 11:51:14.731 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.BizCert:addressDetailsId]
- 2024-02-18 11:51:14.731 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for addressDetailsId
- 2024-02-18 11:51:14.731 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: biz_cert.address_details_id
- 2024-02-18 11:51:14.731 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property addressDetailsId
- 2024-02-18 11:51:14.731 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='biz_range')
- 2024-02-18 11:51:14.731 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property bizRange with lazy=false
- 2024-02-18 11:51:14.731 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.BizCert:bizRange]
- 2024-02-18 11:51:14.731 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for bizRange
- 2024-02-18 11:51:14.731 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: biz_cert.biz_range
- 2024-02-18 11:51:14.731 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property bizRange
- 2024-02-18 11:51:14.732 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='create_date')
- 2024-02-18 11:51:14.732 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property createDate with lazy=false
- 2024-02-18 11:51:14.732 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.BizCert:createDate]
- 2024-02-18 11:51:14.732 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for createDate
- 2024-02-18 11:51:14.732 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: biz_cert.create_date
- 2024-02-18 11:51:14.732 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property createDate
- 2024-02-18 11:51:14.732 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='issue_date')
- 2024-02-18 11:51:14.732 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property issueDate with lazy=false
- 2024-02-18 11:51:14.732 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.BizCert:issueDate]
- 2024-02-18 11:51:14.732 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for issueDate
- 2024-02-18 11:51:14.732 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: biz_cert.issue_date
- 2024-02-18 11:51:14.732 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property issueDate
- 2024-02-18 11:51:14.732 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='leader_name')
- 2024-02-18 11:51:14.732 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property leaderName with lazy=false
- 2024-02-18 11:51:14.732 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.BizCert:leaderName]
- 2024-02-18 11:51:14.732 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for leaderName
- 2024-02-18 11:51:14.732 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: biz_cert.leader_name
- 2024-02-18 11:51:14.733 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property leaderName
- 2024-02-18 11:51:14.733 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='reg_capital')
- 2024-02-18 11:51:14.733 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property regCapital with lazy=false
- 2024-02-18 11:51:14.733 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.BizCert:regCapital]
- 2024-02-18 11:51:14.733 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for regCapital
- 2024-02-18 11:51:14.733 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: biz_cert.reg_capital
- 2024-02-18 11:51:14.733 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property regCapital
- 2024-02-18 11:51:14.733 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='title')
- 2024-02-18 11:51:14.733 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property title with lazy=false
- 2024-02-18 11:51:14.733 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.BizCert:title]
- 2024-02-18 11:51:14.733 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for title
- 2024-02-18 11:51:14.733 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: biz_cert.title
- 2024-02-18 11:51:14.733 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property title
- 2024-02-18 11:51:14.733 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='type')
- 2024-02-18 11:51:14.733 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property type with lazy=false
- 2024-02-18 11:51:14.733 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.BizCert:type]
- 2024-02-18 11:51:14.733 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for type
- 2024-02-18 11:51:14.733 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: biz_cert.type
- 2024-02-18 11:51:14.733 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property type
- 2024-02-18 11:51:14.733 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='uni_credit_code')
- 2024-02-18 11:51:14.733 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property uniCreditCode with lazy=false
- 2024-02-18 11:51:14.733 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.BizCert:uniCreditCode]
- 2024-02-18 11:51:14.733 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for uniCreditCode
- 2024-02-18 11:51:14.733 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: biz_cert.uni_credit_code
- 2024-02-18 11:51:14.733 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property uniCreditCode
- 2024-02-18 11:51:14.734 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='user_id')
- 2024-02-18 11:51:14.734 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property userId with lazy=false
- 2024-02-18 11:51:14.734 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.BizCert:userId]
- 2024-02-18 11:51:14.734 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for userId
- 2024-02-18 11:51:14.734 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: biz_cert.user_id
- 2024-02-18 11:51:14.734 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property userId
- 2024-02-18 11:51:14.734 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='user_info_id')
- 2024-02-18 11:51:14.734 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property userInfoId with lazy=false
- 2024-02-18 11:51:14.734 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.BizCert:userInfoId]
- 2024-02-18 11:51:14.734 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for userInfoId
- 2024-02-18 11:51:14.734 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: biz_cert.user_info_id
- 2024-02-18 11:51:14.734 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property userInfoId
- 2024-02-18 11:51:14.734 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: io.github.truenine.composeserver.rds.entities.cert
- 2024-02-18 11:51:14.735 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.cert.BizCert
- 2024-02-18 11:51:14.735 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.cert.BizCert
- 2024-02-18 11:51:14.735 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.cert.BizCert
- 2024-02-18 11:51:14.735 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity io.github.truenine.composeserver.rds.entities.cert.BizCert
- 2024-02-18 11:51:14.735 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: io.github.truenine.composeserver.rds.entities.cert.Cert
- 2024-02-18 11:51:14.736 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name Cert
- 2024-02-18 11:51:14.736 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity io.github.truenine.composeserver.rds.entities.cert.Cert on table cert
- 2024-02-18 11:51:14.736 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.736 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.736 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.cert.Cert] is safe
- 2024-02-18 11:51:14.736 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.cert.Cert
- 2024-02-18 11:51:14.736 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.736 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.Cert:id]
- 2024-02-18 11:51:14.736 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.736 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert.id
- 2024-02-18 11:51:14.737 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.737 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.737 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.737 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.737 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.Cert:crd]
- 2024-02-18 11:51:14.737 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.737 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert.crd
- 2024-02-18 11:51:14.737 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.737 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.737 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.737 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.Cert:ldf]
- 2024-02-18 11:51:14.737 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.737 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert.ldf
- 2024-02-18 11:51:14.737 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.737 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.737 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.737 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.Cert:mrd]
- 2024-02-18 11:51:14.737 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.737 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert.mrd
- 2024-02-18 11:51:14.738 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.738 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.738 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.738 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.Cert:rlv]
- 2024-02-18 11:51:14.738 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.738 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert.rlv
- 2024-02-18 11:51:14.738 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.738 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='att_id')
- 2024-02-18 11:51:14.738 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property attId with lazy=false
- 2024-02-18 11:51:14.762 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.Cert:attId]
- 2024-02-18 11:51:14.762 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for attId
- 2024-02-18 11:51:14.762 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert.att_id
- 2024-02-18 11:51:14.762 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property attId
- 2024-02-18 11:51:14.763 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='audit_status')
- 2024-02-18 11:51:14.763 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property auditStatus with lazy=false
- 2024-02-18 11:51:14.763 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Applying JPA converter [io.github.truenine.composeserver.rds.entities.cert.Cert:auditStatus]
- 2024-02-18 11:51:14.763 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for auditStatus
- 2024-02-18 11:51:14.763 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert.audit_status
- 2024-02-18 11:51:14.763 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property auditStatus
- 2024-02-18 11:51:14.763 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='co_type')
- 2024-02-18 11:51:14.763 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property coType with lazy=false
- 2024-02-18 11:51:14.763 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Applying JPA converter [io.github.truenine.composeserver.rds.entities.cert.Cert:coType]
- 2024-02-18 11:51:14.763 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for coType
- 2024-02-18 11:51:14.763 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert.co_type
- 2024-02-18 11:51:14.763 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property coType
- 2024-02-18 11:51:14.763 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='create_datetime')
- 2024-02-18 11:51:14.763 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property createDatetime with lazy=false
- 2024-02-18 11:51:14.763 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.Cert:createDatetime]
- 2024-02-18 11:51:14.763 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for createDatetime
- 2024-02-18 11:51:14.763 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert.create_datetime
- 2024-02-18 11:51:14.763 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property createDatetime
- 2024-02-18 11:51:14.763 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='create_device_id')
- 2024-02-18 11:51:14.763 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property createDeviceId with lazy=false
- 2024-02-18 11:51:14.763 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.Cert:createDeviceId]
- 2024-02-18 11:51:14.763 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for createDeviceId
- 2024-02-18 11:51:14.763 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert.create_device_id
- 2024-02-18 11:51:14.763 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property createDeviceId
- 2024-02-18 11:51:14.764 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='create_ip')
- 2024-02-18 11:51:14.764 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property createIp with lazy=false
- 2024-02-18 11:51:14.764 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.Cert:createIp]
- 2024-02-18 11:51:14.764 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for createIp
- 2024-02-18 11:51:14.764 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert.create_ip
- 2024-02-18 11:51:14.764 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property createIp
- 2024-02-18 11:51:14.764 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='create_user_id')
- 2024-02-18 11:51:14.764 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property createUserId with lazy=false
- 2024-02-18 11:51:14.764 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.Cert:createUserId]
- 2024-02-18 11:51:14.764 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for createUserId
- 2024-02-18 11:51:14.764 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert.create_user_id
- 2024-02-18 11:51:14.764 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property createUserId
- 2024-02-18 11:51:14.764 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='do_type')
- 2024-02-18 11:51:14.764 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property doType with lazy=false
- 2024-02-18 11:51:14.764 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Applying JPA converter [io.github.truenine.composeserver.rds.entities.cert.Cert:doType]
- 2024-02-18 11:51:14.764 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for doType
- 2024-02-18 11:51:14.764 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert.do_type
- 2024-02-18 11:51:14.764 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property doType
- 2024-02-18 11:51:14.764 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='doc')
- 2024-02-18 11:51:14.764 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property doc with lazy=false
- 2024-02-18 11:51:14.764 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.Cert:doc]
- 2024-02-18 11:51:14.764 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for doc
- 2024-02-18 11:51:14.764 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert.doc
- 2024-02-18 11:51:14.764 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property doc
- 2024-02-18 11:51:14.765 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='name')
- 2024-02-18 11:51:14.765 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property name with lazy=false
- 2024-02-18 11:51:14.765 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.Cert:name]
- 2024-02-18 11:51:14.765 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for name
- 2024-02-18 11:51:14.765 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert.name
- 2024-02-18 11:51:14.765 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property name
- 2024-02-18 11:51:14.765 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='po_type')
- 2024-02-18 11:51:14.765 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property poType with lazy=false
- 2024-02-18 11:51:14.765 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Applying JPA converter [io.github.truenine.composeserver.rds.entities.cert.Cert:poType]
- 2024-02-18 11:51:14.765 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for poType
- 2024-02-18 11:51:14.765 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert.po_type
- 2024-02-18 11:51:14.765 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property poType
- 2024-02-18 11:51:14.765 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='remark')
- 2024-02-18 11:51:14.765 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property remark with lazy=false
- 2024-02-18 11:51:14.765 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.Cert:remark]
- 2024-02-18 11:51:14.765 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for remark
- 2024-02-18 11:51:14.765 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert.remark
- 2024-02-18 11:51:14.765 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property remark
- 2024-02-18 11:51:14.765 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='user_id')
- 2024-02-18 11:51:14.765 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property userId with lazy=false
- 2024-02-18 11:51:14.765 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.Cert:userId]
- 2024-02-18 11:51:14.766 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for userId
- 2024-02-18 11:51:14.766 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert.user_id
- 2024-02-18 11:51:14.766 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property userId
- 2024-02-18 11:51:14.766 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='user_info_id')
- 2024-02-18 11:51:14.766 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property userInfoId with lazy=false
- 2024-02-18 11:51:14.766 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.Cert:userInfoId]
- 2024-02-18 11:51:14.766 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for userInfoId
- 2024-02-18 11:51:14.766 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert.user_info_id
- 2024-02-18 11:51:14.766 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property userInfoId
- 2024-02-18 11:51:14.766 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='wm_att_id')
- 2024-02-18 11:51:14.766 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property wmAttId with lazy=false
- 2024-02-18 11:51:14.766 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.Cert:wmAttId]
- 2024-02-18 11:51:14.766 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for wmAttId
- 2024-02-18 11:51:14.766 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert.wm_att_id
- 2024-02-18 11:51:14.766 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property wmAttId
- 2024-02-18 11:51:14.766 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='wm_code')
- 2024-02-18 11:51:14.766 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property wmCode with lazy=false
- 2024-02-18 11:51:14.766 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.Cert:wmCode]
- 2024-02-18 11:51:14.766 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for wmCode
- 2024-02-18 11:51:14.766 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: cert.wm_code
- 2024-02-18 11:51:14.766 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property wmCode
- 2024-02-18 11:51:14.767 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: io.github.truenine.composeserver.rds.entities.cert
- 2024-02-18 11:51:14.767 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.cert.Cert
- 2024-02-18 11:51:14.767 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.cert.Cert
- 2024-02-18 11:51:14.767 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.cert.Cert
- 2024-02-18 11:51:14.767 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity io.github.truenine.composeserver.rds.entities.cert.Cert
- 2024-02-18 11:51:14.768 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: io.github.truenine.composeserver.rds.entities.cert.DisCert2
- 2024-02-18 11:51:14.768 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name DisCert2
- 2024-02-18 11:51:14.768 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity io.github.truenine.composeserver.rds.entities.cert.DisCert2 on table dis_cert_2
- 2024-02-18 11:51:14.768 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.770 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.770 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.cert.DisCert2] is safe
- 2024-02-18 11:51:14.770 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.cert.DisCert2
- 2024-02-18 11:51:14.770 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.770 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.DisCert2:id]
- 2024-02-18 11:51:14.770 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.770 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: dis_cert_2.id
- 2024-02-18 11:51:14.770 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.770 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.770 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.770 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.770 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.DisCert2:crd]
- 2024-02-18 11:51:14.770 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.770 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: dis_cert_2.crd
- 2024-02-18 11:51:14.770 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.770 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.770 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.770 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.DisCert2:ldf]
- 2024-02-18 11:51:14.770 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.770 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: dis_cert_2.ldf
- 2024-02-18 11:51:14.770 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.770 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.770 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.770 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.DisCert2:mrd]
- 2024-02-18 11:51:14.770 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.771 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: dis_cert_2.mrd
- 2024-02-18 11:51:14.771 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.771 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.771 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.771 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.DisCert2:rlv]
- 2024-02-18 11:51:14.771 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.771 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: dis_cert_2.rlv
- 2024-02-18 11:51:14.771 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.771 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='address_details_id')
- 2024-02-18 11:51:14.771 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property addressDetailsId with lazy=false
- 2024-02-18 11:51:14.771 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.DisCert2:addressDetailsId]
- 2024-02-18 11:51:14.771 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for addressDetailsId
- 2024-02-18 11:51:14.771 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: dis_cert_2.address_details_id
- 2024-02-18 11:51:14.771 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property addressDetailsId
- 2024-02-18 11:51:14.771 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='birthday')
- 2024-02-18 11:51:14.771 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property birthday with lazy=false
- 2024-02-18 11:51:14.771 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.DisCert2:birthday]
- 2024-02-18 11:51:14.771 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for birthday
- 2024-02-18 11:51:14.771 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: dis_cert_2.birthday
- 2024-02-18 11:51:14.771 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property birthday
- 2024-02-18 11:51:14.772 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='code')
- 2024-02-18 11:51:14.772 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property code with lazy=false
- 2024-02-18 11:51:14.772 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.DisCert2:code]
- 2024-02-18 11:51:14.772 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for code
- 2024-02-18 11:51:14.772 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: dis_cert_2.code
- 2024-02-18 11:51:14.772 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property code
- 2024-02-18 11:51:14.772 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='expire_date')
- 2024-02-18 11:51:14.772 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property expireDate with lazy=false
- 2024-02-18 11:51:14.772 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.DisCert2:expireDate]
- 2024-02-18 11:51:14.772 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for expireDate
- 2024-02-18 11:51:14.772 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: dis_cert_2.expire_date
- 2024-02-18 11:51:14.772 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property expireDate
- 2024-02-18 11:51:14.772 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='gender')
- 2024-02-18 11:51:14.772 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property gender with lazy=false
- 2024-02-18 11:51:14.772 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Applying JPA converter [io.github.truenine.composeserver.rds.entities.cert.DisCert2:gender]
- 2024-02-18 11:51:14.772 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for gender
- 2024-02-18 11:51:14.772 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: dis_cert_2.gender
- 2024-02-18 11:51:14.772 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property gender
- 2024-02-18 11:51:14.772 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='guardian')
- 2024-02-18 11:51:14.772 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property guardian with lazy=false
- 2024-02-18 11:51:14.772 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.DisCert2:guardian]
- 2024-02-18 11:51:14.772 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for guardian
- 2024-02-18 11:51:14.772 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: dis_cert_2.guardian
- 2024-02-18 11:51:14.772 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property guardian
- 2024-02-18 11:51:14.772 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='guardian_phone')
- 2024-02-18 11:51:14.773 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property guardianPhone with lazy=false
- 2024-02-18 11:51:14.773 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.DisCert2:guardianPhone]
- 2024-02-18 11:51:14.773 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for guardianPhone
- 2024-02-18 11:51:14.773 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: dis_cert_2.guardian_phone
- 2024-02-18 11:51:14.773 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property guardianPhone
- 2024-02-18 11:51:14.773 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='issue_date')
- 2024-02-18 11:51:14.773 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property issueDate with lazy=false
- 2024-02-18 11:51:14.773 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.DisCert2:issueDate]
- 2024-02-18 11:51:14.773 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for issueDate
- 2024-02-18 11:51:14.773 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: dis_cert_2.issue_date
- 2024-02-18 11:51:14.773 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property issueDate
- 2024-02-18 11:51:14.773 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='level')
- 2024-02-18 11:51:14.773 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property level with lazy=false
- 2024-02-18 11:51:14.773 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.DisCert2:level]
- 2024-02-18 11:51:14.773 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for level
- 2024-02-18 11:51:14.773 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: dis_cert_2.level
- 2024-02-18 11:51:14.773 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property level
- 2024-02-18 11:51:14.773 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='name')
- 2024-02-18 11:51:14.773 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property name with lazy=false
- 2024-02-18 11:51:14.773 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.DisCert2:name]
- 2024-02-18 11:51:14.773 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for name
- 2024-02-18 11:51:14.773 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: dis_cert_2.name
- 2024-02-18 11:51:14.773 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property name
- 2024-02-18 11:51:14.773 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='type')
- 2024-02-18 11:51:14.773 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property type with lazy=false
- 2024-02-18 11:51:14.773 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Applying JPA converter [io.github.truenine.composeserver.rds.entities.cert.DisCert2:type]
- 2024-02-18 11:51:14.774 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for type
- 2024-02-18 11:51:14.774 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: dis_cert_2.type
- 2024-02-18 11:51:14.774 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property type
- 2024-02-18 11:51:14.774 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='user_id')
- 2024-02-18 11:51:14.774 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property userId with lazy=false
- 2024-02-18 11:51:14.774 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.DisCert2:userId]
- 2024-02-18 11:51:14.774 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for userId
- 2024-02-18 11:51:14.774 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: dis_cert_2.user_id
- 2024-02-18 11:51:14.774 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property userId
- 2024-02-18 11:51:14.774 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='user_info_id')
- 2024-02-18 11:51:14.774 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property userInfoId with lazy=false
- 2024-02-18 11:51:14.774 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.DisCert2:userInfoId]
- 2024-02-18 11:51:14.774 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for userInfoId
- 2024-02-18 11:51:14.774 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: dis_cert_2.user_info_id
- 2024-02-18 11:51:14.774 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property userInfoId
- 2024-02-18 11:51:14.774 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: io.github.truenine.composeserver.rds.entities.cert
- 2024-02-18 11:51:14.775 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.cert.DisCert2
- 2024-02-18 11:51:14.775 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.cert.DisCert2
- 2024-02-18 11:51:14.775 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.cert.DisCert2
- 2024-02-18 11:51:14.775 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity io.github.truenine.composeserver.rds.entities.cert.DisCert2
- 2024-02-18 11:51:14.775 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: io.github.truenine.composeserver.rds.entities.cert.HouseholdCert
- 2024-02-18 11:51:14.776 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name HouseholdCert
- 2024-02-18 11:51:14.776 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity io.github.truenine.composeserver.rds.entities.cert.HouseholdCert on table household_cert
- 2024-02-18 11:51:14.776 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.777 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.777 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert] is safe
- 2024-02-18 11:51:14.777 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.cert.HouseholdCert
- 2024-02-18 11:51:14.777 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.778 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert:id]
- 2024-02-18 11:51:14.778 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.778 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: household_cert.id
- 2024-02-18 11:51:14.778 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.778 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.778 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.778 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.778 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert:crd]
- 2024-02-18 11:51:14.778 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.778 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: household_cert.crd
- 2024-02-18 11:51:14.778 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.778 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.778 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.778 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert:ldf]
- 2024-02-18 11:51:14.778 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.778 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: household_cert.ldf
- 2024-02-18 11:51:14.778 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.778 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.778 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.778 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert:mrd]
- 2024-02-18 11:51:14.778 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.778 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: household_cert.mrd
- 2024-02-18 11:51:14.778 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.778 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.779 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.779 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert:rlv]
- 2024-02-18 11:51:14.779 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.779 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: household_cert.rlv
- 2024-02-18 11:51:14.779 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.779 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='address_details_id')
- 2024-02-18 11:51:14.779 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property addressDetailsId with lazy=false
- 2024-02-18 11:51:14.779 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert:addressDetailsId]
- 2024-02-18 11:51:14.779 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for addressDetailsId
- 2024-02-18 11:51:14.779 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: household_cert.address_details_id
- 2024-02-18 11:51:14.779 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property addressDetailsId
- 2024-02-18 11:51:14.779 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='birthday')
- 2024-02-18 11:51:14.779 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property birthday with lazy=false
- 2024-02-18 11:51:14.779 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert:birthday]
- 2024-02-18 11:51:14.779 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for birthday
- 2024-02-18 11:51:14.779 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: household_cert.birthday
- 2024-02-18 11:51:14.779 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property birthday
- 2024-02-18 11:51:14.779 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='blood_type')
- 2024-02-18 11:51:14.779 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property bloodType with lazy=false
- 2024-02-18 11:51:14.780 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Applying JPA converter [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert:bloodType]
- 2024-02-18 11:51:14.780 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for bloodType
- 2024-02-18 11:51:14.780 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: household_cert.blood_type
- 2024-02-18 11:51:14.780 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property bloodType
- 2024-02-18 11:51:14.780 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='code')
- 2024-02-18 11:51:14.780 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property code with lazy=false
- 2024-02-18 11:51:14.780 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert:code]
- 2024-02-18 11:51:14.780 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for code
- 2024-02-18 11:51:14.780 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: household_cert.code
- 2024-02-18 11:51:14.780 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property code
- 2024-02-18 11:51:14.780 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='education_level')
- 2024-02-18 11:51:14.780 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property educationLevel with lazy=false
- 2024-02-18 11:51:14.780 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Applying JPA converter [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert:educationLevel]
- 2024-02-18 11:51:14.780 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for educationLevel
- 2024-02-18 11:51:14.780 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: household_cert.education_level
- 2024-02-18 11:51:14.780 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property educationLevel
- 2024-02-18 11:51:14.780 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ethnic_group')
- 2024-02-18 11:51:14.780 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ethnicGroup with lazy=false
- 2024-02-18 11:51:14.780 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert:ethnicGroup]
- 2024-02-18 11:51:14.780 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ethnicGroup
- 2024-02-18 11:51:14.780 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: household_cert.ethnic_group
- 2024-02-18 11:51:14.780 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ethnicGroup
- 2024-02-18 11:51:14.781 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='gender')
- 2024-02-18 11:51:14.781 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property gender with lazy=false
- 2024-02-18 11:51:14.781 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert:gender]
- 2024-02-18 11:51:14.781 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for gender
- 2024-02-18 11:51:14.781 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: household_cert.gender
- 2024-02-18 11:51:14.781 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property gender
- 2024-02-18 11:51:14.781 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='height')
- 2024-02-18 11:51:14.781 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property height with lazy=false
- 2024-02-18 11:51:14.781 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert:height]
- 2024-02-18 11:51:14.781 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for height
- 2024-02-18 11:51:14.781 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: household_cert.height
- 2024-02-18 11:51:14.781 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property height
- 2024-02-18 11:51:14.781 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='household_primary_name')
- 2024-02-18 11:51:14.781 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property householdPrimaryName with lazy=false
- 2024-02-18 11:51:14.781 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert:householdPrimaryName]
- 2024-02-18 11:51:14.781 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for householdPrimaryName
- 2024-02-18 11:51:14.781 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: household_cert.household_primary_name
- 2024-02-18 11:51:14.781 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property householdPrimaryName
- 2024-02-18 11:51:14.781 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='household_type')
- 2024-02-18 11:51:14.781 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property householdType with lazy=false
- 2024-02-18 11:51:14.781 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert:householdType]
- 2024-02-18 11:51:14.781 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for householdType
- 2024-02-18 11:51:14.781 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: household_cert.household_type
- 2024-02-18 11:51:14.781 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property householdType
- 2024-02-18 11:51:14.781 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='idcard_code')
- 2024-02-18 11:51:14.781 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property idcardCode with lazy=false
- 2024-02-18 11:51:14.781 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert:idcardCode]
- 2024-02-18 11:51:14.781 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for idcardCode
- 2024-02-18 11:51:14.782 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: household_cert.idcard_code
- 2024-02-18 11:51:14.782 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property idcardCode
- 2024-02-18 11:51:14.782 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='issue_date')
- 2024-02-18 11:51:14.782 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property issueDate with lazy=false
- 2024-02-18 11:51:14.782 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert:issueDate]
- 2024-02-18 11:51:14.782 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for issueDate
- 2024-02-18 11:51:14.782 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: household_cert.issue_date
- 2024-02-18 11:51:14.782 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property issueDate
- 2024-02-18 11:51:14.782 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='issue_organ')
- 2024-02-18 11:51:14.782 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property issueOrgan with lazy=false
- 2024-02-18 11:51:14.782 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert:issueOrgan]
- 2024-02-18 11:51:14.782 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for issueOrgan
- 2024-02-18 11:51:14.782 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: household_cert.issue_organ
- 2024-02-18 11:51:14.782 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property issueOrgan
- 2024-02-18 11:51:14.782 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='military_service_status')
- 2024-02-18 11:51:14.782 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property militaryServiceStatus with lazy=false
- 2024-02-18 11:51:14.782 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert:militaryServiceStatus]
- 2024-02-18 11:51:14.782 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for militaryServiceStatus
- 2024-02-18 11:51:14.782 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: household_cert.military_service_status
- 2024-02-18 11:51:14.782 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property militaryServiceStatus
- 2024-02-18 11:51:14.782 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='name')
- 2024-02-18 11:51:14.782 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property name with lazy=false
- 2024-02-18 11:51:14.782 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert:name]
- 2024-02-18 11:51:14.782 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for name
- 2024-02-18 11:51:14.782 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: household_cert.name
- 2024-02-18 11:51:14.782 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property name
- 2024-02-18 11:51:14.782 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='occupation')
- 2024-02-18 11:51:14.783 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property occupation with lazy=false
- 2024-02-18 11:51:14.783 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert:occupation]
- 2024-02-18 11:51:14.783 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for occupation
- 2024-02-18 11:51:14.783 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: household_cert.occupation
- 2024-02-18 11:51:14.783 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property occupation
- 2024-02-18 11:51:14.783 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='old_name')
- 2024-02-18 11:51:14.783 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property oldName with lazy=false
- 2024-02-18 11:51:14.783 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert:oldName]
- 2024-02-18 11:51:14.783 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for oldName
- 2024-02-18 11:51:14.783 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: household_cert.old_name
- 2024-02-18 11:51:14.783 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property oldName
- 2024-02-18 11:51:14.783 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='origin_address_details_id')
- 2024-02-18 11:51:14.783 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property originAddressDetailsId with lazy=false
- 2024-02-18 11:51:14.783 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert:originAddressDetailsId]
- 2024-02-18 11:51:14.783 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for originAddressDetailsId
- 2024-02-18 11:51:14.783 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: household_cert.origin_address_details_id
- 2024-02-18 11:51:14.783 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property originAddressDetailsId
- 2024-02-18 11:51:14.783 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='place_birth_address_details_id')
- 2024-02-18 11:51:14.783 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property placeBirthAddressDetailsId with lazy=false
- 2024-02-18 11:51:14.783 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert:placeBirthAddressDetailsId]
- 2024-02-18 11:51:14.783 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for placeBirthAddressDetailsId
- 2024-02-18 11:51:14.783 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: household_cert.place_birth_address_details_id
- 2024-02-18 11:51:14.783 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property placeBirthAddressDetailsId
- 2024-02-18 11:51:14.783 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='relationship')
- 2024-02-18 11:51:14.783 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property relationship with lazy=false
- 2024-02-18 11:51:14.783 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert:relationship]
- 2024-02-18 11:51:14.783 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for relationship
- 2024-02-18 11:51:14.783 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: household_cert.relationship
- 2024-02-18 11:51:14.783 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property relationship
- 2024-02-18 11:51:14.784 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='service_address_details_id')
- 2024-02-18 11:51:14.784 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property serviceAddressDetailsId with lazy=false
- 2024-02-18 11:51:14.784 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert:serviceAddressDetailsId]
- 2024-02-18 11:51:14.784 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for serviceAddressDetailsId
- 2024-02-18 11:51:14.784 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: household_cert.service_address_details_id
- 2024-02-18 11:51:14.784 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property serviceAddressDetailsId
- 2024-02-18 11:51:14.784 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='user_id')
- 2024-02-18 11:51:14.784 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property userId with lazy=false
- 2024-02-18 11:51:14.784 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert:userId]
- 2024-02-18 11:51:14.784 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for userId
- 2024-02-18 11:51:14.784 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: household_cert.user_id
- 2024-02-18 11:51:14.784 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property userId
- 2024-02-18 11:51:14.784 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='user_info_id')
- 2024-02-18 11:51:14.784 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property userInfoId with lazy=false
- 2024-02-18 11:51:14.784 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert:userInfoId]
- 2024-02-18 11:51:14.784 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for userInfoId
- 2024-02-18 11:51:14.784 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: household_cert.user_info_id
- 2024-02-18 11:51:14.784 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property userInfoId
- 2024-02-18 11:51:14.785 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: io.github.truenine.composeserver.rds.entities.cert
- 2024-02-18 11:51:14.785 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.cert.HouseholdCert
- 2024-02-18 11:51:14.785 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.cert.HouseholdCert
- 2024-02-18 11:51:14.785 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.cert.HouseholdCert
- 2024-02-18 11:51:14.785 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity io.github.truenine.composeserver.rds.entities.cert.HouseholdCert
- 2024-02-18 11:51:14.786 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: io.github.truenine.composeserver.rds.entities.cert.Idcard2
- 2024-02-18 11:51:14.786 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name Idcard2
- 2024-02-18 11:51:14.786 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity io.github.truenine.composeserver.rds.entities.cert.Idcard2 on table idcard_2
- 2024-02-18 11:51:14.786 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.787 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.787 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.cert.Idcard2] is safe
- 2024-02-18 11:51:14.787 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.cert.Idcard2
- 2024-02-18 11:51:14.787 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.787 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.Idcard2:id]
- 2024-02-18 11:51:14.787 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.787 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: idcard_2.id
- 2024-02-18 11:51:14.787 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.787 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.788 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.788 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.788 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.Idcard2:crd]
- 2024-02-18 11:51:14.788 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.788 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: idcard_2.crd
- 2024-02-18 11:51:14.788 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.788 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.788 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.788 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.Idcard2:ldf]
- 2024-02-18 11:51:14.788 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.788 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: idcard_2.ldf
- 2024-02-18 11:51:14.788 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.788 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.788 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.788 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.Idcard2:mrd]
- 2024-02-18 11:51:14.788 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.788 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: idcard_2.mrd
- 2024-02-18 11:51:14.788 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.788 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.788 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.788 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.Idcard2:rlv]
- 2024-02-18 11:51:14.788 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.788 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: idcard_2.rlv
- 2024-02-18 11:51:14.788 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.788 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='address_details_id')
- 2024-02-18 11:51:14.788 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property addressDetailsId with lazy=false
- 2024-02-18 11:51:14.788 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.Idcard2:addressDetailsId]
- 2024-02-18 11:51:14.789 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for addressDetailsId
- 2024-02-18 11:51:14.789 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: idcard_2.address_details_id
- 2024-02-18 11:51:14.789 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property addressDetailsId
- 2024-02-18 11:51:14.789 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='birthday')
- 2024-02-18 11:51:14.789 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property birthday with lazy=false
- 2024-02-18 11:51:14.789 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.Idcard2:birthday]
- 2024-02-18 11:51:14.789 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for birthday
- 2024-02-18 11:51:14.789 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: idcard_2.birthday
- 2024-02-18 11:51:14.789 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property birthday
- 2024-02-18 11:51:14.789 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='code')
- 2024-02-18 11:51:14.789 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property code with lazy=false
- 2024-02-18 11:51:14.789 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.Idcard2:code]
- 2024-02-18 11:51:14.789 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for code
- 2024-02-18 11:51:14.789 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: idcard_2.code
- 2024-02-18 11:51:14.789 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property code
- 2024-02-18 11:51:14.789 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ethnic_group')
- 2024-02-18 11:51:14.789 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ethnicGroup with lazy=false
- 2024-02-18 11:51:14.789 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.Idcard2:ethnicGroup]
- 2024-02-18 11:51:14.789 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ethnicGroup
- 2024-02-18 11:51:14.789 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: idcard_2.ethnic_group
- 2024-02-18 11:51:14.789 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ethnicGroup
- 2024-02-18 11:51:14.789 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='expire_date')
- 2024-02-18 11:51:14.789 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property expireDate with lazy=false
- 2024-02-18 11:51:14.789 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.Idcard2:expireDate]
- 2024-02-18 11:51:14.789 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for expireDate
- 2024-02-18 11:51:14.789 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: idcard_2.expire_date
- 2024-02-18 11:51:14.789 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property expireDate
- 2024-02-18 11:51:14.790 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='gender')
- 2024-02-18 11:51:14.790 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property gender with lazy=false
- 2024-02-18 11:51:14.790 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Applying JPA converter [io.github.truenine.composeserver.rds.entities.cert.Idcard2:gender]
- 2024-02-18 11:51:14.790 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for gender
- 2024-02-18 11:51:14.790 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: idcard_2.gender
- 2024-02-18 11:51:14.790 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property gender
- 2024-02-18 11:51:14.790 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='issue_organ')
- 2024-02-18 11:51:14.790 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property issueOrgan with lazy=false
- 2024-02-18 11:51:14.790 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.Idcard2:issueOrgan]
- 2024-02-18 11:51:14.790 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for issueOrgan
- 2024-02-18 11:51:14.790 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: idcard_2.issue_organ
- 2024-02-18 11:51:14.790 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property issueOrgan
- 2024-02-18 11:51:14.790 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='name')
- 2024-02-18 11:51:14.790 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property name with lazy=false
- 2024-02-18 11:51:14.790 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.Idcard2:name]
- 2024-02-18 11:51:14.790 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for name
- 2024-02-18 11:51:14.790 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: idcard_2.name
- 2024-02-18 11:51:14.790 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property name
- 2024-02-18 11:51:14.790 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='user_id')
- 2024-02-18 11:51:14.790 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property userId with lazy=false
- 2024-02-18 11:51:14.790 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.Idcard2:userId]
- 2024-02-18 11:51:14.790 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for userId
- 2024-02-18 11:51:14.790 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: idcard_2.user_id
- 2024-02-18 11:51:14.790 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property userId
- 2024-02-18 11:51:14.791 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='user_info_id')
- 2024-02-18 11:51:14.791 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property userInfoId with lazy=false
- 2024-02-18 11:51:14.791 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.cert.Idcard2:userInfoId]
- 2024-02-18 11:51:14.791 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for userInfoId
- 2024-02-18 11:51:14.791 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: idcard_2.user_info_id
- 2024-02-18 11:51:14.791 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property userInfoId
- 2024-02-18 11:51:14.791 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: io.github.truenine.composeserver.rds.entities.cert
- 2024-02-18 11:51:14.791 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.cert.Idcard2
- 2024-02-18 11:51:14.791 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.cert.Idcard2
- 2024-02-18 11:51:14.791 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.cert.Idcard2
- 2024-02-18 11:51:14.792 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity io.github.truenine.composeserver.rds.entities.cert.Idcard2
- 2024-02-18 11:51:14.792 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: io.github.truenine.composeserver.rds.entities.Dept
- 2024-02-18 11:51:14.792 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name Dept
- 2024-02-18 11:51:14.792 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity io.github.truenine.composeserver.rds.entities.Dept on table role_group
- 2024-02-18 11:51:14.792 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.793 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.793 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.Dept] is safe
- 2024-02-18 11:51:14.793 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.Dept
- 2024-02-18 11:51:14.793 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.793 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Dept:id]
- 2024-02-18 11:51:14.793 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.793 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role_group.id
- 2024-02-18 11:51:14.793 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.793 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.793 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.793 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.793 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Dept:crd]
- 2024-02-18 11:51:14.794 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.794 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role_group.crd
- 2024-02-18 11:51:14.794 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.794 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.794 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.794 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Dept:ldf]
- 2024-02-18 11:51:14.794 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.794 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role_group.ldf
- 2024-02-18 11:51:14.794 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.794 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.794 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.794 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Dept:mrd]
- 2024-02-18 11:51:14.794 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.794 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role_group.mrd
- 2024-02-18 11:51:14.794 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.794 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.794 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.794 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Dept:rlv]
- 2024-02-18 11:51:14.794 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.794 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role_group.rlv
- 2024-02-18 11:51:14.794 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.794 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='nlv')
- 2024-02-18 11:51:14.794 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property nlv with lazy=false
- 2024-02-18 11:51:14.794 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Dept:nlv]
- 2024-02-18 11:51:14.794 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for nlv
- 2024-02-18 11:51:14.794 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role_group.nlv
- 2024-02-18 11:51:14.794 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property nlv
- 2024-02-18 11:51:14.795 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rln')
- 2024-02-18 11:51:14.795 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rln with lazy=false
- 2024-02-18 11:51:14.795 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Dept:rln]
- 2024-02-18 11:51:14.795 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rln
- 2024-02-18 11:51:14.795 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role_group.rln
- 2024-02-18 11:51:14.795 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rln
- 2024-02-18 11:51:14.795 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rpi')
- 2024-02-18 11:51:14.795 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rpi with lazy=false
- 2024-02-18 11:51:14.795 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Dept:rpi]
- 2024-02-18 11:51:14.795 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rpi
- 2024-02-18 11:51:14.795 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role_group.rpi
- 2024-02-18 11:51:14.795 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rpi
- 2024-02-18 11:51:14.795 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rrn')
- 2024-02-18 11:51:14.795 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rrn with lazy=false
- 2024-02-18 11:51:14.795 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Dept:rrn]
- 2024-02-18 11:51:14.795 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rrn
- 2024-02-18 11:51:14.795 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role_group.rrn
- 2024-02-18 11:51:14.795 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rrn
- 2024-02-18 11:51:14.795 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='tgi')
- 2024-02-18 11:51:14.795 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property tgi with lazy=false
- 2024-02-18 11:51:14.795 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Dept:tgi]
- 2024-02-18 11:51:14.795 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for tgi
- 2024-02-18 11:51:14.795 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role_group.tgi
- 2024-02-18 11:51:14.795 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property tgi
- 2024-02-18 11:51:14.796 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='doc')
- 2024-02-18 11:51:14.796 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property doc with lazy=false
- 2024-02-18 11:51:14.796 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Dept:doc]
- 2024-02-18 11:51:14.796 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for doc
- 2024-02-18 11:51:14.796 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role_group.doc
- 2024-02-18 11:51:14.796 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property doc
- 2024-02-18 11:51:14.796 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='name')
- 2024-02-18 11:51:14.796 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property name with lazy=false
- 2024-02-18 11:51:14.796 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Dept:name]
- 2024-02-18 11:51:14.796 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for name
- 2024-02-18 11:51:14.796 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role_group.name
- 2024-02-18 11:51:14.796 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property name
- 2024-02-18 11:51:14.796 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: io.github.truenine.composeserver.rds.entities
- 2024-02-18 11:51:14.797 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.Dept
- 2024-02-18 11:51:14.797 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.Dept
- 2024-02-18 11:51:14.797 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.Dept
- 2024-02-18 11:51:14.797 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity io.github.truenine.composeserver.rds.entities.Dept
- 2024-02-18 11:51:14.797 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory
- 2024-02-18 11:51:14.797 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name FlywaySchemaHistory
- 2024-02-18 11:51:14.798 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory on table flyway_schema_history
- 2024-02-18 11:51:14.798 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.798 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.798 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory] is safe
- 2024-02-18 11:51:14.798 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory
- 2024-02-18 11:51:14.798 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.798 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory:id]
- 2024-02-18 11:51:14.799 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.799 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: flyway_schema_history.id
- 2024-02-18 11:51:14.799 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.799 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.799 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.799 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.799 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory:crd]
- 2024-02-18 11:51:14.799 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.799 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: flyway_schema_history.crd
- 2024-02-18 11:51:14.799 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.799 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.799 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.799 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory:ldf]
- 2024-02-18 11:51:14.799 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.799 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: flyway_schema_history.ldf
- 2024-02-18 11:51:14.799 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.799 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.799 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.799 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory:mrd]
- 2024-02-18 11:51:14.799 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.799 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: flyway_schema_history.mrd
- 2024-02-18 11:51:14.799 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.800 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.800 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.800 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory:rlv]
- 2024-02-18 11:51:14.800 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.800 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: flyway_schema_history.rlv
- 2024-02-18 11:51:14.800 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.800 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='checksum')
- 2024-02-18 11:51:14.800 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property checksum with lazy=false
- 2024-02-18 11:51:14.800 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory:checksum]
- 2024-02-18 11:51:14.800 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for checksum
- 2024-02-18 11:51:14.800 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: flyway_schema_history.checksum
- 2024-02-18 11:51:14.800 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property checksum
- 2024-02-18 11:51:14.800 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='description')
- 2024-02-18 11:51:14.800 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property desc with lazy=false
- 2024-02-18 11:51:14.800 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory:desc]
- 2024-02-18 11:51:14.800 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for desc
- 2024-02-18 11:51:14.800 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: flyway_schema_history.description
- 2024-02-18 11:51:14.800 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property desc
- 2024-02-18 11:51:14.800 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='execution_time')
- 2024-02-18 11:51:14.800 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property execOn with lazy=false
- 2024-02-18 11:51:14.800 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory:execOn]
- 2024-02-18 11:51:14.800 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for execOn
- 2024-02-18 11:51:14.800 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: flyway_schema_history.execution_time
- 2024-02-18 11:51:14.800 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property execOn
- 2024-02-18 11:51:14.801 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='installed_by')
- 2024-02-18 11:51:14.801 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property installedByDatabaseAccount with lazy=false
- 2024-02-18 11:51:14.801 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory:installedByDatabaseAccount]
- 2024-02-18 11:51:14.801 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for installedByDatabaseAccount
- 2024-02-18 11:51:14.801 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: flyway_schema_history.installed_by
- 2024-02-18 11:51:14.801 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property installedByDatabaseAccount
- 2024-02-18 11:51:14.801 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='installed_on')
- 2024-02-18 11:51:14.801 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property installedOn with lazy=false
- 2024-02-18 11:51:14.801 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory:installedOn]
- 2024-02-18 11:51:14.801 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for installedOn
- 2024-02-18 11:51:14.801 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: flyway_schema_history.installed_on
- 2024-02-18 11:51:14.801 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property installedOn
- 2024-02-18 11:51:14.801 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='installed_rank')
- 2024-02-18 11:51:14.801 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rank with lazy=false
- 2024-02-18 11:51:14.801 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory:rank]
- 2024-02-18 11:51:14.801 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rank
- 2024-02-18 11:51:14.801 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: flyway_schema_history.installed_rank
- 2024-02-18 11:51:14.801 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rank
- 2024-02-18 11:51:14.801 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='script')
- 2024-02-18 11:51:14.801 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property script with lazy=false
- 2024-02-18 11:51:14.801 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory:script]
- 2024-02-18 11:51:14.801 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for script
- 2024-02-18 11:51:14.801 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: flyway_schema_history.script
- 2024-02-18 11:51:14.801 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property script
- 2024-02-18 11:51:14.801 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='success')
- 2024-02-18 11:51:14.802 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property success with lazy=false
- 2024-02-18 11:51:14.802 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory:success]
- 2024-02-18 11:51:14.802 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for success
- 2024-02-18 11:51:14.802 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: flyway_schema_history.success
- 2024-02-18 11:51:14.802 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property success
- 2024-02-18 11:51:14.802 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='type')
- 2024-02-18 11:51:14.802 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property type with lazy=false
- 2024-02-18 11:51:14.802 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory:type]
- 2024-02-18 11:51:14.802 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for type
- 2024-02-18 11:51:14.802 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: flyway_schema_history.type
- 2024-02-18 11:51:14.802 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property type
- 2024-02-18 11:51:14.802 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='version')
- 2024-02-18 11:51:14.802 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property version with lazy=false
- 2024-02-18 11:51:14.802 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory:version]
- 2024-02-18 11:51:14.802 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for version
- 2024-02-18 11:51:14.802 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: flyway_schema_history.version
- 2024-02-18 11:51:14.802 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property version
- 2024-02-18 11:51:14.802 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: io.github.truenine.composeserver.rds.entities
- 2024-02-18 11:51:14.803 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory
- 2024-02-18 11:51:14.803 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory
- 2024-02-18 11:51:14.803 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory
- 2024-02-18 11:51:14.803 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory
- 2024-02-18 11:51:14.803 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: io.github.truenine.composeserver.rds.entities.FullAddress
- 2024-02-18 11:51:14.804 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name FullAddress
- 2024-02-18 11:51:14.804 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity io.github.truenine.composeserver.rds.entities.FullAddress on table address
- 2024-02-18 11:51:14.804 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.805 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.805 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.FullAddress] is safe
- 2024-02-18 11:51:14.805 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.FullAddress
- 2024-02-18 11:51:14.805 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.805 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullAddress:id]
- 2024-02-18 11:51:14.805 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.805 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address.id
- 2024-02-18 11:51:14.805 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.805 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.805 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.805 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.805 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullAddress:crd]
- 2024-02-18 11:51:14.805 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.805 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address.crd
- 2024-02-18 11:51:14.805 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.806 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.806 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.806 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullAddress:ldf]
- 2024-02-18 11:51:14.806 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.806 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address.ldf
- 2024-02-18 11:51:14.806 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.806 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.806 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.806 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullAddress:mrd]
- 2024-02-18 11:51:14.806 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.806 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address.mrd
- 2024-02-18 11:51:14.806 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.806 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.806 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.806 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullAddress:rlv]
- 2024-02-18 11:51:14.806 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.806 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address.rlv
- 2024-02-18 11:51:14.806 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.807 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='nlv')
- 2024-02-18 11:51:14.807 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property nlv with lazy=false
- 2024-02-18 11:51:14.807 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullAddress:nlv]
- 2024-02-18 11:51:14.807 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for nlv
- 2024-02-18 11:51:14.807 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address.nlv
- 2024-02-18 11:51:14.807 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property nlv
- 2024-02-18 11:51:14.807 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rln')
- 2024-02-18 11:51:14.807 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rln with lazy=false
- 2024-02-18 11:51:14.807 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullAddress:rln]
- 2024-02-18 11:51:14.807 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rln
- 2024-02-18 11:51:14.807 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address.rln
- 2024-02-18 11:51:14.807 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rln
- 2024-02-18 11:51:14.807 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rpi')
- 2024-02-18 11:51:14.807 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rpi with lazy=false
- 2024-02-18 11:51:14.807 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullAddress:rpi]
- 2024-02-18 11:51:14.807 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rpi
- 2024-02-18 11:51:14.807 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address.rpi
- 2024-02-18 11:51:14.807 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rpi
- 2024-02-18 11:51:14.808 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rrn')
- 2024-02-18 11:51:14.808 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rrn with lazy=false
- 2024-02-18 11:51:14.808 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullAddress:rrn]
- 2024-02-18 11:51:14.808 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rrn
- 2024-02-18 11:51:14.808 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address.rrn
- 2024-02-18 11:51:14.808 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rrn
- 2024-02-18 11:51:14.808 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='tgi')
- 2024-02-18 11:51:14.808 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property tgi with lazy=false
- 2024-02-18 11:51:14.808 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullAddress:tgi]
- 2024-02-18 11:51:14.808 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for tgi
- 2024-02-18 11:51:14.808 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address.tgi
- 2024-02-18 11:51:14.808 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property tgi
- 2024-02-18 11:51:14.808 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='center')
- 2024-02-18 11:51:14.808 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property center with lazy=false
- 2024-02-18 11:51:14.808 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Applying JPA converter [io.github.truenine.composeserver.rds.entities.FullAddress:center]
- 2024-02-18 11:51:14.808 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for center
- 2024-02-18 11:51:14.808 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address.center
- 2024-02-18 11:51:14.809 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property center
- 2024-02-18 11:51:14.809 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='code')
- 2024-02-18 11:51:14.809 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property code with lazy=false
- 2024-02-18 11:51:14.809 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullAddress:code]
- 2024-02-18 11:51:14.809 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for code
- 2024-02-18 11:51:14.809 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address.code
- 2024-02-18 11:51:14.809 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property code
- 2024-02-18 11:51:14.809 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='leaf')
- 2024-02-18 11:51:14.809 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property leaf with lazy=false
- 2024-02-18 11:51:14.809 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullAddress:leaf]
- 2024-02-18 11:51:14.809 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for leaf
- 2024-02-18 11:51:14.809 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address.leaf
- 2024-02-18 11:51:14.809 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property leaf
- 2024-02-18 11:51:14.809 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='level')
- 2024-02-18 11:51:14.809 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property level with lazy=false
- 2024-02-18 11:51:14.809 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullAddress:level]
- 2024-02-18 11:51:14.809 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for level
- 2024-02-18 11:51:14.809 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address.level
- 2024-02-18 11:51:14.809 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property level
- 2024-02-18 11:51:14.809 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='name')
- 2024-02-18 11:51:14.809 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property name with lazy=false
- 2024-02-18 11:51:14.809 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullAddress:name]
- 2024-02-18 11:51:14.809 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for name
- 2024-02-18 11:51:14.809 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address.name
- 2024-02-18 11:51:14.809 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property name
- 2024-02-18 11:51:14.810 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='year_version')
- 2024-02-18 11:51:14.810 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property yearVersion with lazy=false
- 2024-02-18 11:51:14.810 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullAddress:yearVersion]
- 2024-02-18 11:51:14.810 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for yearVersion
- 2024-02-18 11:51:14.810 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address.year_version
- 2024-02-18 11:51:14.810 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property yearVersion
- 2024-02-18 11:51:14.810 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn(column='address_id',referencedColumn='id')
- 2024-02-18 11:51:14.810 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn()
- 2024-02-18 11:51:14.810 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: IndexColumn(column='details_ORDER')
- 2024-02-18 11:51:14.810 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn()
- 2024-02-18 11:51:14.810 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='details_KEY')
- 2024-02-18 11:51:14.810 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn(column='details_KEY')
- 2024-02-18 11:51:14.811 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn()
- 2024-02-18 11:51:14.811 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn()
- 2024-02-18 11:51:14.811 [, - main] DEBUG o.hibernate.boot.model.internal.CollectionBinder - Collection role: io.github.truenine.composeserver.rds.entities.FullAddress.details
- 2024-02-18 11:51:14.811 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property details
- 2024-02-18 11:51:14.811 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: io.github.truenine.composeserver.rds.entities
- 2024-02-18 11:51:14.811 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.FullAddress
- 2024-02-18 11:51:14.811 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.FullAddress
- 2024-02-18 11:51:14.811 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.FullAddress
- 2024-02-18 11:51:14.812 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity io.github.truenine.composeserver.rds.entities.FullAddress
- 2024-02-18 11:51:14.812 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: io.github.truenine.composeserver.rds.entities.FullAddressDetails
- 2024-02-18 11:51:14.812 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name FullAddressDetails
- 2024-02-18 11:51:14.812 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity io.github.truenine.composeserver.rds.entities.FullAddressDetails on table address_details
- 2024-02-18 11:51:14.812 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.814 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.814 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.FullAddressDetails] is safe
- 2024-02-18 11:51:14.814 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.FullAddressDetails
- 2024-02-18 11:51:14.814 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.814 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullAddressDetails:id]
- 2024-02-18 11:51:14.814 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.814 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address_details.id
- 2024-02-18 11:51:14.814 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.814 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.814 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.814 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.814 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullAddressDetails:crd]
- 2024-02-18 11:51:14.814 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.814 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address_details.crd
- 2024-02-18 11:51:14.815 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.815 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.815 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.815 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullAddressDetails:ldf]
- 2024-02-18 11:51:14.815 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.815 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address_details.ldf
- 2024-02-18 11:51:14.815 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.815 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.815 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.815 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullAddressDetails:mrd]
- 2024-02-18 11:51:14.815 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.815 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address_details.mrd
- 2024-02-18 11:51:14.815 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.815 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.815 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.815 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullAddressDetails:rlv]
- 2024-02-18 11:51:14.815 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.815 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address_details.rlv
- 2024-02-18 11:51:14.815 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.815 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='address_code')
- 2024-02-18 11:51:14.815 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property addressCode with lazy=false
- 2024-02-18 11:51:14.815 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullAddressDetails:addressCode]
- 2024-02-18 11:51:14.815 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for addressCode
- 2024-02-18 11:51:14.816 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address_details.address_code
- 2024-02-18 11:51:14.816 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property addressCode
- 2024-02-18 11:51:14.816 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='address_details')
- 2024-02-18 11:51:14.816 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property addressDetails with lazy=false
- 2024-02-18 11:51:14.816 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullAddressDetails:addressDetails]
- 2024-02-18 11:51:14.816 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for addressDetails
- 2024-02-18 11:51:14.816 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address_details.address_details
- 2024-02-18 11:51:14.816 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property addressDetails
- 2024-02-18 11:51:14.816 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='address_id')
- 2024-02-18 11:51:14.816 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property addressId with lazy=false
- 2024-02-18 11:51:14.816 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullAddressDetails:addressId]
- 2024-02-18 11:51:14.816 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for addressId
- 2024-02-18 11:51:14.816 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address_details.address_id
- 2024-02-18 11:51:14.816 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property addressId
- 2024-02-18 11:51:14.816 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='center')
- 2024-02-18 11:51:14.816 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property center with lazy=false
- 2024-02-18 11:51:14.816 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Applying JPA converter [io.github.truenine.composeserver.rds.entities.FullAddressDetails:center]
- 2024-02-18 11:51:14.816 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for center
- 2024-02-18 11:51:14.816 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address_details.center
- 2024-02-18 11:51:14.816 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property center
- 2024-02-18 11:51:14.816 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='name')
- 2024-02-18 11:51:14.816 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property name with lazy=false
- 2024-02-18 11:51:14.817 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullAddressDetails:name]
- 2024-02-18 11:51:14.817 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for name
- 2024-02-18 11:51:14.817 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address_details.name
- 2024-02-18 11:51:14.817 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property name
- 2024-02-18 11:51:14.817 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='phone')
- 2024-02-18 11:51:14.817 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property phone with lazy=false
- 2024-02-18 11:51:14.817 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullAddressDetails:phone]
- 2024-02-18 11:51:14.817 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for phone
- 2024-02-18 11:51:14.817 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address_details.phone
- 2024-02-18 11:51:14.817 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property phone
- 2024-02-18 11:51:14.817 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='user_id')
- 2024-02-18 11:51:14.817 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property userId with lazy=false
- 2024-02-18 11:51:14.817 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullAddressDetails:userId]
- 2024-02-18 11:51:14.817 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for userId
- 2024-02-18 11:51:14.817 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address_details.user_id
- 2024-02-18 11:51:14.817 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property userId
- 2024-02-18 11:51:14.817 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn(column='address_id',referencedColumn='id')
- 2024-02-18 11:51:14.817 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn()
- 2024-02-18 11:51:14.818 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property address
- 2024-02-18 11:51:14.818 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: io.github.truenine.composeserver.rds.entities
- 2024-02-18 11:51:14.818 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.FullAddressDetails
- 2024-02-18 11:51:14.818 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.FullAddressDetails
- 2024-02-18 11:51:14.818 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.FullAddressDetails
- 2024-02-18 11:51:14.819 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity io.github.truenine.composeserver.rds.entities.FullAddressDetails
- 2024-02-18 11:51:14.819 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: io.github.truenine.composeserver.rds.entities.FullRole
- 2024-02-18 11:51:14.819 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name FullRole
- 2024-02-18 11:51:14.819 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity io.github.truenine.composeserver.rds.entities.FullRole on table role
- 2024-02-18 11:51:14.820 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.820 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.820 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.FullRole] is safe
- 2024-02-18 11:51:14.820 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.FullRole
- 2024-02-18 11:51:14.821 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.821 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullRole:id]
- 2024-02-18 11:51:14.821 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.821 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role.id
- 2024-02-18 11:51:14.821 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.821 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.821 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.821 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.821 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullRole:crd]
- 2024-02-18 11:51:14.821 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.821 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role.crd
- 2024-02-18 11:51:14.821 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.821 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.821 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.821 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullRole:ldf]
- 2024-02-18 11:51:14.821 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.821 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role.ldf
- 2024-02-18 11:51:14.821 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.822 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.822 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.822 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullRole:mrd]
- 2024-02-18 11:51:14.822 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.822 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role.mrd
- 2024-02-18 11:51:14.822 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.822 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.822 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.822 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullRole:rlv]
- 2024-02-18 11:51:14.822 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.822 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role.rlv
- 2024-02-18 11:51:14.822 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.822 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='doc')
- 2024-02-18 11:51:14.822 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property doc with lazy=false
- 2024-02-18 11:51:14.822 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullRole:doc]
- 2024-02-18 11:51:14.822 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for doc
- 2024-02-18 11:51:14.822 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role.doc
- 2024-02-18 11:51:14.822 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property doc
- 2024-02-18 11:51:14.822 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='name')
- 2024-02-18 11:51:14.822 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property name with lazy=false
- 2024-02-18 11:51:14.822 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullRole:name]
- 2024-02-18 11:51:14.822 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for name
- 2024-02-18 11:51:14.822 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role.name
- 2024-02-18 11:51:14.822 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property name
- 2024-02-18 11:51:14.822 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: IndexColumn(column='permissions_ORDER')
- 2024-02-18 11:51:14.823 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn()
- 2024-02-18 11:51:14.823 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='permissions_KEY')
- 2024-02-18 11:51:14.823 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn(column='permissions_KEY')
- 2024-02-18 11:51:14.823 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn(column='role_id',referencedColumn='id')
- 2024-02-18 11:51:14.823 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn(column='permissions_id',referencedColumn='id')
- 2024-02-18 11:51:14.823 [, - main] DEBUG o.hibernate.boot.model.internal.CollectionBinder - Collection role: io.github.truenine.composeserver.rds.entities.FullRole.permissions
- 2024-02-18 11:51:14.823 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property permissions
- 2024-02-18 11:51:14.823 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: io.github.truenine.composeserver.rds.entities
- 2024-02-18 11:51:14.824 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.FullRole
- 2024-02-18 11:51:14.824 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.FullRole
- 2024-02-18 11:51:14.824 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.FullRole
- 2024-02-18 11:51:14.824 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity io.github.truenine.composeserver.rds.entities.FullRole
- 2024-02-18 11:51:14.824 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: io.github.truenine.composeserver.rds.entities.FullRoleGroup
- 2024-02-18 11:51:14.824 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name FullRoleGroup
- 2024-02-18 11:51:14.824 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity io.github.truenine.composeserver.rds.entities.FullRoleGroup on table role_group
- 2024-02-18 11:51:14.825 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.825 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.825 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.FullRoleGroup] is safe
- 2024-02-18 11:51:14.825 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.FullRoleGroup
- 2024-02-18 11:51:14.825 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.825 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullRoleGroup:id]
- 2024-02-18 11:51:14.825 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.825 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role_group.id
- 2024-02-18 11:51:14.825 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.825 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.826 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.826 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.826 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullRoleGroup:crd]
- 2024-02-18 11:51:14.826 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.826 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role_group.crd
- 2024-02-18 11:51:14.826 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.826 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.826 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.826 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullRoleGroup:ldf]
- 2024-02-18 11:51:14.826 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.826 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role_group.ldf
- 2024-02-18 11:51:14.826 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.826 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.826 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.826 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullRoleGroup:mrd]
- 2024-02-18 11:51:14.826 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.826 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role_group.mrd
- 2024-02-18 11:51:14.826 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.826 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.826 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.826 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullRoleGroup:rlv]
- 2024-02-18 11:51:14.826 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.826 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role_group.rlv
- 2024-02-18 11:51:14.826 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.826 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='doc')
- 2024-02-18 11:51:14.826 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property doc with lazy=false
- 2024-02-18 11:51:14.826 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullRoleGroup:doc]
- 2024-02-18 11:51:14.826 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for doc
- 2024-02-18 11:51:14.826 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role_group.doc
- 2024-02-18 11:51:14.826 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property doc
- 2024-02-18 11:51:14.827 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='name')
- 2024-02-18 11:51:14.827 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property name with lazy=false
- 2024-02-18 11:51:14.827 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullRoleGroup:name]
- 2024-02-18 11:51:14.827 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for name
- 2024-02-18 11:51:14.827 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role_group.name
- 2024-02-18 11:51:14.827 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property name
- 2024-02-18 11:51:14.827 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: IndexColumn(column='roles_ORDER')
- 2024-02-18 11:51:14.827 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn()
- 2024-02-18 11:51:14.827 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='roles_KEY')
- 2024-02-18 11:51:14.827 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn(column='roles_KEY')
- 2024-02-18 11:51:14.827 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn(column='role_group_id',referencedColumn='id')
- 2024-02-18 11:51:14.827 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn(column='role_id',referencedColumn='id')
- 2024-02-18 11:51:14.827 [, - main] DEBUG o.hibernate.boot.model.internal.CollectionBinder - Collection role: io.github.truenine.composeserver.rds.entities.FullRoleGroup.roles
- 2024-02-18 11:51:14.827 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property roles
- 2024-02-18 11:51:14.828 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: io.github.truenine.composeserver.rds.entities
- 2024-02-18 11:51:14.828 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.FullRoleGroup
- 2024-02-18 11:51:14.828 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.FullRoleGroup
- 2024-02-18 11:51:14.828 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.FullRoleGroup
- 2024-02-18 11:51:14.828 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity io.github.truenine.composeserver.rds.entities.FullRoleGroup
- 2024-02-18 11:51:14.828 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: io.github.truenine.composeserver.rds.entities.FullUserInfo
- 2024-02-18 11:51:14.829 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name FullUserInfo
- 2024-02-18 11:51:14.829 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity io.github.truenine.composeserver.rds.entities.FullUserInfo on table user_info
- 2024-02-18 11:51:14.829 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.830 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.830 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.FullUserInfo] is safe
- 2024-02-18 11:51:14.830 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.FullUserInfo
- 2024-02-18 11:51:14.831 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.831 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullUserInfo:id]
- 2024-02-18 11:51:14.831 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.831 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.id
- 2024-02-18 11:51:14.831 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.831 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.831 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.831 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.831 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullUserInfo:crd]
- 2024-02-18 11:51:14.831 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.831 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.crd
- 2024-02-18 11:51:14.831 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.831 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.831 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.831 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullUserInfo:ldf]
- 2024-02-18 11:51:14.831 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.831 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.ldf
- 2024-02-18 11:51:14.831 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.831 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.831 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.831 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullUserInfo:mrd]
- 2024-02-18 11:51:14.831 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.831 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.mrd
- 2024-02-18 11:51:14.831 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.831 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.831 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.831 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullUserInfo:rlv]
- 2024-02-18 11:51:14.832 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.832 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.rlv
- 2024-02-18 11:51:14.832 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.832 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='address_code')
- 2024-02-18 11:51:14.832 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property addressCode with lazy=false
- 2024-02-18 11:51:14.832 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullUserInfo:addressCode]
- 2024-02-18 11:51:14.832 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for addressCode
- 2024-02-18 11:51:14.832 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.address_code
- 2024-02-18 11:51:14.832 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property addressCode
- 2024-02-18 11:51:14.832 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='address_details_id')
- 2024-02-18 11:51:14.832 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property addressDetailsId with lazy=false
- 2024-02-18 11:51:14.832 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullUserInfo:addressDetailsId]
- 2024-02-18 11:51:14.832 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for addressDetailsId
- 2024-02-18 11:51:14.832 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.address_details_id
- 2024-02-18 11:51:14.832 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property addressDetailsId
- 2024-02-18 11:51:14.832 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='address_id')
- 2024-02-18 11:51:14.832 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property addressId with lazy=false
- 2024-02-18 11:51:14.832 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullUserInfo:addressId]
- 2024-02-18 11:51:14.832 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for addressId
- 2024-02-18 11:51:14.832 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.address_id
- 2024-02-18 11:51:14.832 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property addressId
- 2024-02-18 11:51:14.832 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='avatar_img_id')
- 2024-02-18 11:51:14.832 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property avatarImgId with lazy=false
- 2024-02-18 11:51:14.832 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullUserInfo:avatarImgId]
- 2024-02-18 11:51:14.832 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for avatarImgId
- 2024-02-18 11:51:14.832 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.avatar_img_id
- 2024-02-18 11:51:14.832 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property avatarImgId
- 2024-02-18 11:51:14.833 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='birthday')
- 2024-02-18 11:51:14.833 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property birthday with lazy=false
- 2024-02-18 11:51:14.833 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullUserInfo:birthday]
- 2024-02-18 11:51:14.833 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for birthday
- 2024-02-18 11:51:14.833 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.birthday
- 2024-02-18 11:51:14.833 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property birthday
- 2024-02-18 11:51:14.833 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='create_user_id')
- 2024-02-18 11:51:14.833 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property createUserId with lazy=false
- 2024-02-18 11:51:14.833 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullUserInfo:createUserId]
- 2024-02-18 11:51:14.833 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for createUserId
- 2024-02-18 11:51:14.833 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.create_user_id
- 2024-02-18 11:51:14.833 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property createUserId
- 2024-02-18 11:51:14.833 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='email')
- 2024-02-18 11:51:14.833 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property email with lazy=false
- 2024-02-18 11:51:14.833 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullUserInfo:email]
- 2024-02-18 11:51:14.833 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for email
- 2024-02-18 11:51:14.833 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.email
- 2024-02-18 11:51:14.833 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property email
- 2024-02-18 11:51:14.833 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='first_name')
- 2024-02-18 11:51:14.833 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property firstName with lazy=false
- 2024-02-18 11:51:14.833 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullUserInfo:firstName]
- 2024-02-18 11:51:14.833 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for firstName
- 2024-02-18 11:51:14.833 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.first_name
- 2024-02-18 11:51:14.833 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property firstName
- 2024-02-18 11:51:14.833 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='gender')
- 2024-02-18 11:51:14.833 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property gender with lazy=false
- 2024-02-18 11:51:14.834 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Applying JPA converter [io.github.truenine.composeserver.rds.entities.FullUserInfo:gender]
- 2024-02-18 11:51:14.834 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for gender
- 2024-02-18 11:51:14.834 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.gender
- 2024-02-18 11:51:14.834 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property gender
- 2024-02-18 11:51:14.834 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id_card')
- 2024-02-18 11:51:14.834 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property idCard with lazy=false
- 2024-02-18 11:51:14.834 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullUserInfo:idCard]
- 2024-02-18 11:51:14.834 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for idCard
- 2024-02-18 11:51:14.834 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.id_card
- 2024-02-18 11:51:14.834 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property idCard
- 2024-02-18 11:51:14.834 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='last_name')
- 2024-02-18 11:51:14.834 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property lastName with lazy=false
- 2024-02-18 11:51:14.834 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullUserInfo:lastName]
- 2024-02-18 11:51:14.834 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for lastName
- 2024-02-18 11:51:14.834 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.last_name
- 2024-02-18 11:51:14.834 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property lastName
- 2024-02-18 11:51:14.834 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='phone')
- 2024-02-18 11:51:14.834 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property phone with lazy=false
- 2024-02-18 11:51:14.834 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullUserInfo:phone]
- 2024-02-18 11:51:14.834 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for phone
- 2024-02-18 11:51:14.834 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.phone
- 2024-02-18 11:51:14.834 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property phone
- 2024-02-18 11:51:14.834 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='pri')
- 2024-02-18 11:51:14.834 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property pri with lazy=false
- 2024-02-18 11:51:14.834 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullUserInfo:pri]
- 2024-02-18 11:51:14.834 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for pri
- 2024-02-18 11:51:14.835 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.pri
- 2024-02-18 11:51:14.835 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property pri
- 2024-02-18 11:51:14.835 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='qq_account')
- 2024-02-18 11:51:14.835 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property qqAccount with lazy=false
- 2024-02-18 11:51:14.835 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullUserInfo:qqAccount]
- 2024-02-18 11:51:14.835 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for qqAccount
- 2024-02-18 11:51:14.835 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.qq_account
- 2024-02-18 11:51:14.835 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property qqAccount
- 2024-02-18 11:51:14.835 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='qq_openid')
- 2024-02-18 11:51:14.835 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property qqOpenid with lazy=false
- 2024-02-18 11:51:14.835 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullUserInfo:qqOpenid]
- 2024-02-18 11:51:14.835 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for qqOpenid
- 2024-02-18 11:51:14.835 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.qq_openid
- 2024-02-18 11:51:14.835 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property qqOpenid
- 2024-02-18 11:51:14.835 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='spare_phone')
- 2024-02-18 11:51:14.835 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property sparePhone with lazy=false
- 2024-02-18 11:51:14.835 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullUserInfo:sparePhone]
- 2024-02-18 11:51:14.835 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for sparePhone
- 2024-02-18 11:51:14.835 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.spare_phone
- 2024-02-18 11:51:14.835 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property sparePhone
- 2024-02-18 11:51:14.835 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='user_id')
- 2024-02-18 11:51:14.835 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property userId with lazy=false
- 2024-02-18 11:51:14.835 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullUserInfo:userId]
- 2024-02-18 11:51:14.835 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for userId
- 2024-02-18 11:51:14.835 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.user_id
- 2024-02-18 11:51:14.835 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property userId
- 2024-02-18 11:51:14.835 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='wechat_account')
- 2024-02-18 11:51:14.835 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property wechatAccount with lazy=false
- 2024-02-18 11:51:14.836 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullUserInfo:wechatAccount]
- 2024-02-18 11:51:14.836 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for wechatAccount
- 2024-02-18 11:51:14.836 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.wechat_account
- 2024-02-18 11:51:14.836 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property wechatAccount
- 2024-02-18 11:51:14.836 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='wechat_authid')
- 2024-02-18 11:51:14.836 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property wechatAuthid with lazy=false
- 2024-02-18 11:51:14.836 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullUserInfo:wechatAuthid]
- 2024-02-18 11:51:14.836 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for wechatAuthid
- 2024-02-18 11:51:14.836 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.wechat_authid
- 2024-02-18 11:51:14.836 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property wechatAuthid
- 2024-02-18 11:51:14.836 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='wechat_openid')
- 2024-02-18 11:51:14.836 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property wechatOpenid with lazy=false
- 2024-02-18 11:51:14.836 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullUserInfo:wechatOpenid]
- 2024-02-18 11:51:14.836 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for wechatOpenid
- 2024-02-18 11:51:14.836 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.wechat_openid
- 2024-02-18 11:51:14.836 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property wechatOpenid
- 2024-02-18 11:51:14.836 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn(column='address_details_id',referencedColumn='id')
- 2024-02-18 11:51:14.836 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn()
- 2024-02-18 11:51:14.836 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property addressDetails
- 2024-02-18 11:51:14.837 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn(column='avatar_img_id',referencedColumn='id')
- 2024-02-18 11:51:14.837 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn()
- 2024-02-18 11:51:14.837 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property avatarImage
- 2024-02-18 11:51:14.837 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn(column='user_id',referencedColumn='id')
- 2024-02-18 11:51:14.837 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn()
- 2024-02-18 11:51:14.837 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property usr
- 2024-02-18 11:51:14.838 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: io.github.truenine.composeserver.rds.entities
- 2024-02-18 11:51:14.838 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.FullUserInfo
- 2024-02-18 11:51:14.838 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.FullUserInfo
- 2024-02-18 11:51:14.838 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.FullUserInfo
- 2024-02-18 11:51:14.838 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity io.github.truenine.composeserver.rds.entities.FullUserInfo
- 2024-02-18 11:51:14.838 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: io.github.truenine.composeserver.rds.entities.FullUsr
- 2024-02-18 11:51:14.839 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name FullUsr
- 2024-02-18 11:51:14.839 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity io.github.truenine.composeserver.rds.entities.FullUsr on table usr
- 2024-02-18 11:51:14.839 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.841 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.841 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.FullUsr] is safe
- 2024-02-18 11:51:14.841 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.FullUsr
- 2024-02-18 11:51:14.841 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.841 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullUsr:id]
- 2024-02-18 11:51:14.841 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.841 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: usr.id
- 2024-02-18 11:51:14.841 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.841 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.841 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.841 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.841 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullUsr:crd]
- 2024-02-18 11:51:14.841 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.841 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: usr.crd
- 2024-02-18 11:51:14.841 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.841 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.841 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.841 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullUsr:ldf]
- 2024-02-18 11:51:14.841 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.841 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: usr.ldf
- 2024-02-18 11:51:14.841 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.841 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.841 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.841 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullUsr:mrd]
- 2024-02-18 11:51:14.841 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.841 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: usr.mrd
- 2024-02-18 11:51:14.841 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.842 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.842 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.842 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullUsr:rlv]
- 2024-02-18 11:51:14.842 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.842 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: usr.rlv
- 2024-02-18 11:51:14.842 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.842 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='account')
- 2024-02-18 11:51:14.842 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property account with lazy=false
- 2024-02-18 11:51:14.842 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullUsr:account]
- 2024-02-18 11:51:14.842 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for account
- 2024-02-18 11:51:14.842 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: usr.account
- 2024-02-18 11:51:14.842 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property account
- 2024-02-18 11:51:14.842 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ban_time')
- 2024-02-18 11:51:14.842 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property banTime with lazy=false
- 2024-02-18 11:51:14.842 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullUsr:banTime]
- 2024-02-18 11:51:14.842 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for banTime
- 2024-02-18 11:51:14.842 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: usr.ban_time
- 2024-02-18 11:51:14.842 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property banTime
- 2024-02-18 11:51:14.842 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='create_user_id')
- 2024-02-18 11:51:14.842 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property createUserId with lazy=false
- 2024-02-18 11:51:14.842 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullUsr:createUserId]
- 2024-02-18 11:51:14.842 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for createUserId
- 2024-02-18 11:51:14.842 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: usr.create_user_id
- 2024-02-18 11:51:14.842 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property createUserId
- 2024-02-18 11:51:14.843 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='doc')
- 2024-02-18 11:51:14.843 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property doc with lazy=false
- 2024-02-18 11:51:14.843 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullUsr:doc]
- 2024-02-18 11:51:14.843 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for doc
- 2024-02-18 11:51:14.843 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: usr.doc
- 2024-02-18 11:51:14.843 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property doc
- 2024-02-18 11:51:14.843 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='last_login_time')
- 2024-02-18 11:51:14.843 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property lastLoginTime with lazy=false
- 2024-02-18 11:51:14.843 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullUsr:lastLoginTime]
- 2024-02-18 11:51:14.843 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for lastLoginTime
- 2024-02-18 11:51:14.843 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: usr.last_login_time
- 2024-02-18 11:51:14.843 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property lastLoginTime
- 2024-02-18 11:51:14.843 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='nick_name')
- 2024-02-18 11:51:14.843 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property nickName with lazy=false
- 2024-02-18 11:51:14.843 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullUsr:nickName]
- 2024-02-18 11:51:14.843 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for nickName
- 2024-02-18 11:51:14.843 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: usr.nick_name
- 2024-02-18 11:51:14.843 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property nickName
- 2024-02-18 11:51:14.843 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='pwd_enc')
- 2024-02-18 11:51:14.843 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property pwdEnc with lazy=false
- 2024-02-18 11:51:14.843 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.FullUsr:pwdEnc]
- 2024-02-18 11:51:14.843 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for pwdEnc
- 2024-02-18 11:51:14.843 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: usr.pwd_enc
- 2024-02-18 11:51:14.843 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property pwdEnc
- 2024-02-18 11:51:14.843 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn()
- 2024-02-18 11:51:14.844 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn()
- 2024-02-18 11:51:14.845 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: IndexColumn(column='roleGroups_ORDER')
- 2024-02-18 11:51:14.845 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn()
- 2024-02-18 11:51:14.845 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='roleGroups_KEY')
- 2024-02-18 11:51:14.845 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn(column='roleGroups_KEY')
- 2024-02-18 11:51:14.845 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn(column='user_id',referencedColumn='id')
- 2024-02-18 11:51:14.845 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn(column='role_group_id',referencedColumn='id')
- 2024-02-18 11:51:14.845 [, - main] DEBUG o.hibernate.boot.model.internal.CollectionBinder - Collection role: io.github.truenine.composeserver.rds.entities.FullUsr.roleGroups
- 2024-02-18 11:51:14.845 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property roleGroups
- 2024-02-18 11:51:14.845 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: io.github.truenine.composeserver.rds.entities
- 2024-02-18 11:51:14.846 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.FullUsr
- 2024-02-18 11:51:14.846 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.FullUsr
- 2024-02-18 11:51:14.846 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.FullUsr
- 2024-02-18 11:51:14.846 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity io.github.truenine.composeserver.rds.entities.FullUsr
- 2024-02-18 11:51:14.846 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: io.github.truenine.composeserver.rds.entities.LinkedAttachment
- 2024-02-18 11:51:14.846 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name LinkedAttachment
- 2024-02-18 11:51:14.847 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity io.github.truenine.composeserver.rds.entities.LinkedAttachment on table attachment
- 2024-02-18 11:51:14.847 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.847 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.847 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.LinkedAttachment] is safe
- 2024-02-18 11:51:14.847 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.LinkedAttachment
- 2024-02-18 11:51:14.847 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.847 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.LinkedAttachment:id]
- 2024-02-18 11:51:14.847 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.847 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: attachment.id
- 2024-02-18 11:51:14.847 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.848 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.848 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.848 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.848 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.LinkedAttachment:crd]
- 2024-02-18 11:51:14.848 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.848 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: attachment.crd
- 2024-02-18 11:51:14.848 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.848 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.848 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.848 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.LinkedAttachment:ldf]
- 2024-02-18 11:51:14.848 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.848 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: attachment.ldf
- 2024-02-18 11:51:14.848 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.848 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.848 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.848 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.LinkedAttachment:mrd]
- 2024-02-18 11:51:14.848 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.848 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: attachment.mrd
- 2024-02-18 11:51:14.848 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.848 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.848 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.848 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.LinkedAttachment:rlv]
- 2024-02-18 11:51:14.848 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.848 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: attachment.rlv
- 2024-02-18 11:51:14.848 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.849 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='att_type')
- 2024-02-18 11:51:14.849 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property attType with lazy=false
- 2024-02-18 11:51:14.849 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Applying JPA converter [io.github.truenine.composeserver.rds.entities.LinkedAttachment:attType]
- 2024-02-18 11:51:14.849 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for attType
- 2024-02-18 11:51:14.849 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: attachment.att_type
- 2024-02-18 11:51:14.849 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property attType
- 2024-02-18 11:51:14.849 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedJoinColumn(column='url_id',referencedColumn='id')
- 2024-02-18 11:51:14.849 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn()
- 2024-02-18 11:51:14.849 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property base
- 2024-02-18 11:51:14.849 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='base_uri')
- 2024-02-18 11:51:14.849 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property baseUri with lazy=false
- 2024-02-18 11:51:14.849 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.LinkedAttachment:baseUri]
- 2024-02-18 11:51:14.849 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for baseUri
- 2024-02-18 11:51:14.849 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: attachment.base_uri
- 2024-02-18 11:51:14.849 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property baseUri
- 2024-02-18 11:51:14.849 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='base_url')
- 2024-02-18 11:51:14.849 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property baseUrl with lazy=false
- 2024-02-18 11:51:14.849 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.LinkedAttachment:baseUrl]
- 2024-02-18 11:51:14.849 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for baseUrl
- 2024-02-18 11:51:14.849 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: attachment.base_url
- 2024-02-18 11:51:14.850 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property baseUrl
- 2024-02-18 11:51:14.850 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='meta_name')
- 2024-02-18 11:51:14.850 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property metaName with lazy=false
- 2024-02-18 11:51:14.850 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.LinkedAttachment:metaName]
- 2024-02-18 11:51:14.850 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for metaName
- 2024-02-18 11:51:14.850 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: attachment.meta_name
- 2024-02-18 11:51:14.850 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property metaName
- 2024-02-18 11:51:14.850 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mime_type')
- 2024-02-18 11:51:14.850 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mimeType with lazy=false
- 2024-02-18 11:51:14.850 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.LinkedAttachment:mimeType]
- 2024-02-18 11:51:14.850 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mimeType
- 2024-02-18 11:51:14.850 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: attachment.mime_type
- 2024-02-18 11:51:14.850 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mimeType
- 2024-02-18 11:51:14.850 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='save_name')
- 2024-02-18 11:51:14.850 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property saveName with lazy=false
- 2024-02-18 11:51:14.850 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.LinkedAttachment:saveName]
- 2024-02-18 11:51:14.850 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for saveName
- 2024-02-18 11:51:14.850 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: attachment.save_name
- 2024-02-18 11:51:14.850 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property saveName
- 2024-02-18 11:51:14.850 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='url_id')
- 2024-02-18 11:51:14.850 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property urlId with lazy=false
- 2024-02-18 11:51:14.850 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.LinkedAttachment:urlId]
- 2024-02-18 11:51:14.850 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for urlId
- 2024-02-18 11:51:14.850 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: attachment.url_id
- 2024-02-18 11:51:14.850 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property urlId
- 2024-02-18 11:51:14.851 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: io.github.truenine.composeserver.rds.entities
- 2024-02-18 11:51:14.851 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.LinkedAttachment
- 2024-02-18 11:51:14.851 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.LinkedAttachment
- 2024-02-18 11:51:14.851 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.LinkedAttachment
- 2024-02-18 11:51:14.851 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity io.github.truenine.composeserver.rds.entities.LinkedAttachment
- 2024-02-18 11:51:14.851 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails
- 2024-02-18 11:51:14.852 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name NonDesensitizedAddressDetails
- 2024-02-18 11:51:14.852 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails on table address_details
- 2024-02-18 11:51:14.852 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.852 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.852 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails] is safe
- 2024-02-18 11:51:14.852 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails
- 2024-02-18 11:51:14.852 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.852 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails:id]
- 2024-02-18 11:51:14.853 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.853 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address_details.id
- 2024-02-18 11:51:14.853 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.853 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.853 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.853 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.853 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails:crd]
- 2024-02-18 11:51:14.853 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.853 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address_details.crd
- 2024-02-18 11:51:14.853 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.853 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.853 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.853 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails:ldf]
- 2024-02-18 11:51:14.853 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.853 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address_details.ldf
- 2024-02-18 11:51:14.853 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.853 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.853 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.853 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails:mrd]
- 2024-02-18 11:51:14.853 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.853 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address_details.mrd
- 2024-02-18 11:51:14.853 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.853 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.853 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.853 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails:rlv]
- 2024-02-18 11:51:14.853 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.853 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address_details.rlv
- 2024-02-18 11:51:14.853 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.854 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='address_code')
- 2024-02-18 11:51:14.854 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property addressCode with lazy=false
- 2024-02-18 11:51:14.854 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails:addressCode]
- 2024-02-18 11:51:14.854 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for addressCode
- 2024-02-18 11:51:14.854 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address_details.address_code
- 2024-02-18 11:51:14.854 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property addressCode
- 2024-02-18 11:51:14.854 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='address_details')
- 2024-02-18 11:51:14.854 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property addressDetails with lazy=false
- 2024-02-18 11:51:14.854 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails:addressDetails]
- 2024-02-18 11:51:14.854 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for addressDetails
- 2024-02-18 11:51:14.854 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address_details.address_details
- 2024-02-18 11:51:14.854 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property addressDetails
- 2024-02-18 11:51:14.854 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='address_id')
- 2024-02-18 11:51:14.854 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property addressId with lazy=false
- 2024-02-18 11:51:14.854 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails:addressId]
- 2024-02-18 11:51:14.854 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for addressId
- 2024-02-18 11:51:14.854 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address_details.address_id
- 2024-02-18 11:51:14.854 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property addressId
- 2024-02-18 11:51:14.854 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='center')
- 2024-02-18 11:51:14.854 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property center with lazy=false
- 2024-02-18 11:51:14.854 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Applying JPA converter [io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails:center]
- 2024-02-18 11:51:14.854 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for center
- 2024-02-18 11:51:14.854 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address_details.center
- 2024-02-18 11:51:14.854 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property center
- 2024-02-18 11:51:14.854 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='name')
- 2024-02-18 11:51:14.854 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property name with lazy=false
- 2024-02-18 11:51:14.854 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails:name]
- 2024-02-18 11:51:14.854 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for name
- 2024-02-18 11:51:14.855 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address_details.name
- 2024-02-18 11:51:14.855 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property name
- 2024-02-18 11:51:14.855 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='phone')
- 2024-02-18 11:51:14.855 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property phone with lazy=false
- 2024-02-18 11:51:14.855 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails:phone]
- 2024-02-18 11:51:14.855 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for phone
- 2024-02-18 11:51:14.855 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address_details.phone
- 2024-02-18 11:51:14.855 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property phone
- 2024-02-18 11:51:14.855 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='user_id')
- 2024-02-18 11:51:14.855 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property userId with lazy=false
- 2024-02-18 11:51:14.855 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails:userId]
- 2024-02-18 11:51:14.855 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for userId
- 2024-02-18 11:51:14.855 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: address_details.user_id
- 2024-02-18 11:51:14.855 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property userId
- 2024-02-18 11:51:14.855 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: io.github.truenine.composeserver.rds.entities
- 2024-02-18 11:51:14.856 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails
- 2024-02-18 11:51:14.856 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails
- 2024-02-18 11:51:14.856 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails
- 2024-02-18 11:51:14.856 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails
- 2024-02-18 11:51:14.856 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: io.github.truenine.composeserver.rds.entities.Permissions
- 2024-02-18 11:51:14.856 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name Permissions
- 2024-02-18 11:51:14.857 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity io.github.truenine.composeserver.rds.entities.Permissions on table permissions
- 2024-02-18 11:51:14.857 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.857 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.857 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.Permissions] is safe
- 2024-02-18 11:51:14.857 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.Permissions
- 2024-02-18 11:51:14.857 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.857 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Permissions:id]
- 2024-02-18 11:51:14.857 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.857 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: permissions.id
- 2024-02-18 11:51:14.857 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.857 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.857 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.857 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.857 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Permissions:crd]
- 2024-02-18 11:51:14.857 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.857 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: permissions.crd
- 2024-02-18 11:51:14.858 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.858 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.858 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.858 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Permissions:ldf]
- 2024-02-18 11:51:14.858 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.858 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: permissions.ldf
- 2024-02-18 11:51:14.858 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.858 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.858 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.858 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Permissions:mrd]
- 2024-02-18 11:51:14.858 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.858 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: permissions.mrd
- 2024-02-18 11:51:14.858 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.858 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.858 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.858 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Permissions:rlv]
- 2024-02-18 11:51:14.858 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.858 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: permissions.rlv
- 2024-02-18 11:51:14.858 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.858 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='doc')
- 2024-02-18 11:51:14.858 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property doc with lazy=false
- 2024-02-18 11:51:14.858 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Permissions:doc]
- 2024-02-18 11:51:14.858 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for doc
- 2024-02-18 11:51:14.858 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: permissions.doc
- 2024-02-18 11:51:14.858 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property doc
- 2024-02-18 11:51:14.858 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='name')
- 2024-02-18 11:51:14.858 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property name with lazy=false
- 2024-02-18 11:51:14.858 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Permissions:name]
- 2024-02-18 11:51:14.858 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for name
- 2024-02-18 11:51:14.858 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: permissions.name
- 2024-02-18 11:51:14.858 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property name
- 2024-02-18 11:51:14.859 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: io.github.truenine.composeserver.rds.entities
- 2024-02-18 11:51:14.859 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.Permissions
- 2024-02-18 11:51:14.859 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.Permissions
- 2024-02-18 11:51:14.859 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.Permissions
- 2024-02-18 11:51:14.859 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity io.github.truenine.composeserver.rds.entities.Permissions
- 2024-02-18 11:51:14.859 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: io.github.truenine.composeserver.rds.entities.Role
- 2024-02-18 11:51:14.860 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name Role
- 2024-02-18 11:51:14.860 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity io.github.truenine.composeserver.rds.entities.Role on table role
- 2024-02-18 11:51:14.860 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.860 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.860 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.Role] is safe
- 2024-02-18 11:51:14.860 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.Role
- 2024-02-18 11:51:14.860 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.860 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Role:id]
- 2024-02-18 11:51:14.860 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.860 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role.id
- 2024-02-18 11:51:14.860 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.860 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.861 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.861 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.861 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Role:crd]
- 2024-02-18 11:51:14.861 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.861 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role.crd
- 2024-02-18 11:51:14.861 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.861 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.861 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.861 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Role:ldf]
- 2024-02-18 11:51:14.861 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.861 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role.ldf
- 2024-02-18 11:51:14.861 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.861 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.861 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.861 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Role:mrd]
- 2024-02-18 11:51:14.861 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.861 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role.mrd
- 2024-02-18 11:51:14.861 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.861 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.861 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.861 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Role:rlv]
- 2024-02-18 11:51:14.861 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.861 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role.rlv
- 2024-02-18 11:51:14.861 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.861 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='doc')
- 2024-02-18 11:51:14.861 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property doc with lazy=false
- 2024-02-18 11:51:14.861 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Role:doc]
- 2024-02-18 11:51:14.861 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for doc
- 2024-02-18 11:51:14.861 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role.doc
- 2024-02-18 11:51:14.861 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property doc
- 2024-02-18 11:51:14.862 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='name')
- 2024-02-18 11:51:14.862 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property name with lazy=false
- 2024-02-18 11:51:14.862 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Role:name]
- 2024-02-18 11:51:14.862 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for name
- 2024-02-18 11:51:14.862 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role.name
- 2024-02-18 11:51:14.862 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property name
- 2024-02-18 11:51:14.862 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: io.github.truenine.composeserver.rds.entities
- 2024-02-18 11:51:14.862 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.Role
- 2024-02-18 11:51:14.863 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.Role
- 2024-02-18 11:51:14.863 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.Role
- 2024-02-18 11:51:14.863 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity io.github.truenine.composeserver.rds.entities.Role
- 2024-02-18 11:51:14.863 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: io.github.truenine.composeserver.rds.entities.RoleGroup
- 2024-02-18 11:51:14.863 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name RoleGroup
- 2024-02-18 11:51:14.863 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity io.github.truenine.composeserver.rds.entities.RoleGroup on table role_group
- 2024-02-18 11:51:14.863 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.864 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.864 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.RoleGroup] is safe
- 2024-02-18 11:51:14.864 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.RoleGroup
- 2024-02-18 11:51:14.864 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.864 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.RoleGroup:id]
- 2024-02-18 11:51:14.864 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.864 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role_group.id
- 2024-02-18 11:51:14.864 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.864 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.864 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.864 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.864 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.RoleGroup:crd]
- 2024-02-18 11:51:14.864 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.864 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role_group.crd
- 2024-02-18 11:51:14.864 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.864 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.864 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.864 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.RoleGroup:ldf]
- 2024-02-18 11:51:14.864 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.864 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role_group.ldf
- 2024-02-18 11:51:14.864 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.864 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.864 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.864 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.RoleGroup:mrd]
- 2024-02-18 11:51:14.864 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.864 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role_group.mrd
- 2024-02-18 11:51:14.865 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.865 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.865 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.865 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.RoleGroup:rlv]
- 2024-02-18 11:51:14.865 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.865 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role_group.rlv
- 2024-02-18 11:51:14.865 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.865 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='doc')
- 2024-02-18 11:51:14.865 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property doc with lazy=false
- 2024-02-18 11:51:14.865 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.RoleGroup:doc]
- 2024-02-18 11:51:14.865 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for doc
- 2024-02-18 11:51:14.865 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role_group.doc
- 2024-02-18 11:51:14.865 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property doc
- 2024-02-18 11:51:14.865 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='name')
- 2024-02-18 11:51:14.865 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property name with lazy=false
- 2024-02-18 11:51:14.865 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.RoleGroup:name]
- 2024-02-18 11:51:14.865 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for name
- 2024-02-18 11:51:14.865 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: role_group.name
- 2024-02-18 11:51:14.865 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property name
- 2024-02-18 11:51:14.865 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: io.github.truenine.composeserver.rds.entities
- 2024-02-18 11:51:14.866 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.RoleGroup
- 2024-02-18 11:51:14.866 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.RoleGroup
- 2024-02-18 11:51:14.866 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.RoleGroup
- 2024-02-18 11:51:14.866 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity io.github.truenine.composeserver.rds.entities.RoleGroup
- 2024-02-18 11:51:14.866 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord
- 2024-02-18 11:51:14.866 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name TableRowDeleteRecord
- 2024-02-18 11:51:14.866 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord on table table_row_delete_record
- 2024-02-18 11:51:14.867 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.867 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.867 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord] is safe
- 2024-02-18 11:51:14.867 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord
- 2024-02-18 11:51:14.867 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.867 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord:id]
- 2024-02-18 11:51:14.867 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.868 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: table_row_delete_record.id
- 2024-02-18 11:51:14.868 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.868 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.868 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.868 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.868 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord:crd]
- 2024-02-18 11:51:14.868 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.868 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: table_row_delete_record.crd
- 2024-02-18 11:51:14.868 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.868 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.868 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.868 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord:ldf]
- 2024-02-18 11:51:14.868 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.868 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: table_row_delete_record.ldf
- 2024-02-18 11:51:14.868 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.868 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.868 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.868 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord:mrd]
- 2024-02-18 11:51:14.868 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.868 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: table_row_delete_record.mrd
- 2024-02-18 11:51:14.868 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.868 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.868 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.868 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord:rlv]
- 2024-02-18 11:51:14.868 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.868 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: table_row_delete_record.rlv
- 2024-02-18 11:51:14.868 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.869 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='delete_datetime')
- 2024-02-18 11:51:14.869 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property deleteDatetime with lazy=false
- 2024-02-18 11:51:14.869 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord:deleteDatetime]
- 2024-02-18 11:51:14.869 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for deleteDatetime
- 2024-02-18 11:51:14.869 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: table_row_delete_record.delete_datetime
- 2024-02-18 11:51:14.869 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property deleteDatetime
- 2024-02-18 11:51:14.869 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='entity')
- 2024-02-18 11:51:14.869 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property entity with lazy=false
- 2024-02-18 11:51:14.869 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Applying JPA converter [io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord:entity]
- 2024-02-18 11:51:14.869 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for entity
- 2024-02-18 11:51:14.869 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: table_row_delete_record.entity
- 2024-02-18 11:51:14.869 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property entity
- 2024-02-18 11:51:14.869 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='table_names')
- 2024-02-18 11:51:14.869 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property tableNames with lazy=false
- 2024-02-18 11:51:14.869 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord:tableNames]
- 2024-02-18 11:51:14.869 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for tableNames
- 2024-02-18 11:51:14.869 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: table_row_delete_record.table_names
- 2024-02-18 11:51:14.869 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property tableNames
- 2024-02-18 11:51:14.869 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='user_account')
- 2024-02-18 11:51:14.869 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property userAccount with lazy=false
- 2024-02-18 11:51:14.869 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord:userAccount]
- 2024-02-18 11:51:14.870 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for userAccount
- 2024-02-18 11:51:14.870 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: table_row_delete_record.user_account
- 2024-02-18 11:51:14.870 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property userAccount
- 2024-02-18 11:51:14.870 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='user_id')
- 2024-02-18 11:51:14.870 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property userId with lazy=false
- 2024-02-18 11:51:14.870 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord:userId]
- 2024-02-18 11:51:14.870 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for userId
- 2024-02-18 11:51:14.870 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: table_row_delete_record.user_id
- 2024-02-18 11:51:14.870 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property userId
- 2024-02-18 11:51:14.870 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: io.github.truenine.composeserver.rds.entities
- 2024-02-18 11:51:14.870 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord
- 2024-02-18 11:51:14.870 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord
- 2024-02-18 11:51:14.870 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord
- 2024-02-18 11:51:14.870 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord
- 2024-02-18 11:51:14.871 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: io.github.truenine.composeserver.rds.entities.UserDept
- 2024-02-18 11:51:14.871 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name UserDept
- 2024-02-18 11:51:14.871 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity io.github.truenine.composeserver.rds.entities.UserDept on table user_dept
- 2024-02-18 11:51:14.871 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.872 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.872 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.UserDept] is safe
- 2024-02-18 11:51:14.872 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.UserDept
- 2024-02-18 11:51:14.872 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.872 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.UserDept:id]
- 2024-02-18 11:51:14.872 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.872 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_dept.id
- 2024-02-18 11:51:14.872 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.872 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.872 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.872 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.872 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.UserDept:crd]
- 2024-02-18 11:51:14.872 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.872 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_dept.crd
- 2024-02-18 11:51:14.872 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.872 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.872 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.872 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.UserDept:ldf]
- 2024-02-18 11:51:14.872 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.872 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_dept.ldf
- 2024-02-18 11:51:14.872 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.872 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.872 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.872 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.UserDept:mrd]
- 2024-02-18 11:51:14.872 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.872 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_dept.mrd
- 2024-02-18 11:51:14.872 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.873 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.873 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.873 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.UserDept:rlv]
- 2024-02-18 11:51:14.873 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.873 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_dept.rlv
- 2024-02-18 11:51:14.873 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.873 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='dept_id')
- 2024-02-18 11:51:14.873 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property deptId with lazy=false
- 2024-02-18 11:51:14.873 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.UserDept:deptId]
- 2024-02-18 11:51:14.873 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for deptId
- 2024-02-18 11:51:14.873 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_dept.dept_id
- 2024-02-18 11:51:14.873 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property deptId
- 2024-02-18 11:51:14.873 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='user_id')
- 2024-02-18 11:51:14.873 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property userId with lazy=false
- 2024-02-18 11:51:14.873 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.UserDept:userId]
- 2024-02-18 11:51:14.873 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for userId
- 2024-02-18 11:51:14.873 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_dept.user_id
- 2024-02-18 11:51:14.873 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property userId
- 2024-02-18 11:51:14.873 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: io.github.truenine.composeserver.rds.entities
- 2024-02-18 11:51:14.874 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.UserDept
- 2024-02-18 11:51:14.874 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.UserDept
- 2024-02-18 11:51:14.874 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.UserDept
- 2024-02-18 11:51:14.874 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity io.github.truenine.composeserver.rds.entities.UserDept
- 2024-02-18 11:51:14.874 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: io.github.truenine.composeserver.rds.entities.UserInfo
- 2024-02-18 11:51:14.874 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name UserInfo
- 2024-02-18 11:51:14.874 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity io.github.truenine.composeserver.rds.entities.UserInfo on table user_info
- 2024-02-18 11:51:14.874 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.875 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.875 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.UserInfo] is safe
- 2024-02-18 11:51:14.875 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.UserInfo
- 2024-02-18 11:51:14.875 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.875 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.UserInfo:id]
- 2024-02-18 11:51:14.875 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.875 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.id
- 2024-02-18 11:51:14.875 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.875 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.875 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.875 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.875 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.UserInfo:crd]
- 2024-02-18 11:51:14.875 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.875 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.crd
- 2024-02-18 11:51:14.875 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.876 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.876 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.876 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.UserInfo:ldf]
- 2024-02-18 11:51:14.876 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.876 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.ldf
- 2024-02-18 11:51:14.876 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.876 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.876 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.876 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.UserInfo:mrd]
- 2024-02-18 11:51:14.876 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.876 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.mrd
- 2024-02-18 11:51:14.876 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.876 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.876 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.876 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.UserInfo:rlv]
- 2024-02-18 11:51:14.876 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.876 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.rlv
- 2024-02-18 11:51:14.876 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.876 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='address_code')
- 2024-02-18 11:51:14.876 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property addressCode with lazy=false
- 2024-02-18 11:51:14.876 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.UserInfo:addressCode]
- 2024-02-18 11:51:14.876 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for addressCode
- 2024-02-18 11:51:14.876 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.address_code
- 2024-02-18 11:51:14.876 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property addressCode
- 2024-02-18 11:51:14.876 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='address_details_id')
- 2024-02-18 11:51:14.876 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property addressDetailsId with lazy=false
- 2024-02-18 11:51:14.876 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.UserInfo:addressDetailsId]
- 2024-02-18 11:51:14.876 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for addressDetailsId
- 2024-02-18 11:51:14.876 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.address_details_id
- 2024-02-18 11:51:14.876 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property addressDetailsId
- 2024-02-18 11:51:14.877 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='address_id')
- 2024-02-18 11:51:14.877 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property addressId with lazy=false
- 2024-02-18 11:51:14.877 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.UserInfo:addressId]
- 2024-02-18 11:51:14.877 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for addressId
- 2024-02-18 11:51:14.877 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.address_id
- 2024-02-18 11:51:14.877 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property addressId
- 2024-02-18 11:51:14.877 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='avatar_img_id')
- 2024-02-18 11:51:14.877 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property avatarImgId with lazy=false
- 2024-02-18 11:51:14.877 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.UserInfo:avatarImgId]
- 2024-02-18 11:51:14.877 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for avatarImgId
- 2024-02-18 11:51:14.877 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.avatar_img_id
- 2024-02-18 11:51:14.877 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property avatarImgId
- 2024-02-18 11:51:14.877 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='birthday')
- 2024-02-18 11:51:14.877 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property birthday with lazy=false
- 2024-02-18 11:51:14.877 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.UserInfo:birthday]
- 2024-02-18 11:51:14.877 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for birthday
- 2024-02-18 11:51:14.877 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.birthday
- 2024-02-18 11:51:14.877 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property birthday
- 2024-02-18 11:51:14.877 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='create_user_id')
- 2024-02-18 11:51:14.877 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property createUserId with lazy=false
- 2024-02-18 11:51:14.877 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.UserInfo:createUserId]
- 2024-02-18 11:51:14.877 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for createUserId
- 2024-02-18 11:51:14.877 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.create_user_id
- 2024-02-18 11:51:14.877 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property createUserId
- 2024-02-18 11:51:14.877 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='email')
- 2024-02-18 11:51:14.877 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property email with lazy=false
- 2024-02-18 11:51:14.877 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.UserInfo:email]
- 2024-02-18 11:51:14.877 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for email
- 2024-02-18 11:51:14.877 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.email
- 2024-02-18 11:51:14.877 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property email
- 2024-02-18 11:51:14.877 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='first_name')
- 2024-02-18 11:51:14.877 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property firstName with lazy=false
- 2024-02-18 11:51:14.877 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.UserInfo:firstName]
- 2024-02-18 11:51:14.877 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for firstName
- 2024-02-18 11:51:14.877 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.first_name
- 2024-02-18 11:51:14.877 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property firstName
- 2024-02-18 11:51:14.878 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='gender')
- 2024-02-18 11:51:14.878 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property gender with lazy=false
- 2024-02-18 11:51:14.878 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Applying JPA converter [io.github.truenine.composeserver.rds.entities.UserInfo:gender]
- 2024-02-18 11:51:14.878 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for gender
- 2024-02-18 11:51:14.878 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.gender
- 2024-02-18 11:51:14.878 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property gender
- 2024-02-18 11:51:14.878 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id_card')
- 2024-02-18 11:51:14.878 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property idCard with lazy=false
- 2024-02-18 11:51:14.878 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.UserInfo:idCard]
- 2024-02-18 11:51:14.878 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for idCard
- 2024-02-18 11:51:14.878 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.id_card
- 2024-02-18 11:51:14.878 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property idCard
- 2024-02-18 11:51:14.878 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='last_name')
- 2024-02-18 11:51:14.878 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property lastName with lazy=false
- 2024-02-18 11:51:14.878 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.UserInfo:lastName]
- 2024-02-18 11:51:14.878 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for lastName
- 2024-02-18 11:51:14.878 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.last_name
- 2024-02-18 11:51:14.878 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property lastName
- 2024-02-18 11:51:14.878 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='phone')
- 2024-02-18 11:51:14.878 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property phone with lazy=false
- 2024-02-18 11:51:14.878 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.UserInfo:phone]
- 2024-02-18 11:51:14.878 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for phone
- 2024-02-18 11:51:14.878 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.phone
- 2024-02-18 11:51:14.878 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property phone
- 2024-02-18 11:51:14.878 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='pri')
- 2024-02-18 11:51:14.878 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property pri with lazy=false
- 2024-02-18 11:51:14.878 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.UserInfo:pri]
- 2024-02-18 11:51:14.878 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for pri
- 2024-02-18 11:51:14.878 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.pri
- 2024-02-18 11:51:14.878 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property pri
- 2024-02-18 11:51:14.878 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='qq_account')
- 2024-02-18 11:51:14.878 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property qqAccount with lazy=false
- 2024-02-18 11:51:14.878 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.UserInfo:qqAccount]
- 2024-02-18 11:51:14.878 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for qqAccount
- 2024-02-18 11:51:14.878 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.qq_account
- 2024-02-18 11:51:14.879 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property qqAccount
- 2024-02-18 11:51:14.879 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='qq_openid')
- 2024-02-18 11:51:14.879 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property qqOpenid with lazy=false
- 2024-02-18 11:51:14.879 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.UserInfo:qqOpenid]
- 2024-02-18 11:51:14.879 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for qqOpenid
- 2024-02-18 11:51:14.879 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.qq_openid
- 2024-02-18 11:51:14.879 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property qqOpenid
- 2024-02-18 11:51:14.879 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='spare_phone')
- 2024-02-18 11:51:14.879 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property sparePhone with lazy=false
- 2024-02-18 11:51:14.879 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.UserInfo:sparePhone]
- 2024-02-18 11:51:14.879 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for sparePhone
- 2024-02-18 11:51:14.879 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.spare_phone
- 2024-02-18 11:51:14.879 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property sparePhone
- 2024-02-18 11:51:14.879 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='user_id')
- 2024-02-18 11:51:14.879 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property userId with lazy=false
- 2024-02-18 11:51:14.879 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.UserInfo:userId]
- 2024-02-18 11:51:14.879 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for userId
- 2024-02-18 11:51:14.879 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.user_id
- 2024-02-18 11:51:14.879 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property userId
- 2024-02-18 11:51:14.879 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='wechat_account')
- 2024-02-18 11:51:14.879 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property wechatAccount with lazy=false
- 2024-02-18 11:51:14.879 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.UserInfo:wechatAccount]
- 2024-02-18 11:51:14.879 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for wechatAccount
- 2024-02-18 11:51:14.879 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.wechat_account
- 2024-02-18 11:51:14.879 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property wechatAccount
- 2024-02-18 11:51:14.879 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='wechat_authid')
- 2024-02-18 11:51:14.879 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property wechatAuthid with lazy=false
- 2024-02-18 11:51:14.879 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.UserInfo:wechatAuthid]
- 2024-02-18 11:51:14.879 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for wechatAuthid
- 2024-02-18 11:51:14.879 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.wechat_authid
- 2024-02-18 11:51:14.879 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property wechatAuthid
- 2024-02-18 11:51:14.879 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='wechat_openid')
- 2024-02-18 11:51:14.879 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property wechatOpenid with lazy=false
- 2024-02-18 11:51:14.879 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.UserInfo:wechatOpenid]
- 2024-02-18 11:51:14.879 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for wechatOpenid
- 2024-02-18 11:51:14.880 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: user_info.wechat_openid
- 2024-02-18 11:51:14.880 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property wechatOpenid
- 2024-02-18 11:51:14.880 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: io.github.truenine.composeserver.rds.entities
- 2024-02-18 11:51:14.880 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.UserInfo
- 2024-02-18 11:51:14.880 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.UserInfo
- 2024-02-18 11:51:14.880 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.UserInfo
- 2024-02-18 11:51:14.881 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity io.github.truenine.composeserver.rds.entities.UserInfo
- 2024-02-18 11:51:14.881 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Binding entity from annotated class: io.github.truenine.composeserver.rds.entities.Usr
- 2024-02-18 11:51:14.881 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Import with entity name Usr
- 2024-02-18 11:51:14.881 [, - main] DEBUG org.hibernate.boot.model.internal.EntityBinder - Bind entity io.github.truenine.composeserver.rds.entities.Usr on table usr
- 2024-02-18 11:51:14.881 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedDiscriminatorColumn(column='DTYPE')
- 2024-02-18 11:51:14.882 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='id')
- 2024-02-18 11:51:14.882 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.Usr] is safe
- 2024-02-18 11:51:14.882 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.Usr
- 2024-02-18 11:51:14.882 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property id with lazy=false
- 2024-02-18 11:51:14.882 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Usr:id]
- 2024-02-18 11:51:14.882 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for id
- 2024-02-18 11:51:14.882 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: usr.id
- 2024-02-18 11:51:14.882 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property id
- 2024-02-18 11:51:14.882 [, - main] DEBUG org.hibernate.boot.model.internal.BinderHelper - #makeIdGenerator(BasicValue([Column(id)]), id, assigned, , ...)
- 2024-02-18 11:51:14.882 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='crd')
- 2024-02-18 11:51:14.882 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property crd with lazy=false
- 2024-02-18 11:51:14.882 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Usr:crd]
- 2024-02-18 11:51:14.882 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for crd
- 2024-02-18 11:51:14.882 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: usr.crd
- 2024-02-18 11:51:14.882 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property crd
- 2024-02-18 11:51:14.882 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ldf')
- 2024-02-18 11:51:14.882 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property ldf with lazy=false
- 2024-02-18 11:51:14.882 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Usr:ldf]
- 2024-02-18 11:51:14.882 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for ldf
- 2024-02-18 11:51:14.882 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: usr.ldf
- 2024-02-18 11:51:14.883 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property ldf
- 2024-02-18 11:51:14.883 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='mrd')
- 2024-02-18 11:51:14.883 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property mrd with lazy=false
- 2024-02-18 11:51:14.883 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Usr:mrd]
- 2024-02-18 11:51:14.883 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for mrd
- 2024-02-18 11:51:14.883 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: usr.mrd
- 2024-02-18 11:51:14.883 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property mrd
- 2024-02-18 11:51:14.883 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='rlv')
- 2024-02-18 11:51:14.883 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property rlv with lazy=false
- 2024-02-18 11:51:14.883 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Usr:rlv]
- 2024-02-18 11:51:14.883 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for rlv
- 2024-02-18 11:51:14.883 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: usr.rlv
- 2024-02-18 11:51:14.883 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property rlv
- 2024-02-18 11:51:14.883 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='account')
- 2024-02-18 11:51:14.883 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property account with lazy=false
- 2024-02-18 11:51:14.883 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Usr:account]
- 2024-02-18 11:51:14.883 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for account
- 2024-02-18 11:51:14.883 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: usr.account
- 2024-02-18 11:51:14.883 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property account
- 2024-02-18 11:51:14.883 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='ban_time')
- 2024-02-18 11:51:14.883 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property banTime with lazy=false
- 2024-02-18 11:51:14.883 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Usr:banTime]
- 2024-02-18 11:51:14.883 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for banTime
- 2024-02-18 11:51:14.883 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: usr.ban_time
- 2024-02-18 11:51:14.883 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property banTime
- 2024-02-18 11:51:14.883 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='create_user_id')
- 2024-02-18 11:51:14.883 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property createUserId with lazy=false
- 2024-02-18 11:51:14.884 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Usr:createUserId]
- 2024-02-18 11:51:14.884 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for createUserId
- 2024-02-18 11:51:14.884 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: usr.create_user_id
- 2024-02-18 11:51:14.884 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property createUserId
- 2024-02-18 11:51:14.884 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='doc')
- 2024-02-18 11:51:14.884 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property doc with lazy=false
- 2024-02-18 11:51:14.884 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Usr:doc]
- 2024-02-18 11:51:14.884 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for doc
- 2024-02-18 11:51:14.884 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: usr.doc
- 2024-02-18 11:51:14.884 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property doc
- 2024-02-18 11:51:14.884 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='last_login_time')
- 2024-02-18 11:51:14.884 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property lastLoginTime with lazy=false
- 2024-02-18 11:51:14.884 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Usr:lastLoginTime]
- 2024-02-18 11:51:14.884 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for lastLoginTime
- 2024-02-18 11:51:14.884 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: usr.last_login_time
- 2024-02-18 11:51:14.884 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property lastLoginTime
- 2024-02-18 11:51:14.884 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='nick_name')
- 2024-02-18 11:51:14.884 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property nickName with lazy=false
- 2024-02-18 11:51:14.884 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Usr:nickName]
- 2024-02-18 11:51:14.884 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for nickName
- 2024-02-18 11:51:14.884 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: usr.nick_name
- 2024-02-18 11:51:14.884 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property nickName
- 2024-02-18 11:51:14.884 [, - main] DEBUG org.hibernate.boot.model.internal.AnnotatedColumn - Binding column: AnnotatedColumn(column='pwd_enc')
- 2024-02-18 11:51:14.884 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - MetadataSourceProcessor property pwdEnc with lazy=false
- 2024-02-18 11:51:14.884 [, - main] DEBUG o.h.boot.model.internal.AbstractPropertyHolder - Attempting to locate auto-apply AttributeConverter for property [io.github.truenine.composeserver.rds.entities.Usr:pwdEnc]
- 2024-02-18 11:51:14.884 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - building BasicValue for pwdEnc
- 2024-02-18 11:51:14.884 [, - main] DEBUG org.hibernate.mapping.BasicValue - Skipping column re-registration: usr.pwd_enc
- 2024-02-18 11:51:14.884 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property pwdEnc
- 2024-02-18 11:51:14.885 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: io.github.truenine.composeserver.rds.entities
- 2024-02-18 11:51:14.885 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding deleteReference as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.Usr
- 2024-02-18 11:51:14.885 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertId as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.Usr
- 2024-02-18 11:51:14.885 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding insertBizCode as PrePersist callback for entity io.github.truenine.composeserver.rds.entities.Usr
- 2024-02-18 11:51:14.885 [, - main] DEBUG o.h.j.e.i.CallbackDefinitionResolverLegacyImpl - Adding preRemoveHandle as PreRemove callback for entity io.github.truenine.composeserver.rds.entities.Usr
- 2024-02-18 11:51:14.886 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.887 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.887 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.887 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.887 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.887 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for certId
- 2024-02-18 11:51:14.887 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for serialNo
- 2024-02-18 11:51:14.887 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for upUserId
- 2024-02-18 11:51:14.887 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.887 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.887 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.887 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.887 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.887 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for auditStatus
- 2024-02-18 11:51:14.888 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for blackRefId
- 2024-02-18 11:51:14.888 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for blackUserInfoId
- 2024-02-18 11:51:14.888 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for createDatetime
- 2024-02-18 11:51:14.888 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for createUserId
- 2024-02-18 11:51:14.888 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for eventDoc
- 2024-02-18 11:51:14.888 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for reItemType
- 2024-02-18 11:51:14.888 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for reportUserId
- 2024-02-18 11:51:14.888 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for reportUserInfoId
- 2024-02-18 11:51:14.888 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.888 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.888 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.888 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.888 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.888 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for blackListId
- 2024-02-18 11:51:14.888 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for tagId
- 2024-02-18 11:51:14.888 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.888 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.888 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.888 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.888 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.888 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for attId
- 2024-02-18 11:51:14.888 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for auditStatus
- 2024-02-18 11:51:14.888 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for blackListId
- 2024-02-18 11:51:14.888 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for doc
- 2024-02-18 11:51:14.888 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for title
- 2024-02-18 11:51:14.888 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.888 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for blackListId
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for eventDoc
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for reItemType
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for reType
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for refId
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for userInfoId
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for doc
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for title
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for auditStatus
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for blackRefId
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for blackUserInfoId
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for createDatetime
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for createUserId
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for eventDoc
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for reItemType
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for reportUserId
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for reportUserInfoId
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for accessDatetime
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for accessDeviceId
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for accessIp
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for attId
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for certId
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for meta
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for userId
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for wmAttId
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for wmCode
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for attId
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for auditStatus
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for coType
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for createDatetime
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for createDeviceId
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for createIp
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for createUserId
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for doType
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for doc
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for name
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for poType
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for remark
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for userId
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for userInfoId
- 2024-02-18 11:51:14.889 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for wmAttId
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for wmCode
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for account
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for banTime
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for createUserId
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for doc
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for lastLoginTime
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for nickName
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for pwdEnc
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for cause
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for certCode
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for dsType
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for level
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for muRule
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for place
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for userInfoId
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for addressCode
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for addressDetailsId
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for addressId
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for avatarImgId
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for birthday
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for createUserId
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for email
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for firstName
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for gender
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for idCard
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for lastName
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for phone
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for pri
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for qqAccount
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for qqOpenid
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for sparePhone
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for userId
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for wechatAccount
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for wechatAuthid
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for wechatOpenid
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for causeBy
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for createDatetime
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for endDatetime
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for jobId
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for jobSeekerId
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for optUserId
- 2024-02-18 11:51:14.890 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for typ
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for userId
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for nlv
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rln
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rpi
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rrn
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for tgi
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for addressCode
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for addressDetailsId
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for capitalCurrency
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for createDatetime
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for creditCodeV1
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for dataScore
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for doc
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for employeeCount
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for enterpriseType
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for industryId
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for leaderName
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for leaderUserId
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for leaderUserInfoId
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for logoAttachmentId
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for regCapital
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for regDate
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for status
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for title
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for email
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for enterpriseId
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for enterpriseId
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for industryId
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for enterpriseId
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for phone
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for phoneType
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for enterpriseId
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for title
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for userId
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for userInfoId
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.891 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for nlv
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rln
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rpi
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rrn
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for tgi
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for addressCode
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for addressDetailsId
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for capitalCurrency
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for createDatetime
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for creditCodeV1
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for dataScore
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for doc
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for employeeCount
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for enterpriseType
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for industryId
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for leaderName
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for leaderUserId
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for leaderUserInfoId
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for logoAttachmentId
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for regCapital
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for regDate
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for status
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for title
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for doc
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for title
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for addressCode
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for addressDetailsId
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for auditStatus
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for contactName
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for createDatetime
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for degree
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for dispatchType
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for doc
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for endDate
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for enterpriseId
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for enterpriseType
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for enterpriseUserId
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for exYear
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for industryId
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for jobType
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for landline
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for maxManAge
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for maxSalary
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for maxWomanAge
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for minManAge
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for minSalary
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for minWomanAge
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for orderedWight
- 2024-02-18 11:51:14.892 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for payday
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for phone
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for postPeriod
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for postResp
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for postType
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for qualification
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rqAddressCode
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rqCount
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rqDisRule
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rqGender
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for salaryCommissionRule
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for startDate
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for subsidy
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for title
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for jobId
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for jobTagId
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for jobId
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rqCertRuleId
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for addressCode
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for addressId
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for jobId
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ruleType
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for createDatetime
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for degree
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for exAddressCode
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for exIndustryId
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for exMaxSalary
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for exMinSalary
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for exRemote
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for regAddressCode
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rqSocial
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for userId
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for createDatetime
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for endDatetime
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for subordinateUserId
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for superiorUserId
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for doc
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for name
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.893 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for regDatetime
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for regStatus
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for shareCode
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for shareDatetime
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for shareEndDatetime
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for shareEnterpriseId
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for shareUserId
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for coType
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for doType
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for poType
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for remark
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rq
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for title
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for comAddressCode
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for comName
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for doc
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for endDate
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for enterpriseId
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for startDate
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for title
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for userId
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for roleGroupId
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for roleId
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for permissionsId
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for roleId
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for roleGroupId
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for userId
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for nlv
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rln
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rpi
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rrn
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for tgi
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for center
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for code
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for leaf
- 2024-02-18 11:51:14.894 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for level
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for name
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for yearVersion
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for addressCode
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for addressDetails
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for addressId
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for center
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for name
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for phone
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for userId
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for apiMethod
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for apiPath
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for apiProtocol
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for doc
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for name
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for deviceCode
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for loginIp
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for reqIp
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for respCode
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for respResultEnc
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for attType
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for baseUri
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for baseUrl
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for metaName
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mimeType
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for saveName
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for size
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for urlDoc
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for urlId
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for urlName
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for auditDeviceId
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for auditIp
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for createDatetime
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for refId
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for refType
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for remark
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for state
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for attId
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for auditId
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for status
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.895 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for nlv
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rln
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rpi
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rrn
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for tgi
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for bankGroup
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for bankType
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for code
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for country
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for issueAddressDetails
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for reservePhone
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for userId
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for userInfoId
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for addressCode
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for addressDetailsId
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for bizRange
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for createDate
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for issueDate
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for leaderName
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for regCapital
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for title
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for type
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for uniCreditCode
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for userId
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for userInfoId
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for attId
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for auditStatus
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for coType
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for createDatetime
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for createDeviceId
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for createIp
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for createUserId
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for doType
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for doc
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for name
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for poType
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for remark
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for userId
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for userInfoId
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for wmAttId
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for wmCode
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for addressDetailsId
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for birthday
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for code
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for expireDate
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for gender
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for guardian
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for guardianPhone
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for issueDate
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for level
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for name
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for type
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for userId
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for userInfoId
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for addressDetailsId
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for birthday
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for bloodType
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for code
- 2024-02-18 11:51:14.896 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for educationLevel
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ethnicGroup
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for gender
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for height
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for householdPrimaryName
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for householdType
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for idcardCode
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for issueDate
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for issueOrgan
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for militaryServiceStatus
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for name
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for occupation
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for oldName
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for originAddressDetailsId
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for placeBirthAddressDetailsId
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for relationship
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for serviceAddressDetailsId
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for userId
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for userInfoId
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for addressDetailsId
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for birthday
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for code
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ethnicGroup
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for expireDate
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for gender
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for issueOrgan
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for name
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for userId
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for userInfoId
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for nlv
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rln
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rpi
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rrn
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for tgi
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for doc
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for name
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for checksum
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for desc
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for execOn
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for installedByDatabaseAccount
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for installedOn
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rank
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for script
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for success
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for type
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for version
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for nlv
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rln
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rpi
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rrn
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for tgi
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for center
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for code
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for leaf
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for level
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for name
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for yearVersion
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for addressCode
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for addressDetails
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for addressId
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for center
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for name
- 2024-02-18 11:51:14.897 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for phone
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for userId
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for doc
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for name
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for doc
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for name
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for addressCode
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for addressDetailsId
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for addressId
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for avatarImgId
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for birthday
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for createUserId
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for email
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for firstName
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for gender
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for idCard
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for lastName
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for phone
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for pri
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for qqAccount
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for qqOpenid
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for sparePhone
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for userId
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for wechatAccount
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for wechatAuthid
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for wechatOpenid
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for account
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for banTime
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for createUserId
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for doc
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for lastLoginTime
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for nickName
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for pwdEnc
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for attType
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for baseUri
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for baseUrl
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for metaName
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mimeType
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for saveName
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for urlId
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for addressCode
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for addressDetails
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for addressId
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for center
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for name
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for phone
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for userId
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for doc
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for name
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for doc
- 2024-02-18 11:51:14.898 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for name
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for doc
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for name
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for deleteDatetime
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for entity
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for tableNames
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for userAccount
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for userId
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for deptId
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for userId
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for addressCode
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for addressDetailsId
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for addressId
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for avatarImgId
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for birthday
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for createUserId
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for email
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for firstName
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for gender
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for idCard
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for lastName
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for phone
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for pri
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for qqAccount
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for qqOpenid
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for sparePhone
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for userId
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for wechatAccount
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for wechatAuthid
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for wechatOpenid
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for id
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for crd
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for ldf
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for mrd
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for rlv
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for account
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for banTime
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for createUserId
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for doc
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for lastLoginTime
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for nickName
- 2024-02-18 11:51:14.899 [, - main] DEBUG o.hibernate.boot.model.internal.BasicValueBinder - Starting `BasicValueBinder#fillSimpleValue` for pwdEnc
- 2024-02-18 11:51:14.906 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [anonymous_cert_group]
- 2024-02-18 11:51:14.906 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [black_list]
- 2024-02-18 11:51:14.906 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [black_list_black_list_tag]
- 2024-02-18 11:51:14.906 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [black_list_evidence]
- 2024-02-18 11:51:14.906 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [black_list_relation]
- 2024-02-18 11:51:14.906 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [black_list_tag]
- 2024-02-18 11:51:14.906 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [black_list]
- 2024-02-18 11:51:14.906 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [cert_access]
- 2024-02-18 11:51:14.906 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [cert]
- 2024-02-18 11:51:14.906 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [usr]
- 2024-02-18 11:51:14.906 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [dis_info]
- 2024-02-18 11:51:14.906 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [user_info]
- 2024-02-18 11:51:14.906 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [employment_record]
- 2024-02-18 11:51:14.906 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [enterprise]
- 2024-02-18 11:51:14.906 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [enterprise_email]
- 2024-02-18 11:51:14.906 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [enterprise_industry]
- 2024-02-18 11:51:14.906 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [enterprise_phone]
- 2024-02-18 11:51:14.906 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [enterprise_user]
- 2024-02-18 11:51:14.906 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [enterprise]
- 2024-02-18 11:51:14.906 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [industry]
- 2024-02-18 11:51:14.906 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [job]
- 2024-02-18 11:51:14.906 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [job_job_tag]
- 2024-02-18 11:51:14.906 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [job_rq_cert_rule]
- 2024-02-18 11:51:14.906 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [job_rule_address]
- 2024-02-18 11:51:14.906 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [job_seeker]
- 2024-02-18 11:51:14.906 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [job_seeker_superior]
- 2024-02-18 11:51:14.906 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [job_tag]
- 2024-02-18 11:51:14.906 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [reg_share]
- 2024-02-18 11:51:14.906 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [rq_cert_rule]
- 2024-02-18 11:51:14.906 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [work_experience]
- 2024-02-18 11:51:14.906 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [role_group_role]
- 2024-02-18 11:51:14.906 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [role_permissions]
- 2024-02-18 11:51:14.906 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [user_role_group]
- 2024-02-18 11:51:14.906 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [address]
- 2024-02-18 11:51:14.906 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [address_details]
- 2024-02-18 11:51:14.906 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [api]
- 2024-02-18 11:51:14.906 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [api_call_record]
- 2024-02-18 11:51:14.907 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [attachment]
- 2024-02-18 11:51:14.907 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [audit]
- 2024-02-18 11:51:14.907 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [audit_attachment]
- 2024-02-18 11:51:14.907 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [bank_card]
- 2024-02-18 11:51:14.907 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [biz_cert]
- 2024-02-18 11:51:14.907 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [cert]
- 2024-02-18 11:51:14.907 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [dis_cert_2]
- 2024-02-18 11:51:14.907 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [household_cert]
- 2024-02-18 11:51:14.907 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [idcard_2]
- 2024-02-18 11:51:14.907 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [role_group]
- 2024-02-18 11:51:14.907 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [flyway_schema_history]
- 2024-02-18 11:51:14.907 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [address]
- 2024-02-18 11:51:14.907 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [address_details]
- 2024-02-18 11:51:14.907 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [role]
- 2024-02-18 11:51:14.907 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [role_group]
- 2024-02-18 11:51:14.907 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [user_info]
- 2024-02-18 11:51:14.907 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [usr]
- 2024-02-18 11:51:14.907 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [attachment]
- 2024-02-18 11:51:14.907 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [address_details]
- 2024-02-18 11:51:14.907 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [permissions]
- 2024-02-18 11:51:14.907 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [role]
- 2024-02-18 11:51:14.907 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [role_group]
- 2024-02-18 11:51:14.907 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [table_row_delete_record]
- 2024-02-18 11:51:14.907 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [user_dept]
- 2024-02-18 11:51:14.907 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [user_info]
- 2024-02-18 11:51:14.907 [, - main] DEBUG org.hibernate.mapping.PrimaryKey - Forcing column [id] to be non-null as it is part of the primary key for table [usr]
- 2024-02-18 11:51:14.907 [, - main] DEBUG o.h.boot.model.internal.CollectionSecondPass - Second pass for collection: io.github.truenine.composeserver.rds.entities.FullUsr.roleGroups
- 2024-02-18 11:51:14.907 [, - main] DEBUG o.hibernate.boot.model.internal.CollectionBinder - Binding a ManyToMany: io.github.truenine.composeserver.rds.entities.FullUsr.roleGroups
- 2024-02-18 11:51:14.908 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: io.github.truenine.composeserver.rds.entities
- 2024-02-18 11:51:14.910 [, - main] DEBUG o.h.boot.model.internal.CollectionSecondPass - Mapped collection key: user_id, element: role_group_id
- 2024-02-18 11:51:14.910 [, - main] DEBUG o.h.boot.model.internal.CollectionSecondPass - Second pass for collection: io.github.truenine.composeserver.rds.entities.FullRoleGroup.roles
- 2024-02-18 11:51:14.910 [, - main] DEBUG o.hibernate.boot.model.internal.CollectionBinder - Binding a ManyToMany: io.github.truenine.composeserver.rds.entities.FullRoleGroup.roles
- 2024-02-18 11:51:14.910 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: io.github.truenine.composeserver.rds.entities
- 2024-02-18 11:51:14.911 [, - main] DEBUG o.h.boot.model.internal.CollectionSecondPass - Mapped collection key: role_group_id, element: role_id
- 2024-02-18 11:51:14.911 [, - main] DEBUG o.h.boot.model.internal.CollectionSecondPass - Second pass for collection: io.github.truenine.composeserver.rds.entities.FullRole.permissions
- 2024-02-18 11:51:14.911 [, - main] DEBUG o.hibernate.boot.model.internal.CollectionBinder - Binding a ManyToMany: io.github.truenine.composeserver.rds.entities.FullRole.permissions
- 2024-02-18 11:51:14.911 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: io.github.truenine.composeserver.rds.entities
- 2024-02-18 11:51:14.912 [, - main] DEBUG o.h.boot.model.internal.CollectionSecondPass - Mapped collection key: role_id, element: permissions_id
- 2024-02-18 11:51:14.912 [, - main] DEBUG o.h.boot.model.internal.CollectionSecondPass - Second pass for collection: io.github.truenine.composeserver.rds.entities.FullAddress.details
- 2024-02-18 11:51:14.912 [, - main] DEBUG o.hibernate.boot.model.internal.CollectionBinder - Binding a OneToMany: io.github.truenine.composeserver.rds.entities.FullAddress.details through a foreign key
- 2024-02-18 11:51:14.913 [, - main] DEBUG o.hibernate.boot.model.internal.CollectionBinder - Mapping collection: io.github.truenine.composeserver.rds.entities.FullAddress.details -> address_details
- 2024-02-18 11:51:14.913 [, - main] DEBUG o.h.boot.model.internal.CollectionSecondPass - Mapped collection key: address_id, one-to-many: io.github.truenine.composeserver.rds.entities.AddressDetails
- 2024-02-18 11:51:14.913 [, - main] DEBUG o.h.boot.model.internal.CollectionSecondPass - Second pass for collection: com.tnmaster.entities.FullEnterprise.phones
- 2024-02-18 11:51:14.913 [, - main] DEBUG o.hibernate.boot.model.internal.CollectionBinder - Binding a OneToMany: com.tnmaster.entities.FullEnterprise.phones through a foreign key
- 2024-02-18 11:51:14.913 [, - main] DEBUG o.hibernate.boot.model.internal.CollectionBinder - Mapping collection: com.tnmaster.entities.FullEnterprise.phones -> enterprise_phone
- 2024-02-18 11:51:14.914 [, - main] DEBUG o.h.boot.model.internal.CollectionSecondPass - Mapped collection key: enterprise_id, one-to-many: com.tnmaster.entities.EnterprisePhone
- 2024-02-18 11:51:14.914 [, - main] DEBUG o.h.boot.model.internal.CollectionSecondPass - Second pass for collection: com.tnmaster.entities.FullEnterprise.emails
- 2024-02-18 11:51:14.914 [, - main] DEBUG o.hibernate.boot.model.internal.CollectionBinder - Binding a OneToMany: com.tnmaster.entities.FullEnterprise.emails through a foreign key
- 2024-02-18 11:51:14.914 [, - main] DEBUG o.hibernate.boot.model.internal.CollectionBinder - Mapping collection: com.tnmaster.entities.FullEnterprise.emails -> enterprise_email
- 2024-02-18 11:51:14.914 [, - main] DEBUG o.h.boot.model.internal.CollectionSecondPass - Mapped collection key: enterprise_id, one-to-many: com.tnmaster.entities.EnterpriseEmail
- 2024-02-18 11:51:14.914 [, - main] DEBUG o.h.boot.model.internal.CollectionSecondPass - Second pass for collection: com.tnmaster.entities.DisAccountVo.userInfos
- 2024-02-18 11:51:14.914 [, - main] DEBUG o.hibernate.boot.model.internal.CollectionBinder - Binding a OneToMany: com.tnmaster.entities.DisAccountVo.userInfos through a foreign key
- 2024-02-18 11:51:14.914 [, - main] DEBUG o.hibernate.boot.model.internal.CollectionBinder - Mapping collection: com.tnmaster.entities.DisAccountVo.userInfos -> user_info
- 2024-02-18 11:51:14.914 [, - main] DEBUG o.h.boot.model.internal.CollectionSecondPass - Mapped collection key: user_id, one-to-many: io.github.truenine.composeserver.rds.entities.UserInfo
- 2024-02-18 11:51:14.914 [, - main] DEBUG o.h.boot.model.internal.CollectionSecondPass - Second pass for collection: com.tnmaster.entities.DisAccountVo.dsInfos
- 2024-02-18 11:51:14.914 [, - main] DEBUG o.hibernate.boot.model.internal.CollectionBinder - Binding a ManyToMany: com.tnmaster.entities.DisAccountVo.dsInfos
- 2024-02-18 11:51:14.915 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: com.tnmaster.entities
- 2024-02-18 11:51:14.917 [, - main] DEBUG o.h.boot.model.internal.CollectionSecondPass - Mapped collection key: user_info_id, element: user_info_id
- 2024-02-18 11:51:14.917 [, - main] DEBUG o.h.boot.model.internal.CollectionSecondPass - Second pass for collection: com.tnmaster.entities.BlackListVo.tags
- 2024-02-18 11:51:14.917 [, - main] DEBUG o.hibernate.boot.model.internal.CollectionBinder - Binding a ManyToMany: com.tnmaster.entities.BlackListVo.tags
- 2024-02-18 11:51:14.918 [, - main] DEBUG o.h.b.r.c.internal.ClassLoaderServiceImpl - HHH000194: Package not found or wo package-info.java: com.tnmaster.entities
- 2024-02-18 11:51:14.918 [, - main] DEBUG o.h.boot.model.internal.CollectionSecondPass - Mapped collection key: black_list_id, element: tag_id
- 2024-02-18 11:51:14.918 [, - main] DEBUG o.h.boot.model.internal.CollectionSecondPass - Second pass for collection: com.tnmaster.entities.BlackListVo.relations
- 2024-02-18 11:51:14.918 [, - main] DEBUG o.hibernate.boot.model.internal.CollectionBinder - Binding a OneToMany: com.tnmaster.entities.BlackListVo.relations through a foreign key
- 2024-02-18 11:51:14.918 [, - main] DEBUG o.hibernate.boot.model.internal.CollectionBinder - Mapping collection: com.tnmaster.entities.BlackListVo.relations -> black_list_relation
- 2024-02-18 11:51:14.918 [, - main] DEBUG o.h.boot.model.internal.CollectionSecondPass - Mapped collection key: black_list_id, one-to-many: com.tnmaster.entities.BlackListRelation
- 2024-02-18 11:51:14.920 [, - main] DEBUG org.hibernate.boot.model.internal.PropertyBinder - Building property info
- 2024-02-18 11:51:14.921 [, - main] DEBUG o.h.boot.internal.InFlightMetadataCollectorImpl - Processing association property references
- 2024-02-18 11:51:14.922 [, - main] DEBUG o.h.boot.internal.InFlightMetadataCollectorImpl - Resolving reference to class: com.tnmaster.entities.DisInfo
- 2024-02-18 11:51:14.979 [, - main] DEBUG io.github.truenine.composeserver.rds.converters.WGS84Converter - 注册 地理位置模型converter = io.github.truenine.composeserver.rds.converters.WGS84Converter@74c58f64
- 2024-02-18 11:51:14.995 [, - main] DEBUG n.y.compose.rds.converters.RecordModelConverter - 注册 备份删除表 converter
- 2024-02-18 11:51:15.001 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jacksonObjectMapper'
- 2024-02-18 11:51:15.001 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration'
- 2024-02-18 11:51:15.004 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration'
- 2024-02-18 11:51:15.006 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer'
- 2024-02-18 11:51:15.006 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration'
- 2024-02-18 11:51:15.008 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties'
- 2024-02-18 11:51:15.012 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties'
- 2024-02-18 11:51:15.013 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'parameterNamesModule'
- 2024-02-18 11:51:15.013 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration'
- 2024-02-18 11:51:15.020 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jsonMixinModule'
- 2024-02-18 11:51:15.021 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonMixinConfiguration'
- 2024-02-18 11:51:15.023 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jsonMixinModuleEntries'
- 2024-02-18 11:51:15.023 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'jsonMixinModuleEntries' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@3670f00'
- 2024-02-18 11:51:15.035 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@3670f00'
- 2024-02-18 11:51:15.035 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'jsonMixinModule' via factory method to bean named 'jsonMixinModuleEntries'
- 2024-02-18 11:51:15.038 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jsonComponentModule'
- 2024-02-18 11:51:15.038 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration'
- 2024-02-18 11:51:15.046 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jacksonGeoModule'
- 2024-02-18 11:51:15.046 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.data.web.config.SpringDataJacksonConfiguration'
- 2024-02-18 11:51:15.050 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'pageModule'
- 2024-02-18 11:51:15.054 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jacksonF'
- 2024-02-18 11:51:15.054 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jacksonSerializationAutoConfig'
- 2024-02-18 11:51:15.060 [, - main] DEBUG n.y.c.c.autoconfig.JacksonSerializationAutoConfig - 配置jackson序列化规则
- 2024-02-18 11:51:15.062 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@3670f00'
- 2024-02-18 11:51:15.062 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer'
- 2024-02-18 11:51:15.062 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'jacksonF'
- 2024-02-18 11:51:15.067 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder'
- 2024-02-18 11:51:15.128 [, - main] DEBUG o.h.boot.internal.InFlightMetadataCollectorImpl - Processing association property references
- 2024-02-18 11:51:15.128 [, - main] DEBUG o.h.boot.internal.InFlightMetadataCollectorImpl - Resolving reference to class: com.tnmaster.entities.DisInfo
- 2024-02-18 11:51:15.157 [, - main] DEBUG org.hibernate.internal.SessionFactoryImpl - Building session factory
- 2024-02-18 11:51:15.163 [, - main] DEBUG n.y.c.rds.core.listener.BizCodeInsertListener - 注册订单编号生成监听器
- 2024-02-18 11:51:15.170 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'snowflake_id_Generate'
- 2024-02-18 11:51:15.170 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'idGeneratorAutoConfiguration'
- 2024-02-18 11:51:15.173 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'compose.core.snowflake-io.github.truenine.composeserver.properties.SnowflakeProperties'
- 2024-02-18 11:51:15.176 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'snowflake_id_Generate' via factory method to bean named 'compose.core.snowflake-io.github.truenine.composeserver.properties.SnowflakeProperties'
- 2024-02-18 11:51:15.178 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'bizCode'
- 2024-02-18 11:51:15.178 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'bizCode' via factory method to bean named 'snowflake_id_Generate'
- 2024-02-18 11:51:15.180 [, - main] DEBUG n.y.c.rds.core.listener.BizCodeInsertListener - 设置当前订单编号生成器 = io.github.truenine.composeserver.id.SynchronizedSimpleBizCodeGenerator@1f81b020
- 2024-02-18 11:51:15.187 [, - main] DEBUG n.y.c.r.c.l.TableRowDeletePersistenceListener - 注册jpa数据删除监听器 = io.github.truenine.composeserver.rds.core.listener.TableRowDeletePersistenceListener@6e681c3b
- 2024-02-18 11:51:15.218 [, - main] DEBUG o.h.s.internal.SessionFactoryServiceRegistryImpl - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead
- 2024-02-18 11:51:15.218 [, - main] DEBUG org.hibernate.internal.SessionFactoryImpl - Instantiating SessionFactory with settings: {java.specification.version=21, hibernate.resource.beans.container=org.springframework.orm.hibernate5.SpringBeanContainer@4c14ed24, hibernate.connection.handling_mode=DELAYED_ACQUISITION_AND_HOLD, sun.jnu.encoding=ANSI_X3.4-1968, hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect, hibernate.implicit_naming_strategy=org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy, java.class.path=/app/tnmaster-server-1.0.jar, java.vm.vendor=Private Build, sun.arch.data.model=64, hibernate.order_inserts=true, java.vendor.url=Unknown, catalina.useNaming=false, user.timezone=Asia/Shanghai, jakarta.persistence.sharedCache.mode=UNSPECIFIED, org.jboss.logging.provider=slf4j, java.vm.specification.version=21, os.name=Linux, hibernate.order_updates=true, jakarta.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), hibernate.jdbc.batch_size=1023, sun.java.launcher=SUN_STANDARD, user.country=US, sun.boot.library.path=/usr/lib/jvm/java-21-openjdk-amd64/lib, sun.java.command=/app/tnmaster-server-1.0.jar --spring.profiles.active=prod, javax.persistence.nonJtaDataSource=HikariDataSource (HikariPool-1), hibernate.transaction.jta.platform=org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform@523cc8b4, jdk.debug=release, sun.cpu.endian=little, hibernate.cdi.extensions=true, user.home=/root, user.language=en, java.specification.vendor=Oracle Corporation, reactor.schedulers.defaultBoundedElasticOnVirtualThreads=true, java.version.date=2023-10-17, java.home=/usr/lib/jvm/java-21-openjdk-amd64, file.separator=/, java.vm.compressedOopsMode=32-bit, 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, java.protocol.handler.pkgs=org.springframework.boot.loader.net.protocol, sun.management.compiler=HotSpot 64-Bit Tiered Compilers, java.runtime.version=21.0.1+12-Ubuntu-222.04, user.name=root, stdout.encoding=ANSI_X3.4-1968, path.separator=:, os.version=5.15.0-76-generic, java.runtime.name=OpenJDK Runtime Environment, file.encoding=UTF-8, java.vm.name=OpenJDK 64-Bit Server VM, hibernate.show_sql=false, java.vendor.url.bug=Unknown, java.io.tmpdir=/tmp, com.zaxxer.hikari.pool_number=1, catalina.home=/tmp/tomcat.8080.17235492828459820456, java.version=21.0.1, hibernate.physical_naming_strategy=org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy, user.dir=/app, os.arch=amd64, java.vm.specification.name=Java Virtual Machine Specification, PID=1, CONSOLE_LOG_CHARSET=UTF-8, catalina.base=/tmp/tomcat.8080.17235492828459820456, hibernate.boot.CfgXmlAccessService.key=org.hibernate.boot.registry.StandardServiceRegistryBuilder$1@139224ab, native.encoding=ANSI_X3.4-1968, java.library.path=/usr/java/packages/lib:/usr/lib/x86_64-linux-gnu/jni:/lib/x86_64-linux-gnu:/usr/lib/x86_64-linux-gnu:/usr/lib/jni:/lib:/usr/lib, stderr.encoding=ANSI_X3.4-1968, java.vendor=Private Build, java.vm.info=mixed mode, sharing, java.vm.version=21.0.1+12-Ubuntu-222.04, sun.io.unicode.encoding=UnicodeLittle, hibernate.archive.scanner=org.hibernate.boot.archive.scan.internal.DisabledScanner, hibernate.connection.datasource=HikariDataSource (HikariPool-1), java.class.version=65.0, hibernate.default_batch_fetch_size=84}
- 2024-02-18 11:51:15.220 [, - main] DEBUG org.hibernate.internal.SessionFactoryImpl - Session factory constructed with filter configurations : {}
- 2024-02-18 11:51:15.223 [, - main] DEBUG o.h.v.internal.xml.config.ValidationXmlParser - Trying to load META-INF/validation.xml for XML based Validator configuration.
- 2024-02-18 11:51:15.223 [, - main] DEBUG o.h.v.internal.xml.config.ResourceLoaderHelper - Trying to load META-INF/validation.xml via TCCL
- 2024-02-18 11:51:15.223 [, - main] DEBUG o.h.v.internal.xml.config.ResourceLoaderHelper - Trying to load META-INF/validation.xml via Hibernate Validator's class loader
- 2024-02-18 11:51:15.223 [, - main] DEBUG o.h.v.internal.xml.config.ValidationXmlParser - No META-INF/validation.xml found. Using annotation based configuration only.
- 2024-02-18 11:51:15.223 [, - main] DEBUG o.h.v.i.engine.resolver.TraversableResolvers - Found jakarta.persistence.Persistence on classpath containing 'getPersistenceUtil'. Assuming JPA 2 environment. Trying to instantiate JPA aware TraversableResolver
- 2024-02-18 11:51:15.223 [, - main] DEBUG o.h.v.i.engine.resolver.TraversableResolvers - Instantiated JPA aware TraversableResolver of type org.hibernate.validator.internal.engine.resolver.JPATraversableResolver.
- 2024-02-18 11:51:15.223 [, - main] DEBUG o.h.v.m.ResourceBundleMessageInterpolator - Loaded expression factory via original TCCL
- 2024-02-18 11:51:15.224 [, - main] DEBUG o.h.v.i.engine.ValidatorFactoryConfigurationHelper - HV000252: Using org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider as property node name provider.
- 2024-02-18 11:51:15.225 [, - main] DEBUG o.h.v.i.engine.ValidatorFactoryConfigurationHelper - HV000234: Using org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator as ValidatorFactory-scoped message interpolator.
- 2024-02-18 11:51:15.225 [, - main] DEBUG o.h.v.i.engine.ValidatorFactoryConfigurationHelper - HV000234: Using org.hibernate.validator.internal.engine.resolver.JPATraversableResolver as ValidatorFactory-scoped traversable resolver.
- 2024-02-18 11:51:15.225 [, - main] DEBUG o.h.v.i.engine.ValidatorFactoryConfigurationHelper - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider.
- 2024-02-18 11:51:15.225 [, - main] DEBUG o.h.v.i.engine.ValidatorFactoryConfigurationHelper - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider.
- 2024-02-18 11:51:15.225 [, - main] DEBUG o.h.v.i.engine.ValidatorFactoryConfigurationHelper - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory.
- 2024-02-18 11:51:15.225 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.EmploymentRecord] is safe
- 2024-02-18 11:51:15.225 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.EmploymentRecord
- 2024-02-18 11:51:15.294 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.CertShowVo] is safe
- 2024-02-18 11:51:15.294 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.CertShowVo
- 2024-02-18 11:51:15.335 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.JobRuleAddress] is safe
- 2024-02-18 11:51:15.335 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.JobRuleAddress
- 2024-02-18 11:51:15.358 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.relationship.RolePermissions] is safe
- 2024-02-18 11:51:15.358 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.relationship.RolePermissions
- 2024-02-18 11:51:15.371 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.DisUserInfoVo] is safe
- 2024-02-18 11:51:15.371 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.DisUserInfoVo
- 2024-02-18 11:51:15.401 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.LinkedAttachment] is safe
- 2024-02-18 11:51:15.401 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.LinkedAttachment
- 2024-02-18 11:51:15.416 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.EnterpriseUser] is safe
- 2024-02-18 11:51:15.416 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.EnterpriseUser
- 2024-02-18 11:51:15.423 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.JobRqCertRule] is safe
- 2024-02-18 11:51:15.423 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.JobRqCertRule
- 2024-02-18 11:51:15.430 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.EnterpriseIndustry] is safe
- 2024-02-18 11:51:15.430 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.EnterpriseIndustry
- 2024-02-18 11:51:15.436 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.Dept] is safe
- 2024-02-18 11:51:15.436 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.Dept
- 2024-02-18 11:51:15.444 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.JobTag] is safe
- 2024-02-18 11:51:15.444 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.JobTag
- 2024-02-18 11:51:15.451 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.UserDept] is safe
- 2024-02-18 11:51:15.451 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.UserDept
- 2024-02-18 11:51:15.457 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.EnterprisePhone] is safe
- 2024-02-18 11:51:15.457 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.EnterprisePhone
- 2024-02-18 11:51:15.475 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.cert.BankCard] is safe
- 2024-02-18 11:51:15.475 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.cert.BankCard
- 2024-02-18 11:51:15.492 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.RegShare] is safe
- 2024-02-18 11:51:15.492 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.RegShare
- 2024-02-18 11:51:15.511 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.Enterprise] is safe
- 2024-02-18 11:51:15.511 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.Enterprise
- 2024-02-18 11:51:15.529 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.cert.Idcard2] is safe
- 2024-02-18 11:51:15.529 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.cert.Idcard2
- 2024-02-18 11:51:15.544 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.AddressDetails] is safe
- 2024-02-18 11:51:15.544 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.AddressDetails
- 2024-02-18 11:51:15.590 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.JobJobTag] is safe
- 2024-02-18 11:51:15.590 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.JobJobTag
- 2024-02-18 11:51:15.604 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.UserInfo] is safe
- 2024-02-18 11:51:15.604 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.UserInfo
- 2024-02-18 11:51:15.629 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.BlackListTag] is safe
- 2024-02-18 11:51:15.629 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.BlackListTag
- 2024-02-18 11:51:15.644 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.DisAccountVo] is safe
- 2024-02-18 11:51:15.644 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.DisAccountVo
- 2024-02-18 11:51:15.658 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.AuditAttachment] is safe
- 2024-02-18 11:51:15.658 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.AuditAttachment
- 2024-02-18 11:51:15.668 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.FullRoleGroup] is safe
- 2024-02-18 11:51:15.668 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.FullRoleGroup
- 2024-02-18 11:51:15.675 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.DisInfo] is safe
- 2024-02-18 11:51:15.675 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.DisInfo
- 2024-02-18 11:51:15.725 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole] is safe
- 2024-02-18 11:51:15.725 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole
- 2024-02-18 11:51:15.737 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.BlackListEvidence] is safe
- 2024-02-18 11:51:15.737 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.BlackListEvidence
- 2024-02-18 11:51:15.744 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.cert.Cert] is safe
- 2024-02-18 11:51:15.744 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.cert.Cert
- 2024-02-18 11:51:15.755 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails] is safe
- 2024-02-18 11:51:15.755 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails
- 2024-02-18 11:51:15.764 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.JobSeekerSuperior] is safe
- 2024-02-18 11:51:15.764 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.JobSeekerSuperior
- 2024-02-18 11:51:15.771 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.Attachment] is safe
- 2024-02-18 11:51:15.771 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.Attachment
- 2024-02-18 11:51:15.778 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.Industry] is safe
- 2024-02-18 11:51:15.778 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.Industry
- 2024-02-18 11:51:15.785 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.RoleGroup] is safe
- 2024-02-18 11:51:15.785 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.RoleGroup
- 2024-02-18 11:51:15.790 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.AnonymousCertGroup] is safe
- 2024-02-18 11:51:15.790 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.AnonymousCertGroup
- 2024-02-18 11:51:15.796 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.cert.DisCert2] is safe
- 2024-02-18 11:51:15.796 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.cert.DisCert2
- 2024-02-18 11:51:15.804 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.FullEnterprise] is safe
- 2024-02-18 11:51:15.804 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.FullEnterprise
- 2024-02-18 11:51:15.814 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.FullAddress] is safe
- 2024-02-18 11:51:15.814 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.FullAddress
- 2024-02-18 11:51:15.822 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.Role] is safe
- 2024-02-18 11:51:15.822 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.Role
- 2024-02-18 11:51:15.827 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.CertAccess] is safe
- 2024-02-18 11:51:15.827 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.CertAccess
- 2024-02-18 11:51:15.834 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.Address] is safe
- 2024-02-18 11:51:15.834 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.Address
- 2024-02-18 11:51:15.840 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.FullUsr] is safe
- 2024-02-18 11:51:15.840 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.FullUsr
- 2024-02-18 11:51:15.847 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.BlackListVo] is safe
- 2024-02-18 11:51:15.847 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.BlackListVo
- 2024-02-18 11:51:15.854 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord] is safe
- 2024-02-18 11:51:15.854 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord
- 2024-02-18 11:51:15.858 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity] is safe
- 2024-02-18 11:51:15.858 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity
- 2024-02-18 11:51:15.864 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.WorkExperience] is safe
- 2024-02-18 11:51:15.864 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.WorkExperience
- 2024-02-18 11:51:15.869 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.Api] is safe
- 2024-02-18 11:51:15.869 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.Api
- 2024-02-18 11:51:15.874 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.BlackListRelation] is safe
- 2024-02-18 11:51:15.874 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.BlackListRelation
- 2024-02-18 11:51:15.879 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.Permissions] is safe
- 2024-02-18 11:51:15.879 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.Permissions
- 2024-02-18 11:51:15.883 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert] is safe
- 2024-02-18 11:51:15.884 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.cert.HouseholdCert
- 2024-02-18 11:51:15.893 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.Usr] is safe
- 2024-02-18 11:51:15.893 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.Usr
- 2024-02-18 11:51:15.901 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.cert.BizCert] is safe
- 2024-02-18 11:51:15.902 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.cert.BizCert
- 2024-02-18 11:51:15.907 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.JobSeeker] is safe
- 2024-02-18 11:51:15.907 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.JobSeeker
- 2024-02-18 11:51:15.913 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.FullRole] is safe
- 2024-02-18 11:51:15.913 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.FullRole
- 2024-02-18 11:51:15.918 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup] is safe
- 2024-02-18 11:51:15.918 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup
- 2024-02-18 11:51:15.922 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.BlackList] is safe
- 2024-02-18 11:51:15.922 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.BlackList
- 2024-02-18 11:51:15.928 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.Job] is safe
- 2024-02-18 11:51:15.928 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.Job
- 2024-02-18 11:51:15.939 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.EnterpriseEmail] is safe
- 2024-02-18 11:51:15.939 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.EnterpriseEmail
- 2024-02-18 11:51:15.943 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.Audit] is safe
- 2024-02-18 11:51:15.943 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.Audit
- 2024-02-18 11:51:15.949 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.BlackListBlackListTag] is safe
- 2024-02-18 11:51:15.949 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.BlackListBlackListTag
- 2024-02-18 11:51:15.953 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory] is safe
- 2024-02-18 11:51:15.953 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory
- 2024-02-18 11:51:15.959 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.FullUserInfo] is safe
- 2024-02-18 11:51:15.959 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.FullUserInfo
- 2024-02-18 11:51:15.967 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.RqCertRule] is safe
- 2024-02-18 11:51:15.967 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.RqCertRule
- 2024-02-18 11:51:15.972 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.FullAddressDetails] is safe
- 2024-02-18 11:51:15.972 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.FullAddressDetails
- 2024-02-18 11:51:15.979 [, - main] DEBUG o.h.s.internal.SessionFactoryServiceRegistryImpl - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead
- 2024-02-18 11:51:16.003 [, - main] DEBUG o.h.t.schema.spi.SchemaManagementToolCoordinator - No schema actions specified for contributor `orm`; doing nothing
- 2024-02-18 11:51:16.035 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(max)] under max; prior registration was null
- 2024-02-18 11:51:16.035 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(min)] under min; prior registration was null
- 2024-02-18 11:51:16.035 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sum)] under sum; prior registration was null
- 2024-02-18 11:51:16.036 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(avg)] under avg; prior registration was null
- 2024-02-18 11:51:16.037 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CountFunction@7934164c] under count; prior registration was null
- 2024-02-18 11:51:16.037 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@3022287e] under every; prior registration was null
- 2024-02-18 11:51:16.037 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.EveryAnyEmulation@36deacfc] under any; prior registration was null
- 2024-02-18 11:51:16.038 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(floor)] under floor; prior registration was null
- 2024-02-18 11:51:16.038 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ceiling)] under ceiling; prior registration was null
- 2024-02-18 11:51:16.038 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(mod)] under mod; prior registration was null
- 2024-02-18 11:51:16.038 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(abs)] under abs; prior registration was null
- 2024-02-18 11:51:16.038 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sign)] under sign; prior registration was null
- 2024-02-18 11:51:16.038 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sqrt)] under sqrt; prior registration was null
- 2024-02-18 11:51:16.038 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ln)] under ln; prior registration was null
- 2024-02-18 11:51:16.038 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(exp)] under exp; prior registration was null
- 2024-02-18 11:51:16.038 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(power)] under power; prior registration was null
- 2024-02-18 11:51:16.038 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(round)] under round; prior registration was null
- 2024-02-18 11:51:16.038 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sin)] under sin; prior registration was null
- 2024-02-18 11:51:16.038 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cos)] under cos; prior registration was null
- 2024-02-18 11:51:16.038 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(tan)] under tan; prior registration was null
- 2024-02-18 11:51:16.038 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(asin)] under asin; prior registration was null
- 2024-02-18 11:51:16.038 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(acos)] under acos; prior registration was null
- 2024-02-18 11:51:16.038 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan)] under atan; prior registration was null
- 2024-02-18 11:51:16.038 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atan2)] under atan2; prior registration was null
- 2024-02-18 11:51:16.039 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@10c26161] under sinh; prior registration was null
- 2024-02-18 11:51:16.039 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@1ef6977b] under cosh; prior registration was null
- 2024-02-18 11:51:16.039 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@674cd2da] under tanh; prior registration was null
- 2024-02-18 11:51:16.039 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@686279e0] under pi; prior registration was null
- 2024-02-18 11:51:16.039 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6b28d4e4] under log; prior registration was null
- 2024-02-18 11:51:16.040 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(coalesce)] under coalesce; prior registration was null
- 2024-02-18 11:51:16.040 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nullif)] under nullif; prior registration was null
- 2024-02-18 11:51:16.040 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(left)] under left; prior registration was null
- 2024-02-18 11:51:16.040 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(right)] under right; prior registration was null
- 2024-02-18 11:51:16.040 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(replace)] under replace; prior registration was null
- 2024-02-18 11:51:16.040 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(concat)] under concat; prior registration was null
- 2024-02-18 11:51:16.040 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lower)] under lower; prior registration was null
- 2024-02-18 11:51:16.040 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(upper)] under upper; prior registration was null
- 2024-02-18 11:51:16.040 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substring)] under substring; prior registration was null
- 2024-02-18 11:51:16.040 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(locate)] under locate; prior registration was null
- 2024-02-18 11:51:16.040 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(character_length)] under character_length; prior registration was null
- 2024-02-18 11:51:16.040 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registering alternate key : length -> character_length
- 2024-02-18 11:51:16.040 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LocatePositionEmulation@60a3a0fa] under position; prior registration was null
- 2024-02-18 11:51:16.041 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InsertSubstringOverlayEmulation@61d1315b] under overlay; prior registration was null
- 2024-02-18 11:51:16.042 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TrimFunction@9c88323] under trim; prior registration was null
- 2024-02-18 11:51:16.042 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastFunction@11736ebc] under cast; prior registration was null
- 2024-02-18 11:51:16.042 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@4a03c4bc] under collate; prior registration was null
- 2024-02-18 11:51:16.043 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ExtractFunction@453ca7f] under extract; prior registration was null
- 2024-02-18 11:51:16.043 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(least)] under least; prior registration was null
- 2024-02-18 11:51:16.043 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(greatest)] under greatest; prior registration was null
- 2024-02-18 11:51:16.043 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CoalesceIfnullEmulation@292237cd] under ifnull; prior registration was null
- 2024-02-18 11:51:16.043 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lpad)] under lpad; prior registration was null
- 2024-02-18 11:51:16.043 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rpad)] under rpad; prior registration was null
- 2024-02-18 11:51:16.043 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LpadRpadPadEmulation@5827908c] under pad; prior registration was null
- 2024-02-18 11:51:16.044 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CastStrEmulation@401e36ab] under str; prior registration was null
- 2024-02-18 11:51:16.045 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.FormatFunction@279b83ea] under format; prior registration was null
- 2024-02-18 11:51:16.045 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampaddFunction@6d3b59e2] under timestampadd; prior registration was null
- 2024-02-18 11:51:16.045 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.TimestampdiffFunction@293ccbdd] under timestampdiff; prior registration was null
- 2024-02-18 11:51:16.045 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registering alternate key : dateadd -> timestampadd
- 2024-02-18 11:51:16.045 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registering alternate key : datediff -> timestampdiff
- 2024-02-18 11:51:16.046 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@54a04eae] under current_date; prior registration was null
- 2024-02-18 11:51:16.046 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@4664fef] under current_time; prior registration was null
- 2024-02-18 11:51:16.046 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@1026a011] under current_timestamp; prior registration was null
- 2024-02-18 11:51:16.046 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registering alternate key : current date -> current_date
- 2024-02-18 11:51:16.046 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registering alternate key : current time -> current_time
- 2024-02-18 11:51:16.046 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registering alternate key : current timestamp -> current_timestamp
- 2024-02-18 11:51:16.046 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@63b95a30] under local_date; prior registration was null
- 2024-02-18 11:51:16.046 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@353aadd7] under local_time; prior registration was null
- 2024-02-18 11:51:16.046 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@39595a8] under local_datetime; prior registration was null
- 2024-02-18 11:51:16.046 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@26169be3] under offset_datetime; prior registration was null
- 2024-02-18 11:51:16.046 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registering alternate key : local date -> local_date
- 2024-02-18 11:51:16.046 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registering alternate key : local time -> local_time
- 2024-02-18 11:51:16.046 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registering alternate key : local datetime -> local_datetime
- 2024-02-18 11:51:16.046 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registering alternate key : offset datetime -> offset_datetime
- 2024-02-18 11:51:16.046 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.CurrentFunction@f573dcb] under instant; prior registration was null
- 2024-02-18 11:51:16.046 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registering alternate key : current_instant -> instant
- 2024-02-18 11:51:16.047 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.SqlFunction@64a009e7] under sql; prior registration was null
- 2024-02-18 11:51:16.047 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cot)] under cot; prior registration was null
- 2024-02-18 11:51:16.047 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(radians)] under radians; prior registration was null
- 2024-02-18 11:51:16.047 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(degrees)] under degrees; prior registration was null
- 2024-02-18 11:51:16.047 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(log)] under log; prior registration was org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@6b28d4e4
- 2024-02-18 11:51:16.047 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@10587ce5] under mod; prior registration was NamedSqmFunctionTemplate(mod)
- 2024-02-18 11:51:16.047 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(log10)] under log10; prior registration was null
- 2024-02-18 11:51:16.047 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(tanh)] under tanh; prior registration was org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@674cd2da
- 2024-02-18 11:51:16.047 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(sinh)] under sinh; prior registration was org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@10c26161
- 2024-02-18 11:51:16.047 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cosh)] under cosh; prior registration was org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@1ef6977b
- 2024-02-18 11:51:16.047 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(acosh)] under acosh; prior registration was null
- 2024-02-18 11:51:16.047 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(asinh)] under asinh; prior registration was null
- 2024-02-18 11:51:16.047 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(atanh)] under atanh; prior registration was null
- 2024-02-18 11:51:16.047 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(cbrt)] under cbrt; prior registration was null
- 2024-02-18 11:51:16.047 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(pi)] under pi; prior registration was org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@686279e0
- 2024-02-18 11:51:16.047 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ltrim)] under ltrim; prior registration was null
- 2024-02-18 11:51:16.047 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(rtrim)] under rtrim; prior registration was null
- 2024-02-18 11:51:16.047 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(repeat)] under repeat; prior registration was null
- 2024-02-18 11:51:16.047 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(md5)] under md5; prior registration was null
- 2024-02-18 11:51:16.047 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(initcap)] under initcap; prior registration was null
- 2024-02-18 11:51:16.047 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substr)] under substr; prior registration was null
- 2024-02-18 11:51:16.047 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(substr)] under substring; prior registration was NamedSqmFunctionTemplate(substring)
- 2024-02-18 11:51:16.047 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(translate)] under translate; prior registration was null
- 2024-02-18 11:51:16.047 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(to_number)] under to_number; prior registration was null
- 2024-02-18 11:51:16.047 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(to_char)] under to_char; prior registration was null
- 2024-02-18 11:51:16.047 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(to_date)] under to_date; prior registration was null
- 2024-02-18 11:51:16.047 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(to_timestamp)] under to_timestamp; prior registration was null
- 2024-02-18 11:51:16.047 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ConcatPipeFunction@6f3f2340] under concat; prior registration was NamedSqmFunctionTemplate(concat)
- 2024-02-18 11:51:16.047 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under localtime; prior registration was null
- 2024-02-18 11:51:16.047 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under localtimestamp; prior registration was null
- 2024-02-18 11:51:16.047 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtime)] under local_time; prior registration was org.hibernate.dialect.function.CurrentFunction@353aadd7
- 2024-02-18 11:51:16.047 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(localtimestamp)] under local_datetime; prior registration was org.hibernate.dialect.function.CurrentFunction@39595a8
- 2024-02-18 11:51:16.048 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LengthFunction@2cbb9702] under character_length; prior registration was NamedSqmFunctionTemplate(character_length)
- 2024-02-18 11:51:16.048 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registering alternate key : length -> character_length
- 2024-02-18 11:51:16.048 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LengthFunction@10fef6da] under bit_length; prior registration was null
- 2024-02-18 11:51:16.048 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.LengthFunction@1da77a43] under octet_length; prior registration was null
- 2024-02-18 11:51:16.048 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(ascii)] under ascii; prior registration was null
- 2024-02-18 11:51:16.048 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(chr)] under chr; prior registration was null
- 2024-02-18 11:51:16.048 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registering alternate key : char -> chr
- 2024-02-18 11:51:16.048 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@63604641] under position; prior registration was org.hibernate.dialect.function.LocatePositionEmulation@60a3a0fa
- 2024-02-18 11:51:16.048 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@1313dea8] under bitand; prior registration was null
- 2024-02-18 11:51:16.048 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@74bca236] under bitor; prior registration was null
- 2024-02-18 11:51:16.048 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@526fbb80] under bitxor; prior registration was null
- 2024-02-18 11:51:16.048 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@33dcbdc2] under bitnot; prior registration was null
- 2024-02-18 11:51:16.048 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_and)] under bit_and; prior registration was null
- 2024-02-18 11:51:16.048 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bit_or)] under bit_or; prior registration was null
- 2024-02-18 11:51:16.048 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_and)] under bool_and; prior registration was null
- 2024-02-18 11:51:16.048 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registering alternate key : every -> bool_and
- 2024-02-18 11:51:16.048 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(bool_or)] under bool_or; prior registration was null
- 2024-02-18 11:51:16.048 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registering alternate key : any -> bool_or
- 2024-02-18 11:51:16.048 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@3e37c38f] under median; prior registration was null
- 2024-02-18 11:51:16.048 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev)] under stddev; prior registration was null
- 2024-02-18 11:51:16.048 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_pop)] under stddev_pop; prior registration was null
- 2024-02-18 11:51:16.048 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(stddev_samp)] under stddev_samp; prior registration was null
- 2024-02-18 11:51:16.048 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(variance)] under variance; prior registration was null
- 2024-02-18 11:51:16.048 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_pop)] under var_pop; prior registration was null
- 2024-02-18 11:51:16.048 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(var_samp)] under var_samp; prior registration was null
- 2024-02-18 11:51:16.048 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(covar_pop)] under covar_pop; prior registration was null
- 2024-02-18 11:51:16.048 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(covar_samp)] under covar_samp; prior registration was null
- 2024-02-18 11:51:16.048 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(corr)] under corr; prior registration was null
- 2024-02-18 11:51:16.049 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(regr_avgx)] under regr_avgx; prior registration was null
- 2024-02-18 11:51:16.049 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(regr_avgy)] under regr_avgy; prior registration was null
- 2024-02-18 11:51:16.049 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(regr_count)] under regr_count; prior registration was null
- 2024-02-18 11:51:16.049 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(regr_intercept)] under regr_intercept; prior registration was null
- 2024-02-18 11:51:16.049 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(regr_r2)] under regr_r2; prior registration was null
- 2024-02-18 11:51:16.049 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(regr_slope)] under regr_slope; prior registration was null
- 2024-02-18 11:51:16.049 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(regr_sxx)] under regr_sxx; prior registration was null
- 2024-02-18 11:51:16.049 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(regr_sxy)] under regr_sxy; prior registration was null
- 2024-02-18 11:51:16.049 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(regr_syy)] under regr_syy; prior registration was null
- 2024-02-18 11:51:16.049 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@1766b7] under insert; prior registration was null
- 2024-02-18 11:51:16.049 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.MultipatternSqmFunctionDescriptor@19e552a3] under overlay; prior registration was org.hibernate.dialect.function.InsertSubstringOverlayEmulation@61d1315b
- 2024-02-18 11:51:16.049 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(soundex)] under soundex; prior registration was null
- 2024-02-18 11:51:16.049 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.MultipatternSqmFunctionDescriptor@5091456c] under locate; prior registration was NamedSqmFunctionTemplate(locate)
- 2024-02-18 11:51:16.049 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(row_number)] under row_number; prior registration was null
- 2024-02-18 11:51:16.050 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lag)] under lag; prior registration was null
- 2024-02-18 11:51:16.050 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(lead)] under lead; prior registration was null
- 2024-02-18 11:51:16.050 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(first_value)] under first_value; prior registration was null
- 2024-02-18 11:51:16.050 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(last_value)] under last_value; prior registration was null
- 2024-02-18 11:51:16.050 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(nth_value)] under nth_value; prior registration was null
- 2024-02-18 11:51:16.050 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.ListaggStringAggEmulation@2ff30a75] under listagg; prior registration was null
- 2024-02-18 11:51:16.051 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.PostgreSQLArrayConstructorFunction@1659a0ff] under array; prior registration was null
- 2024-02-18 11:51:16.051 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.PostgreSQLArrayConstructorFunction@1398e3aa] under array_list; prior registration was null
- 2024-02-18 11:51:16.051 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayAggFunction@3e9c59ed] under array_agg; prior registration was null
- 2024-02-18 11:51:16.053 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.PostgreSQLArrayPositionFunction@43f670f3] under array_position; prior registration was null
- 2024-02-18 11:51:16.055 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.PostgreSQLArrayPositionsFunction@68fe866b] under array_positions; prior registration was null
- 2024-02-18 11:51:16.058 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.PostgreSQLArrayPositionsFunction@22120799] under array_positions_list; prior registration was null
- 2024-02-18 11:51:16.058 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@3adbfd16] under array_length; prior registration was null
- 2024-02-18 11:51:16.058 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.PostgreSQLArrayConcatFunction@674f22ce] under array_concat; prior registration was null
- 2024-02-18 11:51:16.059 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.PostgreSQLArrayConcatElementFunction@25c6a9de] under array_prepend; prior registration was null
- 2024-02-18 11:51:16.059 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.PostgreSQLArrayConcatElementFunction@142422a4] under array_append; prior registration was null
- 2024-02-18 11:51:16.060 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayContainsOperatorFunction@274f51ad] under array_contains; prior registration was null
- 2024-02-18 11:51:16.060 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayContainsOperatorFunction@33c976b1] under array_contains_nullable; prior registration was null
- 2024-02-18 11:51:16.060 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayOverlapsOperatorFunction@7de4bd8f] under array_overlaps; prior registration was null
- 2024-02-18 11:51:16.060 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayOverlapsOperatorFunction@193e65d5] under array_overlaps_nullable; prior registration was null
- 2024-02-18 11:51:16.060 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@17a5cb99] under array_get; prior registration was null
- 2024-02-18 11:51:16.061 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArraySetUnnestFunction@63f88d35] under array_set; prior registration was null
- 2024-02-18 11:51:16.061 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(array_remove)] under array_remove; prior registration was null
- 2024-02-18 11:51:16.061 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayRemoveIndexUnnestFunction@37d43b9b] under array_remove_index; prior registration was null
- 2024-02-18 11:51:16.061 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@28ba90c1] under array_slice; prior registration was null
- 2024-02-18 11:51:16.061 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(array_replace)] under array_replace; prior registration was null
- 2024-02-18 11:51:16.061 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@71cf6e8c] under array_trim; prior registration was null
- 2024-02-18 11:51:16.062 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.PostgreSQLArrayFillFunction@747e0a31] under array_fill; prior registration was null
- 2024-02-18 11:51:16.062 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.PostgreSQLArrayFillFunction@60ee1a29] under array_fill_list; prior registration was null
- 2024-02-18 11:51:16.062 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.array.ArrayToStringFunction@4f55da9b] under array_to_string; prior registration was null
- 2024-02-18 11:51:16.062 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(make_date)] under make_date; prior registration was null
- 2024-02-18 11:51:16.062 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(make_time)] under make_time; prior registration was null
- 2024-02-18 11:51:16.062 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(make_timestamp)] under make_timestamp; prior registration was null
- 2024-02-18 11:51:16.062 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [NamedSqmFunctionTemplate(make_timestamptz)] under make_timestamptz; prior registration was null
- 2024-02-18 11:51:16.063 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@75fb04ee] under mode; prior registration was null
- 2024-02-18 11:51:16.063 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@5c863996] under percentile_cont; prior registration was null
- 2024-02-18 11:51:16.063 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.InverseDistributionFunction@1000303a] under percentile_disc; prior registration was null
- 2024-02-18 11:51:16.063 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@173039b5] under rank; prior registration was null
- 2024-02-18 11:51:16.063 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@6005cfe5] under dense_rank; prior registration was null
- 2024-02-18 11:51:16.063 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@37635407] under percent_rank; prior registration was null
- 2024-02-18 11:51:16.063 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.HypotheticalSetFunction@33822750] under cume_dist; prior registration was null
- 2024-02-18 11:51:16.063 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.PostgreSQLMinMaxFunction@64a9719a] under min; prior registration was NamedSqmFunctionTemplate(min)
- 2024-02-18 11:51:16.063 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.PostgreSQLMinMaxFunction@bc70176] under max; prior registration was NamedSqmFunctionTemplate(max)
- 2024-02-18 11:51:16.064 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.PostgreSQLTruncRoundFunction@4f143176] under round; prior registration was NamedSqmFunctionTemplate(round)
- 2024-02-18 11:51:16.065 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.dialect.function.PostgreSQLTruncFunction@105c253a] under trunc; prior registration was null
- 2024-02-18 11:51:16.065 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registering alternate key : truncate -> trunc
- 2024-02-18 11:51:16.065 [, - main] DEBUG o.hibernate.query.sqm.function.SqmFunctionRegistry - Registered SqmFunctionTemplate [org.hibernate.query.sqm.function.PatternBasedSqmFunctionDescriptor@156322ce] under date_trunc; prior registration was null
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - abs(NUMERIC arg)
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Double acos(NUMERIC arg)
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Double acosh(NUMERIC arg)
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Boolean any(BOOLEAN predicate)
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - array( ... )
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - array_agg(arg)
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - array_append( ... )
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - array_concat( ... )
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Boolean array_contains(ARRAY haystackArray, OBJECT needleElementOrArray)
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Boolean array_contains_nullable(ARRAY haystackArray, OBJECT needleElementOrArray)
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - array_fill(OBJECT element, INTEGER elementCount)
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - array_fill_list(OBJECT element, INTEGER elementCount)
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - array_get(ARRAY array, INTEGER index)
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Integer array_length(ARRAY array)
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - array_list( ... )
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Boolean array_overlaps(ARRAY array0, OBJECT array1)
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Boolean array_overlaps_nullable(ARRAY array0, OBJECT array1)
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Integer array_position(ARRAY array, OBJECT element[, INTEGER startPosition])
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - int[] array_positions(ARRAY array, OBJECT element)
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - List array_positions_list(ARRAY array, OBJECT element)
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - array_prepend( ... )
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - array_remove( ... )
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - array_remove_index( ... )
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - array_replace(ARRAY array, OBJECT old, OBJECT new)
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - array_set( ... )
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - array_slice(ARRAY array, INTEGER start, INTEGER end)
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - String array_to_string( ... )
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - array_trim(ARRAY array, INTEGER elementsToRemove)
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Integer ascii(STRING arg)
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Double asin(NUMERIC arg)
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Double asinh(NUMERIC arg)
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Double atan(NUMERIC arg)
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Double atan2(NUMERIC arg0, NUMERIC arg1)
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Double atanh(NUMERIC arg)
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - avg(arg)
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - bit_and(arg)
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Integer bit_length(STRING_OR_CLOB arg)
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - bit_or(arg)
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - bitand(arg0, arg1)
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - bitnot(arg)
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - bitor(arg0, arg1)
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - bitxor(arg0, arg1)
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Boolean bool_and(BOOLEAN predicate)
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Boolean bool_or(BOOLEAN predicate)
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - cast(arg as Type)
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Double cbrt(NUMERIC arg)
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - ceiling(NUMERIC arg)
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Character char(INTEGER arg)
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Integer character_length(STRING_OR_CLOB arg)
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Character chr(INTEGER arg)
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - coalesce(arg0[, arg1[, ...]])
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - String collate(STRING string as COLLATION collation)
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - (STRING string0[, STRING string1[, ...]])
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Double corr(NUMERIC arg0, NUMERIC arg1)
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Double cos(NUMERIC arg)
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Double cosh(NUMERIC arg)
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Double cot(NUMERIC arg)
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Long count([distinct ]{arg|*})
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Double covar_pop(NUMERIC arg0, NUMERIC arg1)
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Double covar_samp(NUMERIC arg0, NUMERIC arg1)
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Double cume_dist([arg0[, ...]])
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Date current date
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Time current time
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Timestamp current timestamp
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Date current_date
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Instant current_instant
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Time current_time
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Timestamp current_timestamp
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - date_trunc(STRING field, TEMPORAL datetime)
- 2024-02-18 11:51:16.066 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - dateadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime)
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - basicType@8(java.lang.Long,-5)|basicType@25(java.lang.Double,8) datediff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end)
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Double degrees(NUMERIC arg)
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Long dense_rank([arg0[, ...]])
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Boolean every(BOOLEAN predicate)
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Double exp(NUMERIC arg)
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - extract(TEMPORAL_UNIT field from TEMPORAL arg)
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - first_valueANY value
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - floor(NUMERIC arg)
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - String format(TEMPORAL datetime as STRING pattern)
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - greatest(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]])
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - ifnull(arg0, arg1)
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - String initcap(arg)
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - String insert(STRING string, INTEGER start, INTEGER length, STRING replacement)
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Instant instant
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - lagANY value[, INTEGER offset[, ANY default]]
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - last_valueANY value
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - leadANY value[, INTEGER offset[, ANY default]]
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - least(COMPARABLE arg0, COMPARABLE arg1[, arg2[, ...]])
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - String left(STRING string, INTEGER length)
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Integer length(STRING_OR_CLOB arg)
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - String listagg(STRING arg0, STRING arg1)
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Double ln(NUMERIC arg)
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - LocalDate local date
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - LocalDateTime local datetime
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - LocalTime local time
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - LocalDate local_date
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - LocalDateTime local_datetime
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - LocalTime local_time
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Time localtime
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Timestamp localtimestamp
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Integer locate(STRING pattern, STRING string[, INTEGER start])
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Double log(NUMERIC arg0[, NUMERIC arg1])
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Double log10(NUMERIC arg)
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - String lower(STRING string)
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - String lpad(STRING string, INTEGER length[, STRING padding])
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - String ltrim(STRING string[, STRING characters])
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Date make_date(INTEGER arg0, INTEGER arg1, INTEGER arg2)
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Time make_time(INTEGER arg0, INTEGER arg1, INTEGER arg2)
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Timestamp make_timestamp(INTEGER arg0, INTEGER arg1, INTEGER arg2, INTEGER arg3, INTEGER arg4, INTEGER arg5)
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Timestamp make_timestamptz(INTEGER arg0, INTEGER arg1, INTEGER arg2, INTEGER arg3, INTEGER arg4, INTEGER arg5[, INTEGER arg6])
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - max(COMPARABLE arg)
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - String md5(arg)
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Double median(NUMERIC arg)
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - min(COMPARABLE arg)
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Integer mod(INTEGER arg0, INTEGER arg1)
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - mode()
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - nth_valueANY value, INTEGER nth
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - nullif(arg0, arg1)
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Integer octet_length(STRING_OR_CLOB arg)
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - OffsetDateTime offset datetime
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - OffsetDateTime offset_datetime
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - String overlay(string placing replacement from start[ for length])
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - String pad(STRING string with INTEGER length {leading|trailing}[ STRING character])
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Double percent_rank([arg0[, ...]])
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - percentile_cont(NUMERIC arg)
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - percentile_disc(NUMERIC arg)
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Double pi
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Integer position(STRING pattern in STRING string)
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Double power(NUMERIC arg0, NUMERIC arg1)
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Double radians(NUMERIC arg)
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Long rank([arg0[, ...]])
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Double regr_avgx(NUMERIC arg0, NUMERIC arg1)
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Double regr_avgy(NUMERIC arg0, NUMERIC arg1)
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Double regr_count(NUMERIC arg0, NUMERIC arg1)
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Double regr_intercept(NUMERIC arg0, NUMERIC arg1)
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Double regr_r2(NUMERIC arg0, NUMERIC arg1)
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Double regr_slope(NUMERIC arg0, NUMERIC arg1)
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Double regr_sxx(NUMERIC arg0, NUMERIC arg1)
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Double regr_sxy(NUMERIC arg0, NUMERIC arg1)
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Double regr_syy(NUMERIC arg0, NUMERIC arg1)
- 2024-02-18 11:51:16.067 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - String repeat(STRING string, INTEGER times)
- 2024-02-18 11:51:16.068 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - String replace(STRING string, STRING pattern, STRING replacement)
- 2024-02-18 11:51:16.068 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - String right(STRING string, INTEGER length)
- 2024-02-18 11:51:16.068 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - round(NUMERIC number[, INTEGER places])
- 2024-02-18 11:51:16.068 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Long row_number()
- 2024-02-18 11:51:16.068 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - String rpad(STRING string, INTEGER length[, STRING padding])
- 2024-02-18 11:51:16.068 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - String rtrim(STRING string[, STRING characters])
- 2024-02-18 11:51:16.068 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Integer sign(NUMERIC arg)
- 2024-02-18 11:51:16.068 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Double sin(NUMERIC arg)
- 2024-02-18 11:51:16.068 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Double sinh(NUMERIC arg)
- 2024-02-18 11:51:16.068 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - String soundex(arg)
- 2024-02-18 11:51:16.068 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Object sql
- 2024-02-18 11:51:16.068 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Double sqrt(NUMERIC arg)
- 2024-02-18 11:51:16.068 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Double stddev(NUMERIC arg)
- 2024-02-18 11:51:16.068 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Double stddev_pop(NUMERIC arg)
- 2024-02-18 11:51:16.068 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Double stddev_samp(NUMERIC arg)
- 2024-02-18 11:51:16.068 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - String str(arg)
- 2024-02-18 11:51:16.068 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - String substr(STRING string, INTEGER start[, INTEGER length])
- 2024-02-18 11:51:16.068 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - String substring(STRING string{ from|,} INTEGER start[{ for|,} INTEGER length])
- 2024-02-18 11:51:16.068 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - sum(arg)
- 2024-02-18 11:51:16.068 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Double tan(NUMERIC arg)
- 2024-02-18 11:51:16.068 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Double tanh(NUMERIC arg)
- 2024-02-18 11:51:16.068 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - timestampadd(TEMPORAL_UNIT field, INTEGER magnitude, TEMPORAL datetime)
- 2024-02-18 11:51:16.068 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - basicType@8(java.lang.Long,-5)|basicType@25(java.lang.Double,8) timestampdiff(TEMPORAL_UNIT field, TEMPORAL start, TEMPORAL end)
- 2024-02-18 11:51:16.068 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - String to_char(ANY arg0[, STRING arg1, STRING arg2])
- 2024-02-18 11:51:16.068 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Date to_date(STRING arg0[, STRING arg1, STRING arg2])
- 2024-02-18 11:51:16.068 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Double to_number(STRING arg0[, STRING arg1, STRING arg2])
- 2024-02-18 11:51:16.068 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Timestamp to_timestamp(STRING arg0[, STRING arg1, STRING arg2])
- 2024-02-18 11:51:16.068 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - String translate(STRING arg0, STRING arg1, STRING arg2)
- 2024-02-18 11:51:16.068 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - String trim([[{leading|trailing|both} ][STRING arg0 ]from] STRING arg1)
- 2024-02-18 11:51:16.068 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - trunc( ... )
- 2024-02-18 11:51:16.068 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - truncate( ... )
- 2024-02-18 11:51:16.068 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - String upper(STRING string)
- 2024-02-18 11:51:16.068 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Double var_pop(NUMERIC arg)
- 2024-02-18 11:51:16.068 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Double var_samp(NUMERIC arg)
- 2024-02-18 11:51:16.068 [, - main] DEBUG org.hibernate.HQL_FUNCTIONS - Double variance(NUMERIC arg)
- 2024-02-18 11:51:16.071 [, - main] DEBUG org.hibernate.orm.query.plan.cache - Starting QueryInterpretationCache(2048)
- 2024-02-18 11:51:16.127 [, - main] DEBUG o.h.s.internal.SessionFactoryServiceRegistryImpl - EventListenerRegistry access via ServiceRegistry is deprecated. Use `sessionFactory.getEventEngine().getListenerRegistry()` instead
- 2024-02-18 11:51:16.128 [, - main] DEBUG o.h.e.internal.EntityCopyObserverFactoryInitiator - Configured EntityCopyObserver strategy: disallow
- 2024-02-18 11:51:16.185 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.EmploymentRecord] is safe
- 2024-02-18 11:51:16.186 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.EmploymentRecord
- 2024-02-18 11:51:16.492 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.CertShowVo] is safe
- 2024-02-18 11:51:16.492 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.CertShowVo
- 2024-02-18 11:51:16.560 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.JobRuleAddress] is safe
- 2024-02-18 11:51:16.560 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.JobRuleAddress
- 2024-02-18 11:51:16.613 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.relationship.RolePermissions] is safe
- 2024-02-18 11:51:16.613 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.relationship.RolePermissions
- 2024-02-18 11:51:16.661 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.DisUserInfoVo] is safe
- 2024-02-18 11:51:16.661 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.DisUserInfoVo
- 2024-02-18 11:51:16.763 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.LinkedAttachment] is safe
- 2024-02-18 11:51:16.763 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.LinkedAttachment
- 2024-02-18 11:51:16.805 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.EnterpriseUser] is safe
- 2024-02-18 11:51:16.805 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.EnterpriseUser
- 2024-02-18 11:51:16.837 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.JobRqCertRule] is safe
- 2024-02-18 11:51:16.837 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.JobRqCertRule
- 2024-02-18 11:51:16.861 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.EnterpriseIndustry] is safe
- 2024-02-18 11:51:16.861 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.EnterpriseIndustry
- 2024-02-18 11:51:16.886 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.Dept] is safe
- 2024-02-18 11:51:16.886 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.Dept
- 2024-02-18 11:51:16.940 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.JobTag] is safe
- 2024-02-18 11:51:16.940 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.JobTag
- 2024-02-18 11:51:16.964 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.UserDept] is safe
- 2024-02-18 11:51:16.964 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.UserDept
- 2024-02-18 11:51:16.991 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.EnterprisePhone] is safe
- 2024-02-18 11:51:16.991 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.EnterprisePhone
- 2024-02-18 11:51:17.011 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.cert.BankCard] is safe
- 2024-02-18 11:51:17.012 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.cert.BankCard
- 2024-02-18 11:51:17.040 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.RegShare] is safe
- 2024-02-18 11:51:17.040 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.RegShare
- 2024-02-18 11:51:17.061 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.Enterprise] is safe
- 2024-02-18 11:51:17.061 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.Enterprise
- 2024-02-18 11:51:17.098 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.cert.Idcard2] is safe
- 2024-02-18 11:51:17.098 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.cert.Idcard2
- 2024-02-18 11:51:17.117 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.AddressDetails] is safe
- 2024-02-18 11:51:17.117 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.AddressDetails
- 2024-02-18 11:51:17.138 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.JobJobTag] is safe
- 2024-02-18 11:51:17.138 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.JobJobTag
- 2024-02-18 11:51:17.158 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.UserInfo] is safe
- 2024-02-18 11:51:17.158 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.UserInfo
- 2024-02-18 11:51:17.200 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.BlackListTag] is safe
- 2024-02-18 11:51:17.200 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.BlackListTag
- 2024-02-18 11:51:17.219 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.DisAccountVo] is safe
- 2024-02-18 11:51:17.219 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.DisAccountVo
- 2024-02-18 11:51:17.244 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.AuditAttachment] is safe
- 2024-02-18 11:51:17.244 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.AuditAttachment
- 2024-02-18 11:51:17.260 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.FullRoleGroup] is safe
- 2024-02-18 11:51:17.260 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.FullRoleGroup
- 2024-02-18 11:51:17.316 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.DisInfo] is safe
- 2024-02-18 11:51:17.316 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.DisInfo
- 2024-02-18 11:51:17.334 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole] is safe
- 2024-02-18 11:51:17.334 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole
- 2024-02-18 11:51:17.353 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.BlackListEvidence] is safe
- 2024-02-18 11:51:17.353 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.BlackListEvidence
- 2024-02-18 11:51:17.368 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.cert.Cert] is safe
- 2024-02-18 11:51:17.368 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.cert.Cert
- 2024-02-18 11:51:17.391 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails] is safe
- 2024-02-18 11:51:17.391 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails
- 2024-02-18 11:51:17.426 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.JobSeekerSuperior] is safe
- 2024-02-18 11:51:17.426 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.JobSeekerSuperior
- 2024-02-18 11:51:17.471 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.Attachment] is safe
- 2024-02-18 11:51:17.471 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.Attachment
- 2024-02-18 11:51:17.528 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.Industry] is safe
- 2024-02-18 11:51:17.528 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.Industry
- 2024-02-18 11:51:17.563 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.RoleGroup] is safe
- 2024-02-18 11:51:17.563 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.RoleGroup
- 2024-02-18 11:51:17.577 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.AnonymousCertGroup] is safe
- 2024-02-18 11:51:17.577 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.AnonymousCertGroup
- 2024-02-18 11:51:17.590 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.cert.DisCert2] is safe
- 2024-02-18 11:51:17.590 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.cert.DisCert2
- 2024-02-18 11:51:17.608 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.FullEnterprise] is safe
- 2024-02-18 11:51:17.608 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.FullEnterprise
- 2024-02-18 11:51:17.632 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.FullAddress] is safe
- 2024-02-18 11:51:17.632 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.FullAddress
- 2024-02-18 11:51:17.650 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.Role] is safe
- 2024-02-18 11:51:17.650 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.Role
- 2024-02-18 11:51:17.675 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.CertAccess] is safe
- 2024-02-18 11:51:17.675 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.CertAccess
- 2024-02-18 11:51:17.690 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.Address] is safe
- 2024-02-18 11:51:17.690 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.Address
- 2024-02-18 11:51:17.706 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.FullUsr] is safe
- 2024-02-18 11:51:17.706 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.FullUsr
- 2024-02-18 11:51:17.721 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.BlackListVo] is safe
- 2024-02-18 11:51:17.721 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.BlackListVo
- 2024-02-18 11:51:17.739 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord] is safe
- 2024-02-18 11:51:17.739 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord
- 2024-02-18 11:51:17.752 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity] is safe
- 2024-02-18 11:51:17.752 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity
- 2024-02-18 11:51:17.764 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.WorkExperience] is safe
- 2024-02-18 11:51:17.764 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.WorkExperience
- 2024-02-18 11:51:17.778 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.Api] is safe
- 2024-02-18 11:51:17.778 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.Api
- 2024-02-18 11:51:17.791 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.BlackListRelation] is safe
- 2024-02-18 11:51:17.791 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.BlackListRelation
- 2024-02-18 11:51:17.804 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.Permissions] is safe
- 2024-02-18 11:51:17.804 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.Permissions
- 2024-02-18 11:51:17.814 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert] is safe
- 2024-02-18 11:51:17.814 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.cert.HouseholdCert
- 2024-02-18 11:51:17.836 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.Usr] is safe
- 2024-02-18 11:51:17.836 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.Usr
- 2024-02-18 11:51:17.851 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.cert.BizCert] is safe
- 2024-02-18 11:51:17.851 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.cert.BizCert
- 2024-02-18 11:51:17.867 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.JobSeeker] is safe
- 2024-02-18 11:51:17.867 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.JobSeeker
- 2024-02-18 11:51:17.882 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.FullRole] is safe
- 2024-02-18 11:51:17.882 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.FullRole
- 2024-02-18 11:51:17.893 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup] is safe
- 2024-02-18 11:51:17.893 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup
- 2024-02-18 11:51:17.902 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.BlackList] is safe
- 2024-02-18 11:51:17.902 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.BlackList
- 2024-02-18 11:51:17.930 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.Job] is safe
- 2024-02-18 11:51:17.930 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.Job
- 2024-02-18 11:51:17.957 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.EnterpriseEmail] is safe
- 2024-02-18 11:51:17.957 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.EnterpriseEmail
- 2024-02-18 11:51:17.966 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.Audit] is safe
- 2024-02-18 11:51:17.966 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.Audit
- 2024-02-18 11:51:17.977 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.BlackListBlackListTag] is safe
- 2024-02-18 11:51:17.977 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.BlackListBlackListTag
- 2024-02-18 11:51:17.987 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory] is safe
- 2024-02-18 11:51:17.987 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory
- 2024-02-18 11:51:18.000 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.FullUserInfo] is safe
- 2024-02-18 11:51:18.000 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.FullUserInfo
- 2024-02-18 11:51:18.019 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [com.tnmaster.entities.RqCertRule] is safe
- 2024-02-18 11:51:18.019 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : com.tnmaster.entities.RqCertRule
- 2024-02-18 11:51:18.030 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - Not known whether passed class name [io.github.truenine.composeserver.rds.entities.FullAddressDetails] is safe
- 2024-02-18 11:51:18.030 [, - main] DEBUG org.hibernate.boot.internal.ClassLoaderAccessImpl - No temp ClassLoader provided; using live ClassLoader for loading potentially unsafe class : io.github.truenine.composeserver.rds.entities.FullAddressDetails
- 2024-02-18 11:51:18.053 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - Skipping collection (re)creation - com.tnmaster.entities.FullEnterprise.phones
- 2024-02-18 11:51:18.053 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - Skipping collection row updates - com.tnmaster.entities.FullEnterprise.phones
- 2024-02-18 11:51:18.053 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - Skipping collection row deletions - com.tnmaster.entities.FullEnterprise.phones
- 2024-02-18 11:51:18.053 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - Skipping collection removals - com.tnmaster.entities.FullEnterprise.phones
- 2024-02-18 11:51:18.056 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - Skipping collection row updates - io.github.truenine.composeserver.rds.entities.FullUsr.roleGroups
- 2024-02-18 11:51:18.057 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - Skipping collection row updates - io.github.truenine.composeserver.rds.entities.FullRole.permissions
- 2024-02-18 11:51:18.058 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - Skipping collection row updates - com.tnmaster.entities.BlackListVo.tags
- 2024-02-18 11:51:18.058 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - Skipping collection (re)creation - com.tnmaster.entities.FullEnterprise.emails
- 2024-02-18 11:51:18.058 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - Skipping collection row updates - com.tnmaster.entities.FullEnterprise.emails
- 2024-02-18 11:51:18.058 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - Skipping collection row deletions - com.tnmaster.entities.FullEnterprise.emails
- 2024-02-18 11:51:18.058 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - Skipping collection removals - com.tnmaster.entities.FullEnterprise.emails
- 2024-02-18 11:51:18.058 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - Skipping collection row updates - io.github.truenine.composeserver.rds.entities.FullRoleGroup.roles
- 2024-02-18 11:51:18.058 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - Skipping collection (re)creation - com.tnmaster.entities.BlackListVo.relations
- 2024-02-18 11:51:18.058 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - Skipping collection row updates - com.tnmaster.entities.BlackListVo.relations
- 2024-02-18 11:51:18.058 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - Skipping collection row deletions - com.tnmaster.entities.BlackListVo.relations
- 2024-02-18 11:51:18.058 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - Skipping collection removals - com.tnmaster.entities.BlackListVo.relations
- 2024-02-18 11:51:18.058 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - Skipping collection (re)creation - io.github.truenine.composeserver.rds.entities.FullAddress.details
- 2024-02-18 11:51:18.058 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - Skipping collection row updates - io.github.truenine.composeserver.rds.entities.FullAddress.details
- 2024-02-18 11:51:18.058 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - Skipping collection row deletions - io.github.truenine.composeserver.rds.entities.FullAddress.details
- 2024-02-18 11:51:18.058 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - Skipping collection removals - io.github.truenine.composeserver.rds.entities.FullAddress.details
- 2024-02-18 11:51:18.058 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - Skipping collection row updates - com.tnmaster.entities.DisAccountVo.dsInfos
- 2024-02-18 11:51:18.058 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - Skipping collection (re)creation - com.tnmaster.entities.DisAccountVo.userInfos
- 2024-02-18 11:51:18.058 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - Skipping collection row updates - com.tnmaster.entities.DisAccountVo.userInfos
- 2024-02-18 11:51:18.058 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - Skipping collection row deletions - com.tnmaster.entities.DisAccountVo.userInfos
- 2024-02-18 11:51:18.058 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - Skipping collection removals - com.tnmaster.entities.DisAccountVo.userInfos
- 2024-02-18 11:51:18.094 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting post-init callbacks
- 2024-02-18 11:51:18.095 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(com.tnmaster.entities.EmploymentRecord) `staticFetchableList` generator
- 2024-02-18 11:51:18.095 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : To-one key - NavigableRole[com.tnmaster.entities.CertShowVo.createUser]
- 2024-02-18 11:51:18.098 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : To-one key - NavigableRole[com.tnmaster.entities.CertShowVo.wmAtt]
- 2024-02-18 11:51:18.098 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(com.tnmaster.entities.CertShowVo) `staticFetchableList` generator
- 2024-02-18 11:51:18.098 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(com.tnmaster.entities.JobRuleAddress) `staticFetchableList` generator
- 2024-02-18 11:51:18.098 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(io.github.truenine.composeserver.rds.entities.relationship.RolePermissions) `staticFetchableList` generator
- 2024-02-18 11:51:18.098 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : To-one key - NavigableRole[io.github.truenine.composeserver.rds.entities.LinkedAttachment.base]
- 2024-02-18 11:51:18.098 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(io.github.truenine.composeserver.rds.entities.LinkedAttachment) `staticFetchableList` generator
- 2024-02-18 11:51:18.098 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : To-one key - NavigableRole[com.tnmaster.entities.DisUserInfoVo.account]
- 2024-02-18 11:51:18.098 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : To-one key - NavigableRole[com.tnmaster.entities.DisUserInfoVo.dsInfo]
- 2024-02-18 11:51:18.098 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(com.tnmaster.entities.DisUserInfoVo) `staticFetchableList` generator
- 2024-02-18 11:51:18.098 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(com.tnmaster.entities.EnterpriseUser) `staticFetchableList` generator
- 2024-02-18 11:51:18.098 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(com.tnmaster.entities.JobRqCertRule) `staticFetchableList` generator
- 2024-02-18 11:51:18.098 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(io.github.truenine.composeserver.rds.entities.Dept) `staticFetchableList` generator
- 2024-02-18 11:51:18.098 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(com.tnmaster.entities.EnterpriseIndustry) `staticFetchableList` generator
- 2024-02-18 11:51:18.098 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(com.tnmaster.entities.JobTag) `staticFetchableList` generator
- 2024-02-18 11:51:18.098 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(io.github.truenine.composeserver.rds.entities.UserDept) `staticFetchableList` generator
- 2024-02-18 11:51:18.098 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(io.github.truenine.composeserver.rds.entities.cert.BankCard) `staticFetchableList` generator
- 2024-02-18 11:51:18.098 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(com.tnmaster.entities.EnterprisePhone) `staticFetchableList` generator
- 2024-02-18 11:51:18.098 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(com.tnmaster.entities.RegShare) `staticFetchableList` generator
- 2024-02-18 11:51:18.098 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(com.tnmaster.entities.Enterprise) `staticFetchableList` generator
- 2024-02-18 11:51:18.098 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(io.github.truenine.composeserver.rds.entities.cert.Idcard2) `staticFetchableList` generator
- 2024-02-18 11:51:18.098 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(io.github.truenine.composeserver.rds.entities.AddressDetails) `staticFetchableList` generator
- 2024-02-18 11:51:18.098 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(com.tnmaster.entities.JobJobTag) `staticFetchableList` generator
- 2024-02-18 11:51:18.098 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(io.github.truenine.composeserver.rds.entities.UserInfo) `staticFetchableList` generator
- 2024-02-18 11:51:18.098 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(com.tnmaster.entities.BlackListTag) `staticFetchableList` generator
- 2024-02-18 11:51:18.098 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : PluralAttributeMapping( NavigableRole[com.tnmaster.entities.DisAccountVo.dsInfos#{element}]) - element descriptor
- 2024-02-18 11:51:18.098 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : PluralAttributeMapping(com.tnmaster.entities.DisAccountVo.dsInfos)#finishInitialization
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : PluralAttributeMapping(com.tnmaster.entities.DisAccountVo.dsInfos) - key descriptor
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : PluralAttributeMapping( NavigableRole[com.tnmaster.entities.DisAccountVo.userInfos#{element}]) - element descriptor
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : PluralAttributeMapping(com.tnmaster.entities.DisAccountVo.userInfos)#finishInitialization
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : PluralAttributeMapping(com.tnmaster.entities.DisAccountVo.userInfos) - key descriptor
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(com.tnmaster.entities.DisAccountVo) `staticFetchableList` generator
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(io.github.truenine.composeserver.rds.entities.AuditAttachment) `staticFetchableList` generator
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : PluralAttributeMapping( NavigableRole[io.github.truenine.composeserver.rds.entities.FullRoleGroup.roles#{element}]) - element descriptor
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : PluralAttributeMapping(io.github.truenine.composeserver.rds.entities.FullRoleGroup.roles)#finishInitialization
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : PluralAttributeMapping(io.github.truenine.composeserver.rds.entities.FullRoleGroup.roles) - key descriptor
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(io.github.truenine.composeserver.rds.entities.FullRoleGroup) `staticFetchableList` generator
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(com.tnmaster.entities.DisInfo) `staticFetchableList` generator
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole) `staticFetchableList` generator
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(com.tnmaster.entities.BlackListEvidence) `staticFetchableList` generator
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(io.github.truenine.composeserver.rds.entities.cert.Cert) `staticFetchableList` generator
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails) `staticFetchableList` generator
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(com.tnmaster.entities.JobSeekerSuperior) `staticFetchableList` generator
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(io.github.truenine.composeserver.rds.entities.Attachment) `staticFetchableList` generator
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(com.tnmaster.entities.Industry) `staticFetchableList` generator
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(io.github.truenine.composeserver.rds.entities.RoleGroup) `staticFetchableList` generator
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(com.tnmaster.entities.AnonymousCertGroup) `staticFetchableList` generator
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(io.github.truenine.composeserver.rds.entities.cert.DisCert2) `staticFetchableList` generator
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : PluralAttributeMapping( NavigableRole[com.tnmaster.entities.FullEnterprise.emails#{element}]) - element descriptor
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : PluralAttributeMapping(com.tnmaster.entities.FullEnterprise.emails)#finishInitialization
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : PluralAttributeMapping(com.tnmaster.entities.FullEnterprise.emails) - key descriptor
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : PluralAttributeMapping( NavigableRole[com.tnmaster.entities.FullEnterprise.phones#{element}]) - element descriptor
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : PluralAttributeMapping(com.tnmaster.entities.FullEnterprise.phones)#finishInitialization
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : PluralAttributeMapping(com.tnmaster.entities.FullEnterprise.phones) - key descriptor
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(com.tnmaster.entities.FullEnterprise) `staticFetchableList` generator
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : PluralAttributeMapping( NavigableRole[io.github.truenine.composeserver.rds.entities.FullAddress.details#{element}]) - element descriptor
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : PluralAttributeMapping(io.github.truenine.composeserver.rds.entities.FullAddress.details)#finishInitialization
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : PluralAttributeMapping(io.github.truenine.composeserver.rds.entities.FullAddress.details) - key descriptor
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(io.github.truenine.composeserver.rds.entities.FullAddress) `staticFetchableList` generator
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(io.github.truenine.composeserver.rds.entities.Role) `staticFetchableList` generator
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(com.tnmaster.entities.CertAccess) `staticFetchableList` generator
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(io.github.truenine.composeserver.rds.entities.Address) `staticFetchableList` generator
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : To-one key - NavigableRole[io.github.truenine.composeserver.rds.entities.FullUsr.info]
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : PluralAttributeMapping( NavigableRole[io.github.truenine.composeserver.rds.entities.FullUsr.roleGroups#{element}]) - element descriptor
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : PluralAttributeMapping(io.github.truenine.composeserver.rds.entities.FullUsr.roleGroups)#finishInitialization
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : PluralAttributeMapping(io.github.truenine.composeserver.rds.entities.FullUsr.roleGroups) - key descriptor
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(io.github.truenine.composeserver.rds.entities.FullUsr) `staticFetchableList` generator
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : To-one key - NavigableRole[com.tnmaster.entities.BlackListVo.blackUserInfo]
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : To-one key - NavigableRole[com.tnmaster.entities.BlackListVo.createUser]
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : PluralAttributeMapping( NavigableRole[com.tnmaster.entities.BlackListVo.relations#{element}]) - element descriptor
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : PluralAttributeMapping(com.tnmaster.entities.BlackListVo.relations)#finishInitialization
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : PluralAttributeMapping(com.tnmaster.entities.BlackListVo.relations) - key descriptor
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : To-one key - NavigableRole[com.tnmaster.entities.BlackListVo.reportUser]
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : To-one key - NavigableRole[com.tnmaster.entities.BlackListVo.reportUserInfo]
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : PluralAttributeMapping( NavigableRole[com.tnmaster.entities.BlackListVo.tags#{element}]) - element descriptor
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : PluralAttributeMapping(com.tnmaster.entities.BlackListVo.tags)#finishInitialization
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : PluralAttributeMapping(com.tnmaster.entities.BlackListVo.tags) - key descriptor
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(com.tnmaster.entities.BlackListVo) `staticFetchableList` generator
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord) `staticFetchableList` generator
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : To-one key - NavigableRole[io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity.api]
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity) `staticFetchableList` generator
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(com.tnmaster.entities.WorkExperience) `staticFetchableList` generator
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : To-one key - NavigableRole[io.github.truenine.composeserver.rds.entities.Api.permissions]
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(io.github.truenine.composeserver.rds.entities.Api) `staticFetchableList` generator
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(com.tnmaster.entities.BlackListRelation) `staticFetchableList` generator
- 2024-02-18 11:51:18.099 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(io.github.truenine.composeserver.rds.entities.Permissions) `staticFetchableList` generator
- 2024-02-18 11:51:18.100 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(io.github.truenine.composeserver.rds.entities.cert.HouseholdCert) `staticFetchableList` generator
- 2024-02-18 11:51:18.100 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(io.github.truenine.composeserver.rds.entities.Usr) `staticFetchableList` generator
- 2024-02-18 11:51:18.100 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(io.github.truenine.composeserver.rds.entities.cert.BizCert) `staticFetchableList` generator
- 2024-02-18 11:51:18.100 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(com.tnmaster.entities.JobSeeker) `staticFetchableList` generator
- 2024-02-18 11:51:18.100 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : PluralAttributeMapping( NavigableRole[io.github.truenine.composeserver.rds.entities.FullRole.permissions#{element}]) - element descriptor
- 2024-02-18 11:51:18.100 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : PluralAttributeMapping(io.github.truenine.composeserver.rds.entities.FullRole.permissions)#finishInitialization
- 2024-02-18 11:51:18.100 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : PluralAttributeMapping(io.github.truenine.composeserver.rds.entities.FullRole.permissions) - key descriptor
- 2024-02-18 11:51:18.100 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(io.github.truenine.composeserver.rds.entities.FullRole) `staticFetchableList` generator
- 2024-02-18 11:51:18.100 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup) `staticFetchableList` generator
- 2024-02-18 11:51:18.100 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(com.tnmaster.entities.BlackList) `staticFetchableList` generator
- 2024-02-18 11:51:18.100 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(com.tnmaster.entities.Job) `staticFetchableList` generator
- 2024-02-18 11:51:18.100 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(com.tnmaster.entities.EnterpriseEmail) `staticFetchableList` generator
- 2024-02-18 11:51:18.100 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(io.github.truenine.composeserver.rds.entities.Audit) `staticFetchableList` generator
- 2024-02-18 11:51:18.100 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(com.tnmaster.entities.BlackListBlackListTag) `staticFetchableList` generator
- 2024-02-18 11:51:18.100 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory) `staticFetchableList` generator
- 2024-02-18 11:51:18.100 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : To-one key - NavigableRole[io.github.truenine.composeserver.rds.entities.FullUserInfo.addressDetails]
- 2024-02-18 11:51:18.100 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : To-one key - NavigableRole[io.github.truenine.composeserver.rds.entities.FullUserInfo.avatarImage]
- 2024-02-18 11:51:18.100 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : To-one key - NavigableRole[io.github.truenine.composeserver.rds.entities.FullUserInfo.usr]
- 2024-02-18 11:51:18.100 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(io.github.truenine.composeserver.rds.entities.FullUserInfo) `staticFetchableList` generator
- 2024-02-18 11:51:18.100 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(com.tnmaster.entities.RqCertRule) `staticFetchableList` generator
- 2024-02-18 11:51:18.100 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : To-one key - NavigableRole[io.github.truenine.composeserver.rds.entities.FullAddressDetails.address]
- 2024-02-18 11:51:18.100 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : Entity(io.github.truenine.composeserver.rds.entities.FullAddressDetails) `staticFetchableList` generator
- 2024-02-18 11:51:18.100 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : PluralAttributeMapping( NavigableRole[com.tnmaster.entities.DisAccountVo.userInfos#{element}]) - element descriptor
- 2024-02-18 11:51:18.100 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : PluralAttributeMapping( NavigableRole[com.tnmaster.entities.FullEnterprise.emails#{element}]) - element descriptor
- 2024-02-18 11:51:18.100 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : PluralAttributeMapping( NavigableRole[com.tnmaster.entities.FullEnterprise.phones#{element}]) - element descriptor
- 2024-02-18 11:51:18.100 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : PluralAttributeMapping( NavigableRole[io.github.truenine.composeserver.rds.entities.FullAddress.details#{element}]) - element descriptor
- 2024-02-18 11:51:18.100 [, - main] DEBUG org.hibernate.orm.model.mapping.creation - Starting PostInitCallbackEntry : PluralAttributeMapping( NavigableRole[com.tnmaster.entities.BlackListVo.relations#{element}]) - element descriptor
- 2024-02-18 11:51:18.178 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : er1_0
- 2024-02-18 11:51:18.180 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.EmploymentRecord)] with identifierForTableGroup [com.tnmaster.entities.EmploymentRecord] for NavigablePath [com.tnmaster.entities.EmploymentRecord]
- 2024-02-18 11:51:18.189 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.EmploymentRecord]
- | +-BasicFetch [com.tnmaster.entities.EmploymentRecord.causeBy]
- | +-BasicFetch [com.tnmaster.entities.EmploymentRecord.crd]
- | +-BasicFetch [com.tnmaster.entities.EmploymentRecord.createDatetime]
- | +-BasicFetch [com.tnmaster.entities.EmploymentRecord.endDatetime]
- | +-BasicFetch [com.tnmaster.entities.EmploymentRecord.jobId]
- | +-BasicFetch [com.tnmaster.entities.EmploymentRecord.jobSeekerId]
- | +-BasicFetch [com.tnmaster.entities.EmploymentRecord.ldf]
- | +-BasicFetch [com.tnmaster.entities.EmploymentRecord.mrd]
- | +-BasicFetch [com.tnmaster.entities.EmploymentRecord.optUserId]
- | +-BasicFetch [com.tnmaster.entities.EmploymentRecord.rlv]
- | +-BasicFetch [com.tnmaster.entities.EmploymentRecord.typ]
- | \-BasicFetch [com.tnmaster.entities.EmploymentRecord.userId]
-
- 2024-02-18 11:51:18.192 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (er1 : com.tnmaster.entities.EmploymentRecord) {
- primaryTableReference : employment_record as er1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.195 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `com.tnmaster.entities.EmploymentRecord` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.198 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : er1_0
- 2024-02-18 11:51:18.198 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.EmploymentRecord)] with identifierForTableGroup [com.tnmaster.entities.EmploymentRecord] for NavigablePath [com.tnmaster.entities.EmploymentRecord]
- 2024-02-18 11:51:18.199 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.EmploymentRecord]
- | +-BasicFetch [com.tnmaster.entities.EmploymentRecord.causeBy]
- | +-BasicFetch [com.tnmaster.entities.EmploymentRecord.crd]
- | +-BasicFetch [com.tnmaster.entities.EmploymentRecord.createDatetime]
- | +-BasicFetch [com.tnmaster.entities.EmploymentRecord.endDatetime]
- | +-BasicFetch [com.tnmaster.entities.EmploymentRecord.jobId]
- | +-BasicFetch [com.tnmaster.entities.EmploymentRecord.jobSeekerId]
- | +-BasicFetch [com.tnmaster.entities.EmploymentRecord.ldf]
- | +-BasicFetch [com.tnmaster.entities.EmploymentRecord.mrd]
- | +-BasicFetch [com.tnmaster.entities.EmploymentRecord.optUserId]
- | +-BasicFetch [com.tnmaster.entities.EmploymentRecord.rlv]
- | +-BasicFetch [com.tnmaster.entities.EmploymentRecord.typ]
- | \-BasicFetch [com.tnmaster.entities.EmploymentRecord.userId]
-
- 2024-02-18 11:51:18.199 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (er1 : com.tnmaster.entities.EmploymentRecord) {
- primaryTableReference : employment_record as er1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.200 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: com.tnmaster.entities.EmploymentRecord
- 2024-02-18 11:51:18.200 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from employment_record where id=?
- 2024-02-18 11:51:18.200 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update employment_record set cause_by=?,crd=?,create_datetime=?,end_datetime=?,job_id=?,job_seeker_id=?,ldf=?,mrd=?,opt_user_id=?,rlv=?,typ=?,user_id=? where id=? and rlv=?
- 2024-02-18 11:51:18.200 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from employment_record where id=? and rlv=?
- 2024-02-18 11:51:18.200 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : csv1_0
- 2024-02-18 11:51:18.200 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.CertShowVo)] with identifierForTableGroup [com.tnmaster.entities.CertShowVo] for NavigablePath [com.tnmaster.entities.CertShowVo]
- 2024-02-18 11:51:18.203 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@2477c451] with identifierForTableGroup [com.tnmaster.entities.CertShowVo.createUser] for NavigablePath [com.tnmaster.entities.CertShowVo.createUser]
- 2024-02-18 11:51:18.204 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : cu1_0
- 2024-02-18 11:51:18.205 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@426dc148] with identifierForTableGroup [com.tnmaster.entities.CertShowVo.wmAtt] for NavigablePath [com.tnmaster.entities.CertShowVo.wmAtt]
- 2024-02-18 11:51:18.205 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : wa1_0
- 2024-02-18 11:51:18.205 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@21940db3] with identifierForTableGroup [com.tnmaster.entities.CertShowVo.wmAtt.base] for NavigablePath [com.tnmaster.entities.CertShowVo.wmAtt.base]
- 2024-02-18 11:51:18.205 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : b1_0
- 2024-02-18 11:51:18.206 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.CertShowVo]
- | +-BasicFetch [com.tnmaster.entities.CertShowVo.attId]
- | +-BasicFetch [com.tnmaster.entities.CertShowVo.auditStatus]
- | +-BasicFetch [com.tnmaster.entities.CertShowVo.coType]
- | +-BasicFetch [com.tnmaster.entities.CertShowVo.crd]
- | +-BasicFetch [com.tnmaster.entities.CertShowVo.createDatetime]
- | +-BasicFetch [com.tnmaster.entities.CertShowVo.createDeviceId]
- | +-BasicFetch [com.tnmaster.entities.CertShowVo.createIp]
- | +-EntityFetchJoinedImpl [com.tnmaster.entities.CertShowVo.createUser]
- | +-BasicFetch [com.tnmaster.entities.CertShowVo.createUserId]
- | +-BasicFetch [com.tnmaster.entities.CertShowVo.doType]
- | +-BasicFetch [com.tnmaster.entities.CertShowVo.doc]
- | +-BasicFetch [com.tnmaster.entities.CertShowVo.ldf]
- | +-BasicFetch [com.tnmaster.entities.CertShowVo.mrd]
- | +-BasicFetch [com.tnmaster.entities.CertShowVo.name]
- | +-BasicFetch [com.tnmaster.entities.CertShowVo.poType]
- | +-BasicFetch [com.tnmaster.entities.CertShowVo.remark]
- | +-BasicFetch [com.tnmaster.entities.CertShowVo.rlv]
- | +-BasicFetch [com.tnmaster.entities.CertShowVo.userId]
- | +-BasicFetch [com.tnmaster.entities.CertShowVo.userInfoId]
- | +-EntityFetchJoinedImpl [com.tnmaster.entities.CertShowVo.wmAtt]
- | +-BasicFetch [com.tnmaster.entities.CertShowVo.wmAttId]
- | \-BasicFetch [com.tnmaster.entities.CertShowVo.wmCode]
-
- 2024-02-18 11:51:18.207 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (csv1 : com.tnmaster.entities.CertShowVo) {
- primaryTableReference : cert as csv1_0
- TableGroupJoins {
- left join LazyTableGroup (cu1 : com.tnmaster.entities.CertShowVo.createUser) {
- primaryTableReference : usr as cu1_0
- }
- left join LazyTableGroup (wa1 : com.tnmaster.entities.CertShowVo.wmAtt) {
- primaryTableReference : attachment as wa1_0
- TableGroupJoins {
- left join LazyTableGroup (b1 : com.tnmaster.entities.CertShowVo.wmAtt.base) {
- primaryTableReference : attachment as b1_0
- }
- }
- }
- }
- }
- }
- }
-
- 2024-02-18 11:51:18.208 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `com.tnmaster.entities.CertShowVo` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.208 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : csv1_0
- 2024-02-18 11:51:18.208 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.CertShowVo)] with identifierForTableGroup [com.tnmaster.entities.CertShowVo] for NavigablePath [com.tnmaster.entities.CertShowVo]
- 2024-02-18 11:51:18.208 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@4360d359] with identifierForTableGroup [com.tnmaster.entities.CertShowVo.createUser] for NavigablePath [com.tnmaster.entities.CertShowVo.createUser]
- 2024-02-18 11:51:18.208 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : cu1_0
- 2024-02-18 11:51:18.208 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@7ada2568] with identifierForTableGroup [com.tnmaster.entities.CertShowVo.wmAtt] for NavigablePath [com.tnmaster.entities.CertShowVo.wmAtt]
- 2024-02-18 11:51:18.208 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : wa1_0
- 2024-02-18 11:51:18.209 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@7507a281] with identifierForTableGroup [com.tnmaster.entities.CertShowVo.wmAtt.base] for NavigablePath [com.tnmaster.entities.CertShowVo.wmAtt.base]
- 2024-02-18 11:51:18.209 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : b1_0
- 2024-02-18 11:51:18.209 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.CertShowVo]
- | +-BasicFetch [com.tnmaster.entities.CertShowVo.attId]
- | +-BasicFetch [com.tnmaster.entities.CertShowVo.auditStatus]
- | +-BasicFetch [com.tnmaster.entities.CertShowVo.coType]
- | +-BasicFetch [com.tnmaster.entities.CertShowVo.crd]
- | +-BasicFetch [com.tnmaster.entities.CertShowVo.createDatetime]
- | +-BasicFetch [com.tnmaster.entities.CertShowVo.createDeviceId]
- | +-BasicFetch [com.tnmaster.entities.CertShowVo.createIp]
- | +-EntityFetchJoinedImpl [com.tnmaster.entities.CertShowVo.createUser]
- | +-BasicFetch [com.tnmaster.entities.CertShowVo.createUserId]
- | +-BasicFetch [com.tnmaster.entities.CertShowVo.doType]
- | +-BasicFetch [com.tnmaster.entities.CertShowVo.doc]
- | +-BasicFetch [com.tnmaster.entities.CertShowVo.ldf]
- | +-BasicFetch [com.tnmaster.entities.CertShowVo.mrd]
- | +-BasicFetch [com.tnmaster.entities.CertShowVo.name]
- | +-BasicFetch [com.tnmaster.entities.CertShowVo.poType]
- | +-BasicFetch [com.tnmaster.entities.CertShowVo.remark]
- | +-BasicFetch [com.tnmaster.entities.CertShowVo.rlv]
- | +-BasicFetch [com.tnmaster.entities.CertShowVo.userId]
- | +-BasicFetch [com.tnmaster.entities.CertShowVo.userInfoId]
- | +-EntityFetchJoinedImpl [com.tnmaster.entities.CertShowVo.wmAtt]
- | +-BasicFetch [com.tnmaster.entities.CertShowVo.wmAttId]
- | \-BasicFetch [com.tnmaster.entities.CertShowVo.wmCode]
-
- 2024-02-18 11:51:18.209 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (csv1 : com.tnmaster.entities.CertShowVo) {
- primaryTableReference : cert as csv1_0
- TableGroupJoins {
- left join LazyTableGroup (cu1 : com.tnmaster.entities.CertShowVo.createUser) {
- primaryTableReference : usr as cu1_0
- }
- left join LazyTableGroup (wa1 : com.tnmaster.entities.CertShowVo.wmAtt) {
- primaryTableReference : attachment as wa1_0
- TableGroupJoins {
- left join LazyTableGroup (b1 : com.tnmaster.entities.CertShowVo.wmAtt.base) {
- primaryTableReference : attachment as b1_0
- }
- }
- }
- }
- }
- }
- }
-
- 2024-02-18 11:51:18.210 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: com.tnmaster.entities.CertShowVo
- 2024-02-18 11:51:18.210 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from cert where id=?
- 2024-02-18 11:51:18.210 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update cert set att_id=?,audit_status=?,co_type=?,crd=?,create_datetime=?,create_device_id=?,create_ip=?,create_user_id=?,do_type=?,doc=?,ldf=?,mrd=?,name=?,po_type=?,remark=?,rlv=?,user_id=?,user_info_id=?,wm_att_id=?,wm_code=? where id=? and rlv=?
- 2024-02-18 11:51:18.210 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from cert where id=? and rlv=?
- 2024-02-18 11:51:18.210 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : jra1_0
- 2024-02-18 11:51:18.210 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.JobRuleAddress)] with identifierForTableGroup [com.tnmaster.entities.JobRuleAddress] for NavigablePath [com.tnmaster.entities.JobRuleAddress]
- 2024-02-18 11:51:18.210 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.JobRuleAddress]
- | +-BasicFetch [com.tnmaster.entities.JobRuleAddress.addressCode]
- | +-BasicFetch [com.tnmaster.entities.JobRuleAddress.addressId]
- | +-BasicFetch [com.tnmaster.entities.JobRuleAddress.crd]
- | +-BasicFetch [com.tnmaster.entities.JobRuleAddress.jobId]
- | +-BasicFetch [com.tnmaster.entities.JobRuleAddress.ldf]
- | +-BasicFetch [com.tnmaster.entities.JobRuleAddress.mrd]
- | +-BasicFetch [com.tnmaster.entities.JobRuleAddress.rlv]
- | \-BasicFetch [com.tnmaster.entities.JobRuleAddress.ruleType]
-
- 2024-02-18 11:51:18.210 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (jra1 : com.tnmaster.entities.JobRuleAddress) {
- primaryTableReference : job_rule_address as jra1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.210 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `com.tnmaster.entities.JobRuleAddress` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.210 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : jra1_0
- 2024-02-18 11:51:18.211 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.JobRuleAddress)] with identifierForTableGroup [com.tnmaster.entities.JobRuleAddress] for NavigablePath [com.tnmaster.entities.JobRuleAddress]
- 2024-02-18 11:51:18.211 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.JobRuleAddress]
- | +-BasicFetch [com.tnmaster.entities.JobRuleAddress.addressCode]
- | +-BasicFetch [com.tnmaster.entities.JobRuleAddress.addressId]
- | +-BasicFetch [com.tnmaster.entities.JobRuleAddress.crd]
- | +-BasicFetch [com.tnmaster.entities.JobRuleAddress.jobId]
- | +-BasicFetch [com.tnmaster.entities.JobRuleAddress.ldf]
- | +-BasicFetch [com.tnmaster.entities.JobRuleAddress.mrd]
- | +-BasicFetch [com.tnmaster.entities.JobRuleAddress.rlv]
- | \-BasicFetch [com.tnmaster.entities.JobRuleAddress.ruleType]
-
- 2024-02-18 11:51:18.211 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (jra1 : com.tnmaster.entities.JobRuleAddress) {
- primaryTableReference : job_rule_address as jra1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.211 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: com.tnmaster.entities.JobRuleAddress
- 2024-02-18 11:51:18.211 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from job_rule_address where id=?
- 2024-02-18 11:51:18.211 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update job_rule_address set address_code=?,address_id=?,crd=?,job_id=?,ldf=?,mrd=?,rlv=?,rule_type=? where id=? and rlv=?
- 2024-02-18 11:51:18.211 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from job_rule_address where id=? and rlv=?
- 2024-02-18 11:51:18.211 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : rp1_0
- 2024-02-18 11:51:18.211 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.relationship.RolePermissions)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.relationship.RolePermissions] for NavigablePath [io.github.truenine.composeserver.rds.entities.relationship.RolePermissions]
- 2024-02-18 11:51:18.211 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.relationship.RolePermissions]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.relationship.RolePermissions.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.relationship.RolePermissions.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.relationship.RolePermissions.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.relationship.RolePermissions.permissionsId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.relationship.RolePermissions.rlv]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.relationship.RolePermissions.roleId]
-
- 2024-02-18 11:51:18.212 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (rp1 : io.github.truenine.composeserver.rds.entities.relationship.RolePermissions) {
- primaryTableReference : role_permissions as rp1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.212 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `io.github.truenine.composeserver.rds.entities.relationship.RolePermissions` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.212 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : rp1_0
- 2024-02-18 11:51:18.212 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.relationship.RolePermissions)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.relationship.RolePermissions] for NavigablePath [io.github.truenine.composeserver.rds.entities.relationship.RolePermissions]
- 2024-02-18 11:51:18.212 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.relationship.RolePermissions]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.relationship.RolePermissions.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.relationship.RolePermissions.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.relationship.RolePermissions.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.relationship.RolePermissions.permissionsId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.relationship.RolePermissions.rlv]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.relationship.RolePermissions.roleId]
-
- 2024-02-18 11:51:18.212 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (rp1 : io.github.truenine.composeserver.rds.entities.relationship.RolePermissions) {
- primaryTableReference : role_permissions as rp1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.212 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: io.github.truenine.composeserver.rds.entities.relationship.RolePermissions
- 2024-02-18 11:51:18.212 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from role_permissions where id=?
- 2024-02-18 11:51:18.212 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update role_permissions set crd=?,ldf=?,mrd=?,permissions_id=?,rlv=?,role_id=? where id=? and rlv=?
- 2024-02-18 11:51:18.212 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from role_permissions where id=? and rlv=?
- 2024-02-18 11:51:18.212 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : la1_0
- 2024-02-18 11:51:18.212 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.LinkedAttachment)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.LinkedAttachment] for NavigablePath [io.github.truenine.composeserver.rds.entities.LinkedAttachment]
- 2024-02-18 11:51:18.213 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@53d917df] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.LinkedAttachment.base] for NavigablePath [io.github.truenine.composeserver.rds.entities.LinkedAttachment.base]
- 2024-02-18 11:51:18.213 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : b1_0
- 2024-02-18 11:51:18.213 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.LinkedAttachment]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.LinkedAttachment.attType]
- | +-EntityFetchJoinedImpl [io.github.truenine.composeserver.rds.entities.LinkedAttachment.base]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.LinkedAttachment.baseUri]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.LinkedAttachment.baseUrl]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.LinkedAttachment.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.LinkedAttachment.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.LinkedAttachment.metaName]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.LinkedAttachment.mimeType]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.LinkedAttachment.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.LinkedAttachment.rlv]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.LinkedAttachment.saveName]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.LinkedAttachment.urlId]
-
- 2024-02-18 11:51:18.213 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (la1 : io.github.truenine.composeserver.rds.entities.LinkedAttachment) {
- primaryTableReference : attachment as la1_0
- TableGroupJoins {
- left join LazyTableGroup (b1 : io.github.truenine.composeserver.rds.entities.LinkedAttachment.base) {
- primaryTableReference : attachment as b1_0
- }
- }
- }
- }
- }
-
- 2024-02-18 11:51:18.213 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `io.github.truenine.composeserver.rds.entities.LinkedAttachment` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.213 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : la1_0
- 2024-02-18 11:51:18.214 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.LinkedAttachment)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.LinkedAttachment] for NavigablePath [io.github.truenine.composeserver.rds.entities.LinkedAttachment]
- 2024-02-18 11:51:18.214 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@7ffcd8df] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.LinkedAttachment.base] for NavigablePath [io.github.truenine.composeserver.rds.entities.LinkedAttachment.base]
- 2024-02-18 11:51:18.214 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : b1_0
- 2024-02-18 11:51:18.214 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.LinkedAttachment]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.LinkedAttachment.attType]
- | +-EntityFetchJoinedImpl [io.github.truenine.composeserver.rds.entities.LinkedAttachment.base]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.LinkedAttachment.baseUri]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.LinkedAttachment.baseUrl]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.LinkedAttachment.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.LinkedAttachment.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.LinkedAttachment.metaName]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.LinkedAttachment.mimeType]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.LinkedAttachment.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.LinkedAttachment.rlv]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.LinkedAttachment.saveName]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.LinkedAttachment.urlId]
-
- 2024-02-18 11:51:18.214 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (la1 : io.github.truenine.composeserver.rds.entities.LinkedAttachment) {
- primaryTableReference : attachment as la1_0
- TableGroupJoins {
- left join LazyTableGroup (b1 : io.github.truenine.composeserver.rds.entities.LinkedAttachment.base) {
- primaryTableReference : attachment as b1_0
- }
- }
- }
- }
- }
-
- 2024-02-18 11:51:18.215 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: io.github.truenine.composeserver.rds.entities.LinkedAttachment
- 2024-02-18 11:51:18.215 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from attachment where id=?
- 2024-02-18 11:51:18.215 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Insert (0): insert into attachment (crd,ldf,mrd,rlv,id) values (?,?,?,?,?)
- 2024-02-18 11:51:18.215 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update attachment set crd=?,ldf=?,mrd=?,rlv=? where id=? and rlv=?
- 2024-02-18 11:51:18.215 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from attachment where id=? and rlv=?
- 2024-02-18 11:51:18.215 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : duiv1_0
- 2024-02-18 11:51:18.215 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.DisUserInfoVo)] with identifierForTableGroup [com.tnmaster.entities.DisUserInfoVo] for NavigablePath [com.tnmaster.entities.DisUserInfoVo]
- 2024-02-18 11:51:18.215 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@1bd6c0de] with identifierForTableGroup [com.tnmaster.entities.DisUserInfoVo.account] for NavigablePath [com.tnmaster.entities.DisUserInfoVo.account]
- 2024-02-18 11:51:18.215 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : a1_0
- 2024-02-18 11:51:18.215 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@64eb6eda] with identifierForTableGroup [com.tnmaster.entities.DisUserInfoVo.dsInfo] for NavigablePath [com.tnmaster.entities.DisUserInfoVo.dsInfo]
- 2024-02-18 11:51:18.215 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : di1_0
- 2024-02-18 11:51:18.216 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.DisUserInfoVo]
- | +-EntityFetchJoinedImpl [com.tnmaster.entities.DisUserInfoVo.account]
- | +-BasicFetch [com.tnmaster.entities.DisUserInfoVo.addressCode]
- | +-BasicFetch [com.tnmaster.entities.DisUserInfoVo.addressDetailsId]
- | +-BasicFetch [com.tnmaster.entities.DisUserInfoVo.addressId]
- | +-BasicFetch [com.tnmaster.entities.DisUserInfoVo.avatarImgId]
- | +-BasicFetch [com.tnmaster.entities.DisUserInfoVo.birthday]
- | +-BasicFetch [com.tnmaster.entities.DisUserInfoVo.crd]
- | +-BasicFetch [com.tnmaster.entities.DisUserInfoVo.createUserId]
- | +-EntityFetchJoinedImpl [com.tnmaster.entities.DisUserInfoVo.dsInfo]
- | +-BasicFetch [com.tnmaster.entities.DisUserInfoVo.email]
- | +-BasicFetch [com.tnmaster.entities.DisUserInfoVo.firstName]
- | +-BasicFetch [com.tnmaster.entities.DisUserInfoVo.gender]
- | +-BasicFetch [com.tnmaster.entities.DisUserInfoVo.idCard]
- | +-BasicFetch [com.tnmaster.entities.DisUserInfoVo.lastName]
- | +-BasicFetch [com.tnmaster.entities.DisUserInfoVo.ldf]
- | +-BasicFetch [com.tnmaster.entities.DisUserInfoVo.mrd]
- | +-BasicFetch [com.tnmaster.entities.DisUserInfoVo.phone]
- | +-BasicFetch [com.tnmaster.entities.DisUserInfoVo.pri]
- | +-BasicFetch [com.tnmaster.entities.DisUserInfoVo.qqAccount]
- | +-BasicFetch [com.tnmaster.entities.DisUserInfoVo.qqOpenid]
- | +-BasicFetch [com.tnmaster.entities.DisUserInfoVo.rlv]
- | +-BasicFetch [com.tnmaster.entities.DisUserInfoVo.sparePhone]
- | +-BasicFetch [com.tnmaster.entities.DisUserInfoVo.userId]
- | +-BasicFetch [com.tnmaster.entities.DisUserInfoVo.wechatAccount]
- | +-BasicFetch [com.tnmaster.entities.DisUserInfoVo.wechatAuthid]
- | \-BasicFetch [com.tnmaster.entities.DisUserInfoVo.wechatOpenid]
-
- 2024-02-18 11:51:18.216 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (duiv1 : com.tnmaster.entities.DisUserInfoVo) {
- primaryTableReference : user_info as duiv1_0
- TableGroupJoins {
- left join LazyTableGroup (a1 : com.tnmaster.entities.DisUserInfoVo.account) {
- primaryTableReference : usr as a1_0
- }
- left join LazyTableGroup (di1 : com.tnmaster.entities.DisUserInfoVo.dsInfo) {
- primaryTableReference : dis_info as di1_0
- }
- }
- }
- }
- }
-
- 2024-02-18 11:51:18.216 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `com.tnmaster.entities.DisUserInfoVo` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.216 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : duiv1_0
- 2024-02-18 11:51:18.216 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.DisUserInfoVo)] with identifierForTableGroup [com.tnmaster.entities.DisUserInfoVo] for NavigablePath [com.tnmaster.entities.DisUserInfoVo]
- 2024-02-18 11:51:18.216 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@17020207] with identifierForTableGroup [com.tnmaster.entities.DisUserInfoVo.account] for NavigablePath [com.tnmaster.entities.DisUserInfoVo.account]
- 2024-02-18 11:51:18.216 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : a1_0
- 2024-02-18 11:51:18.217 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@2321c420] with identifierForTableGroup [com.tnmaster.entities.DisUserInfoVo.dsInfo] for NavigablePath [com.tnmaster.entities.DisUserInfoVo.dsInfo]
- 2024-02-18 11:51:18.217 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : di1_0
- 2024-02-18 11:51:18.217 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.DisUserInfoVo]
- | +-EntityFetchJoinedImpl [com.tnmaster.entities.DisUserInfoVo.account]
- | +-BasicFetch [com.tnmaster.entities.DisUserInfoVo.addressCode]
- | +-BasicFetch [com.tnmaster.entities.DisUserInfoVo.addressDetailsId]
- | +-BasicFetch [com.tnmaster.entities.DisUserInfoVo.addressId]
- | +-BasicFetch [com.tnmaster.entities.DisUserInfoVo.avatarImgId]
- | +-BasicFetch [com.tnmaster.entities.DisUserInfoVo.birthday]
- | +-BasicFetch [com.tnmaster.entities.DisUserInfoVo.crd]
- | +-BasicFetch [com.tnmaster.entities.DisUserInfoVo.createUserId]
- | +-EntityFetchJoinedImpl [com.tnmaster.entities.DisUserInfoVo.dsInfo]
- | +-BasicFetch [com.tnmaster.entities.DisUserInfoVo.email]
- | +-BasicFetch [com.tnmaster.entities.DisUserInfoVo.firstName]
- | +-BasicFetch [com.tnmaster.entities.DisUserInfoVo.gender]
- | +-BasicFetch [com.tnmaster.entities.DisUserInfoVo.idCard]
- | +-BasicFetch [com.tnmaster.entities.DisUserInfoVo.lastName]
- | +-BasicFetch [com.tnmaster.entities.DisUserInfoVo.ldf]
- | +-BasicFetch [com.tnmaster.entities.DisUserInfoVo.mrd]
- | +-BasicFetch [com.tnmaster.entities.DisUserInfoVo.phone]
- | +-BasicFetch [com.tnmaster.entities.DisUserInfoVo.pri]
- | +-BasicFetch [com.tnmaster.entities.DisUserInfoVo.qqAccount]
- | +-BasicFetch [com.tnmaster.entities.DisUserInfoVo.qqOpenid]
- | +-BasicFetch [com.tnmaster.entities.DisUserInfoVo.rlv]
- | +-BasicFetch [com.tnmaster.entities.DisUserInfoVo.sparePhone]
- | +-BasicFetch [com.tnmaster.entities.DisUserInfoVo.userId]
- | +-BasicFetch [com.tnmaster.entities.DisUserInfoVo.wechatAccount]
- | +-BasicFetch [com.tnmaster.entities.DisUserInfoVo.wechatAuthid]
- | \-BasicFetch [com.tnmaster.entities.DisUserInfoVo.wechatOpenid]
-
- 2024-02-18 11:51:18.217 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (duiv1 : com.tnmaster.entities.DisUserInfoVo) {
- primaryTableReference : user_info as duiv1_0
- TableGroupJoins {
- left join LazyTableGroup (a1 : com.tnmaster.entities.DisUserInfoVo.account) {
- primaryTableReference : usr as a1_0
- }
- left join LazyTableGroup (di1 : com.tnmaster.entities.DisUserInfoVo.dsInfo) {
- primaryTableReference : dis_info as di1_0
- }
- }
- }
- }
- }
-
- 2024-02-18 11:51:18.218 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: com.tnmaster.entities.DisUserInfoVo
- 2024-02-18 11:51:18.218 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from user_info where id=?
- 2024-02-18 11:51:18.218 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update user_info set address_code=?,address_details_id=?,address_id=?,avatar_img_id=?,birthday=?,crd=?,create_user_id=?,email=?,first_name=?,gender=?,id_card=?,last_name=?,ldf=?,mrd=?,phone=?,pri=?,qq_account=?,qq_openid=?,rlv=?,spare_phone=?,user_id=?,wechat_account=?,wechat_authid=?,wechat_openid=? where id=? and rlv=?
- 2024-02-18 11:51:18.218 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from user_info where id=? and rlv=?
- 2024-02-18 11:51:18.218 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : eu1_0
- 2024-02-18 11:51:18.218 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.EnterpriseUser)] with identifierForTableGroup [com.tnmaster.entities.EnterpriseUser] for NavigablePath [com.tnmaster.entities.EnterpriseUser]
- 2024-02-18 11:51:18.218 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.EnterpriseUser]
- | +-BasicFetch [com.tnmaster.entities.EnterpriseUser.crd]
- | +-BasicFetch [com.tnmaster.entities.EnterpriseUser.enterpriseId]
- | +-BasicFetch [com.tnmaster.entities.EnterpriseUser.ldf]
- | +-BasicFetch [com.tnmaster.entities.EnterpriseUser.mrd]
- | +-BasicFetch [com.tnmaster.entities.EnterpriseUser.rlv]
- | +-BasicFetch [com.tnmaster.entities.EnterpriseUser.title]
- | +-BasicFetch [com.tnmaster.entities.EnterpriseUser.userId]
- | \-BasicFetch [com.tnmaster.entities.EnterpriseUser.userInfoId]
-
- 2024-02-18 11:51:18.218 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (eu1 : com.tnmaster.entities.EnterpriseUser) {
- primaryTableReference : enterprise_user as eu1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.218 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `com.tnmaster.entities.EnterpriseUser` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.218 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : eu1_0
- 2024-02-18 11:51:18.218 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.EnterpriseUser)] with identifierForTableGroup [com.tnmaster.entities.EnterpriseUser] for NavigablePath [com.tnmaster.entities.EnterpriseUser]
- 2024-02-18 11:51:18.219 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.EnterpriseUser]
- | +-BasicFetch [com.tnmaster.entities.EnterpriseUser.crd]
- | +-BasicFetch [com.tnmaster.entities.EnterpriseUser.enterpriseId]
- | +-BasicFetch [com.tnmaster.entities.EnterpriseUser.ldf]
- | +-BasicFetch [com.tnmaster.entities.EnterpriseUser.mrd]
- | +-BasicFetch [com.tnmaster.entities.EnterpriseUser.rlv]
- | +-BasicFetch [com.tnmaster.entities.EnterpriseUser.title]
- | +-BasicFetch [com.tnmaster.entities.EnterpriseUser.userId]
- | \-BasicFetch [com.tnmaster.entities.EnterpriseUser.userInfoId]
-
- 2024-02-18 11:51:18.219 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (eu1 : com.tnmaster.entities.EnterpriseUser) {
- primaryTableReference : enterprise_user as eu1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.219 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: com.tnmaster.entities.EnterpriseUser
- 2024-02-18 11:51:18.219 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from enterprise_user where id=?
- 2024-02-18 11:51:18.219 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Insert (0): insert into enterprise_user (crd,enterprise_id,ldf,mrd,rlv,title,user_id,user_info_id,id) values (?,?,?,?,?,?,?,?,?)
- 2024-02-18 11:51:18.219 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update enterprise_user set crd=?,enterprise_id=?,ldf=?,mrd=?,rlv=?,title=?,user_id=?,user_info_id=? where id=? and rlv=?
- 2024-02-18 11:51:18.219 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from enterprise_user where id=? and rlv=?
- 2024-02-18 11:51:18.219 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : jrcr1_0
- 2024-02-18 11:51:18.219 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.JobRqCertRule)] with identifierForTableGroup [com.tnmaster.entities.JobRqCertRule] for NavigablePath [com.tnmaster.entities.JobRqCertRule]
- 2024-02-18 11:51:18.219 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.JobRqCertRule]
- | +-BasicFetch [com.tnmaster.entities.JobRqCertRule.crd]
- | +-BasicFetch [com.tnmaster.entities.JobRqCertRule.jobId]
- | +-BasicFetch [com.tnmaster.entities.JobRqCertRule.ldf]
- | +-BasicFetch [com.tnmaster.entities.JobRqCertRule.mrd]
- | +-BasicFetch [com.tnmaster.entities.JobRqCertRule.rlv]
- | \-BasicFetch [com.tnmaster.entities.JobRqCertRule.rqCertRuleId]
-
- 2024-02-18 11:51:18.219 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (jrcr1 : com.tnmaster.entities.JobRqCertRule) {
- primaryTableReference : job_rq_cert_rule as jrcr1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.219 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `com.tnmaster.entities.JobRqCertRule` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.219 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : jrcr1_0
- 2024-02-18 11:51:18.219 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.JobRqCertRule)] with identifierForTableGroup [com.tnmaster.entities.JobRqCertRule] for NavigablePath [com.tnmaster.entities.JobRqCertRule]
- 2024-02-18 11:51:18.220 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.JobRqCertRule]
- | +-BasicFetch [com.tnmaster.entities.JobRqCertRule.crd]
- | +-BasicFetch [com.tnmaster.entities.JobRqCertRule.jobId]
- | +-BasicFetch [com.tnmaster.entities.JobRqCertRule.ldf]
- | +-BasicFetch [com.tnmaster.entities.JobRqCertRule.mrd]
- | +-BasicFetch [com.tnmaster.entities.JobRqCertRule.rlv]
- | \-BasicFetch [com.tnmaster.entities.JobRqCertRule.rqCertRuleId]
-
- 2024-02-18 11:51:18.220 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (jrcr1 : com.tnmaster.entities.JobRqCertRule) {
- primaryTableReference : job_rq_cert_rule as jrcr1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.220 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: com.tnmaster.entities.JobRqCertRule
- 2024-02-18 11:51:18.220 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from job_rq_cert_rule where id=?
- 2024-02-18 11:51:18.220 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update job_rq_cert_rule set crd=?,job_id=?,ldf=?,mrd=?,rlv=?,rq_cert_rule_id=? where id=? and rlv=?
- 2024-02-18 11:51:18.220 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from job_rq_cert_rule where id=? and rlv=?
- 2024-02-18 11:51:18.220 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : d1_0
- 2024-02-18 11:51:18.220 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.Dept)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.Dept] for NavigablePath [io.github.truenine.composeserver.rds.entities.Dept]
- 2024-02-18 11:51:18.220 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.Dept]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Dept.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Dept.doc]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Dept.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Dept.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Dept.name]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Dept.nlv]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Dept.rln]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Dept.rlv]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Dept.rpi]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Dept.rrn]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.Dept.tgi]
-
- 2024-02-18 11:51:18.220 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (d1 : io.github.truenine.composeserver.rds.entities.Dept) {
- primaryTableReference : role_group as d1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.220 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `io.github.truenine.composeserver.rds.entities.Dept` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.220 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : d1_0
- 2024-02-18 11:51:18.220 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.Dept)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.Dept] for NavigablePath [io.github.truenine.composeserver.rds.entities.Dept]
- 2024-02-18 11:51:18.221 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.Dept]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Dept.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Dept.doc]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Dept.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Dept.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Dept.name]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Dept.nlv]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Dept.rln]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Dept.rlv]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Dept.rpi]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Dept.rrn]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.Dept.tgi]
-
- 2024-02-18 11:51:18.221 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (d1 : io.github.truenine.composeserver.rds.entities.Dept) {
- primaryTableReference : role_group as d1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.221 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: io.github.truenine.composeserver.rds.entities.Dept
- 2024-02-18 11:51:18.221 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from role_group where id=?
- 2024-02-18 11:51:18.221 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update role_group set crd=?,doc=?,ldf=?,mrd=?,name=?,nlv=?,rln=?,rlv=?,rpi=?,rrn=?,tgi=? where id=? and rlv=?
- 2024-02-18 11:51:18.221 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from role_group where id=? and rlv=?
- 2024-02-18 11:51:18.221 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : ei1_0
- 2024-02-18 11:51:18.221 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.EnterpriseIndustry)] with identifierForTableGroup [com.tnmaster.entities.EnterpriseIndustry] for NavigablePath [com.tnmaster.entities.EnterpriseIndustry]
- 2024-02-18 11:51:18.221 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.EnterpriseIndustry]
- | +-BasicFetch [com.tnmaster.entities.EnterpriseIndustry.crd]
- | +-BasicFetch [com.tnmaster.entities.EnterpriseIndustry.enterpriseId]
- | +-BasicFetch [com.tnmaster.entities.EnterpriseIndustry.industryId]
- | +-BasicFetch [com.tnmaster.entities.EnterpriseIndustry.ldf]
- | +-BasicFetch [com.tnmaster.entities.EnterpriseIndustry.mrd]
- | \-BasicFetch [com.tnmaster.entities.EnterpriseIndustry.rlv]
-
- 2024-02-18 11:51:18.221 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (ei1 : com.tnmaster.entities.EnterpriseIndustry) {
- primaryTableReference : enterprise_industry as ei1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.222 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `com.tnmaster.entities.EnterpriseIndustry` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.222 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : ei1_0
- 2024-02-18 11:51:18.222 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.EnterpriseIndustry)] with identifierForTableGroup [com.tnmaster.entities.EnterpriseIndustry] for NavigablePath [com.tnmaster.entities.EnterpriseIndustry]
- 2024-02-18 11:51:18.222 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.EnterpriseIndustry]
- | +-BasicFetch [com.tnmaster.entities.EnterpriseIndustry.crd]
- | +-BasicFetch [com.tnmaster.entities.EnterpriseIndustry.enterpriseId]
- | +-BasicFetch [com.tnmaster.entities.EnterpriseIndustry.industryId]
- | +-BasicFetch [com.tnmaster.entities.EnterpriseIndustry.ldf]
- | +-BasicFetch [com.tnmaster.entities.EnterpriseIndustry.mrd]
- | \-BasicFetch [com.tnmaster.entities.EnterpriseIndustry.rlv]
-
- 2024-02-18 11:51:18.222 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (ei1 : com.tnmaster.entities.EnterpriseIndustry) {
- primaryTableReference : enterprise_industry as ei1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.222 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: com.tnmaster.entities.EnterpriseIndustry
- 2024-02-18 11:51:18.222 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from enterprise_industry where id=?
- 2024-02-18 11:51:18.222 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update enterprise_industry set crd=?,enterprise_id=?,industry_id=?,ldf=?,mrd=?,rlv=? where id=? and rlv=?
- 2024-02-18 11:51:18.222 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from enterprise_industry where id=? and rlv=?
- 2024-02-18 11:51:18.222 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : jt1_0
- 2024-02-18 11:51:18.222 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.JobTag)] with identifierForTableGroup [com.tnmaster.entities.JobTag] for NavigablePath [com.tnmaster.entities.JobTag]
- 2024-02-18 11:51:18.222 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.JobTag]
- | +-BasicFetch [com.tnmaster.entities.JobTag.crd]
- | +-BasicFetch [com.tnmaster.entities.JobTag.doc]
- | +-BasicFetch [com.tnmaster.entities.JobTag.ldf]
- | +-BasicFetch [com.tnmaster.entities.JobTag.mrd]
- | +-BasicFetch [com.tnmaster.entities.JobTag.name]
- | \-BasicFetch [com.tnmaster.entities.JobTag.rlv]
-
- 2024-02-18 11:51:18.222 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (jt1 : com.tnmaster.entities.JobTag) {
- primaryTableReference : job_tag as jt1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.223 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `com.tnmaster.entities.JobTag` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.223 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : jt1_0
- 2024-02-18 11:51:18.223 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.JobTag)] with identifierForTableGroup [com.tnmaster.entities.JobTag] for NavigablePath [com.tnmaster.entities.JobTag]
- 2024-02-18 11:51:18.223 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.JobTag]
- | +-BasicFetch [com.tnmaster.entities.JobTag.crd]
- | +-BasicFetch [com.tnmaster.entities.JobTag.doc]
- | +-BasicFetch [com.tnmaster.entities.JobTag.ldf]
- | +-BasicFetch [com.tnmaster.entities.JobTag.mrd]
- | +-BasicFetch [com.tnmaster.entities.JobTag.name]
- | \-BasicFetch [com.tnmaster.entities.JobTag.rlv]
-
- 2024-02-18 11:51:18.223 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (jt1 : com.tnmaster.entities.JobTag) {
- primaryTableReference : job_tag as jt1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.223 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: com.tnmaster.entities.JobTag
- 2024-02-18 11:51:18.223 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from job_tag where id=?
- 2024-02-18 11:51:18.223 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update job_tag set crd=?,doc=?,ldf=?,mrd=?,name=?,rlv=? where id=? and rlv=?
- 2024-02-18 11:51:18.223 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from job_tag where id=? and rlv=?
- 2024-02-18 11:51:18.223 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : ud1_0
- 2024-02-18 11:51:18.223 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.UserDept)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.UserDept] for NavigablePath [io.github.truenine.composeserver.rds.entities.UserDept]
- 2024-02-18 11:51:18.223 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.UserDept]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserDept.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserDept.deptId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserDept.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserDept.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserDept.rlv]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.UserDept.userId]
-
- 2024-02-18 11:51:18.224 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (ud1 : io.github.truenine.composeserver.rds.entities.UserDept) {
- primaryTableReference : user_dept as ud1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.224 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `io.github.truenine.composeserver.rds.entities.UserDept` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.224 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : ud1_0
- 2024-02-18 11:51:18.224 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.UserDept)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.UserDept] for NavigablePath [io.github.truenine.composeserver.rds.entities.UserDept]
- 2024-02-18 11:51:18.224 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.UserDept]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserDept.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserDept.deptId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserDept.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserDept.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserDept.rlv]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.UserDept.userId]
-
- 2024-02-18 11:51:18.224 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (ud1 : io.github.truenine.composeserver.rds.entities.UserDept) {
- primaryTableReference : user_dept as ud1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.224 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: io.github.truenine.composeserver.rds.entities.UserDept
- 2024-02-18 11:51:18.224 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from user_dept where id=?
- 2024-02-18 11:51:18.224 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update user_dept set crd=?,dept_id=?,ldf=?,mrd=?,rlv=?,user_id=? where id=? and rlv=?
- 2024-02-18 11:51:18.224 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from user_dept where id=? and rlv=?
- 2024-02-18 11:51:18.224 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : bc1_0
- 2024-02-18 11:51:18.224 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.cert.BankCard)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.cert.BankCard] for NavigablePath [io.github.truenine.composeserver.rds.entities.cert.BankCard]
- 2024-02-18 11:51:18.225 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.cert.BankCard]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BankCard.bankGroup]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BankCard.bankType]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BankCard.code]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BankCard.country]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BankCard.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BankCard.issueAddressDetails]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BankCard.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BankCard.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BankCard.nlv]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BankCard.reservePhone]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BankCard.rln]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BankCard.rlv]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BankCard.rpi]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BankCard.rrn]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BankCard.tgi]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BankCard.userId]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BankCard.userInfoId]
-
- 2024-02-18 11:51:18.225 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (bc1 : io.github.truenine.composeserver.rds.entities.cert.BankCard) {
- primaryTableReference : bank_card as bc1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.225 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `io.github.truenine.composeserver.rds.entities.cert.BankCard` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.225 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : bc1_0
- 2024-02-18 11:51:18.225 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.cert.BankCard)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.cert.BankCard] for NavigablePath [io.github.truenine.composeserver.rds.entities.cert.BankCard]
- 2024-02-18 11:51:18.225 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.cert.BankCard]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BankCard.bankGroup]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BankCard.bankType]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BankCard.code]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BankCard.country]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BankCard.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BankCard.issueAddressDetails]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BankCard.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BankCard.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BankCard.nlv]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BankCard.reservePhone]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BankCard.rln]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BankCard.rlv]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BankCard.rpi]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BankCard.rrn]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BankCard.tgi]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BankCard.userId]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BankCard.userInfoId]
-
- 2024-02-18 11:51:18.226 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (bc1 : io.github.truenine.composeserver.rds.entities.cert.BankCard) {
- primaryTableReference : bank_card as bc1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.226 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: io.github.truenine.composeserver.rds.entities.cert.BankCard
- 2024-02-18 11:51:18.226 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from bank_card where id=?
- 2024-02-18 11:51:18.226 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update bank_card set bank_group=?,bank_type=?,code=?,country=?,crd=?,issue_address_details=?,ldf=?,mrd=?,nlv=?,reserve_phone=?,rln=?,rlv=?,rpi=?,rrn=?,tgi=?,user_id=?,user_info_id=? where id=? and rlv=?
- 2024-02-18 11:51:18.226 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from bank_card where id=? and rlv=?
- 2024-02-18 11:51:18.226 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : ep1_0
- 2024-02-18 11:51:18.226 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.EnterprisePhone)] with identifierForTableGroup [com.tnmaster.entities.EnterprisePhone] for NavigablePath [com.tnmaster.entities.EnterprisePhone]
- 2024-02-18 11:51:18.226 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.EnterprisePhone]
- | +-BasicFetch [com.tnmaster.entities.EnterprisePhone.crd]
- | +-BasicFetch [com.tnmaster.entities.EnterprisePhone.enterpriseId]
- | +-BasicFetch [com.tnmaster.entities.EnterprisePhone.ldf]
- | +-BasicFetch [com.tnmaster.entities.EnterprisePhone.mrd]
- | +-BasicFetch [com.tnmaster.entities.EnterprisePhone.phone]
- | +-BasicFetch [com.tnmaster.entities.EnterprisePhone.phoneType]
- | \-BasicFetch [com.tnmaster.entities.EnterprisePhone.rlv]
-
- 2024-02-18 11:51:18.226 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (ep1 : com.tnmaster.entities.EnterprisePhone) {
- primaryTableReference : enterprise_phone as ep1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.226 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `com.tnmaster.entities.EnterprisePhone` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.226 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : ep1_0
- 2024-02-18 11:51:18.226 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.EnterprisePhone)] with identifierForTableGroup [com.tnmaster.entities.EnterprisePhone] for NavigablePath [com.tnmaster.entities.EnterprisePhone]
- 2024-02-18 11:51:18.227 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.EnterprisePhone]
- | +-BasicFetch [com.tnmaster.entities.EnterprisePhone.crd]
- | +-BasicFetch [com.tnmaster.entities.EnterprisePhone.enterpriseId]
- | +-BasicFetch [com.tnmaster.entities.EnterprisePhone.ldf]
- | +-BasicFetch [com.tnmaster.entities.EnterprisePhone.mrd]
- | +-BasicFetch [com.tnmaster.entities.EnterprisePhone.phone]
- | +-BasicFetch [com.tnmaster.entities.EnterprisePhone.phoneType]
- | \-BasicFetch [com.tnmaster.entities.EnterprisePhone.rlv]
-
- 2024-02-18 11:51:18.227 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (ep1 : com.tnmaster.entities.EnterprisePhone) {
- primaryTableReference : enterprise_phone as ep1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.227 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: com.tnmaster.entities.EnterprisePhone
- 2024-02-18 11:51:18.227 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from enterprise_phone where id=?
- 2024-02-18 11:51:18.227 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update enterprise_phone set crd=?,enterprise_id=?,ldf=?,mrd=?,phone=?,phone_type=?,rlv=? where id=? and rlv=?
- 2024-02-18 11:51:18.227 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from enterprise_phone where id=? and rlv=?
- 2024-02-18 11:51:18.227 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : rs1_0
- 2024-02-18 11:51:18.227 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.RegShare)] with identifierForTableGroup [com.tnmaster.entities.RegShare] for NavigablePath [com.tnmaster.entities.RegShare]
- 2024-02-18 11:51:18.227 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.RegShare]
- | +-BasicFetch [com.tnmaster.entities.RegShare.crd]
- | +-BasicFetch [com.tnmaster.entities.RegShare.ldf]
- | +-BasicFetch [com.tnmaster.entities.RegShare.mrd]
- | +-BasicFetch [com.tnmaster.entities.RegShare.regDatetime]
- | +-BasicFetch [com.tnmaster.entities.RegShare.regStatus]
- | +-BasicFetch [com.tnmaster.entities.RegShare.rlv]
- | +-BasicFetch [com.tnmaster.entities.RegShare.shareCode]
- | +-BasicFetch [com.tnmaster.entities.RegShare.shareDatetime]
- | +-BasicFetch [com.tnmaster.entities.RegShare.shareEndDatetime]
- | +-BasicFetch [com.tnmaster.entities.RegShare.shareEnterpriseId]
- | \-BasicFetch [com.tnmaster.entities.RegShare.shareUserId]
-
- 2024-02-18 11:51:18.227 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (rs1 : com.tnmaster.entities.RegShare) {
- primaryTableReference : reg_share as rs1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.228 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `com.tnmaster.entities.RegShare` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.228 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : rs1_0
- 2024-02-18 11:51:18.228 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.RegShare)] with identifierForTableGroup [com.tnmaster.entities.RegShare] for NavigablePath [com.tnmaster.entities.RegShare]
- 2024-02-18 11:51:18.228 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.RegShare]
- | +-BasicFetch [com.tnmaster.entities.RegShare.crd]
- | +-BasicFetch [com.tnmaster.entities.RegShare.ldf]
- | +-BasicFetch [com.tnmaster.entities.RegShare.mrd]
- | +-BasicFetch [com.tnmaster.entities.RegShare.regDatetime]
- | +-BasicFetch [com.tnmaster.entities.RegShare.regStatus]
- | +-BasicFetch [com.tnmaster.entities.RegShare.rlv]
- | +-BasicFetch [com.tnmaster.entities.RegShare.shareCode]
- | +-BasicFetch [com.tnmaster.entities.RegShare.shareDatetime]
- | +-BasicFetch [com.tnmaster.entities.RegShare.shareEndDatetime]
- | +-BasicFetch [com.tnmaster.entities.RegShare.shareEnterpriseId]
- | \-BasicFetch [com.tnmaster.entities.RegShare.shareUserId]
-
- 2024-02-18 11:51:18.228 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (rs1 : com.tnmaster.entities.RegShare) {
- primaryTableReference : reg_share as rs1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.228 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: com.tnmaster.entities.RegShare
- 2024-02-18 11:51:18.228 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from reg_share where id=?
- 2024-02-18 11:51:18.228 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update reg_share set crd=?,ldf=?,mrd=?,reg_datetime=?,reg_status=?,rlv=?,share_code=?,share_datetime=?,share_end_datetime=?,share_enterprise_id=?,share_user_id=? where id=? and rlv=?
- 2024-02-18 11:51:18.228 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from reg_share where id=? and rlv=?
- 2024-02-18 11:51:18.228 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : e1_0
- 2024-02-18 11:51:18.228 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.Enterprise)] with identifierForTableGroup [com.tnmaster.entities.Enterprise] for NavigablePath [com.tnmaster.entities.Enterprise]
- 2024-02-18 11:51:18.229 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.Enterprise]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.addressCode]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.addressDetailsId]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.capitalCurrency]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.crd]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.createDatetime]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.creditCodeV1]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.dataScore]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.doc]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.employeeCount]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.enterpriseType]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.industryId]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.ldf]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.leaderName]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.leaderUserId]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.leaderUserInfoId]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.logoAttachmentId]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.mrd]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.nlv]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.regCapital]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.regDate]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.rln]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.rlv]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.rpi]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.rrn]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.status]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.tgi]
- | \-BasicFetch [com.tnmaster.entities.Enterprise.title]
-
- 2024-02-18 11:51:18.229 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (e1 : com.tnmaster.entities.Enterprise) {
- primaryTableReference : enterprise as e1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.229 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `com.tnmaster.entities.Enterprise` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.229 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : e1_0
- 2024-02-18 11:51:18.229 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.Enterprise)] with identifierForTableGroup [com.tnmaster.entities.Enterprise] for NavigablePath [com.tnmaster.entities.Enterprise]
- 2024-02-18 11:51:18.230 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.Enterprise]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.addressCode]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.addressDetailsId]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.capitalCurrency]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.crd]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.createDatetime]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.creditCodeV1]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.dataScore]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.doc]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.employeeCount]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.enterpriseType]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.industryId]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.ldf]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.leaderName]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.leaderUserId]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.leaderUserInfoId]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.logoAttachmentId]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.mrd]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.nlv]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.regCapital]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.regDate]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.rln]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.rlv]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.rpi]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.rrn]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.status]
- | +-BasicFetch [com.tnmaster.entities.Enterprise.tgi]
- | \-BasicFetch [com.tnmaster.entities.Enterprise.title]
-
- 2024-02-18 11:51:18.230 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (e1 : com.tnmaster.entities.Enterprise) {
- primaryTableReference : enterprise as e1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.230 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: com.tnmaster.entities.Enterprise
- 2024-02-18 11:51:18.230 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from enterprise where id=?
- 2024-02-18 11:51:18.230 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update enterprise set address_code=?,address_details_id=?,capital_currency=?,crd=?,create_datetime=?,credit_code_v1=?,data_score=?,doc=?,employee_count=?,enterprise_type=?,industry_id=?,ldf=?,leader_name=?,leader_user_id=?,leader_user_info_id=?,logo_attachment_id=?,mrd=?,nlv=?,reg_capital=?,reg_date=?,rln=?,rlv=?,rpi=?,rrn=?,status=?,tgi=?,title=? where id=? and rlv=?
- 2024-02-18 11:51:18.230 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from enterprise where id=? and rlv=?
- 2024-02-18 11:51:18.230 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : i1_0
- 2024-02-18 11:51:18.230 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.cert.Idcard2)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.cert.Idcard2] for NavigablePath [io.github.truenine.composeserver.rds.entities.cert.Idcard2]
- 2024-02-18 11:51:18.230 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.cert.Idcard2]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Idcard2.addressDetailsId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Idcard2.birthday]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Idcard2.code]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Idcard2.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Idcard2.ethnicGroup]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Idcard2.expireDate]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Idcard2.gender]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Idcard2.issueOrgan]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Idcard2.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Idcard2.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Idcard2.name]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Idcard2.rlv]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Idcard2.userId]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Idcard2.userInfoId]
-
- 2024-02-18 11:51:18.230 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (i1 : io.github.truenine.composeserver.rds.entities.cert.Idcard2) {
- primaryTableReference : idcard_2 as i1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.231 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `io.github.truenine.composeserver.rds.entities.cert.Idcard2` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.231 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : i1_0
- 2024-02-18 11:51:18.231 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.cert.Idcard2)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.cert.Idcard2] for NavigablePath [io.github.truenine.composeserver.rds.entities.cert.Idcard2]
- 2024-02-18 11:51:18.231 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.cert.Idcard2]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Idcard2.addressDetailsId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Idcard2.birthday]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Idcard2.code]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Idcard2.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Idcard2.ethnicGroup]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Idcard2.expireDate]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Idcard2.gender]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Idcard2.issueOrgan]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Idcard2.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Idcard2.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Idcard2.name]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Idcard2.rlv]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Idcard2.userId]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Idcard2.userInfoId]
-
- 2024-02-18 11:51:18.231 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (i1 : io.github.truenine.composeserver.rds.entities.cert.Idcard2) {
- primaryTableReference : idcard_2 as i1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.231 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: io.github.truenine.composeserver.rds.entities.cert.Idcard2
- 2024-02-18 11:51:18.231 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from idcard_2 where id=?
- 2024-02-18 11:51:18.231 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update idcard_2 set address_details_id=?,birthday=?,code=?,crd=?,ethnic_group=?,expire_date=?,gender=?,issue_organ=?,ldf=?,mrd=?,name=?,rlv=?,user_id=?,user_info_id=? where id=? and rlv=?
- 2024-02-18 11:51:18.231 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from idcard_2 where id=? and rlv=?
- 2024-02-18 11:51:18.231 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : ad1_0
- 2024-02-18 11:51:18.231 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.AddressDetails)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.AddressDetails] for NavigablePath [io.github.truenine.composeserver.rds.entities.AddressDetails]
- 2024-02-18 11:51:18.231 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.AddressDetails]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.AddressDetails.addressCode]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.AddressDetails.addressDetails]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.AddressDetails.addressId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.AddressDetails.center]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.AddressDetails.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.AddressDetails.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.AddressDetails.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.AddressDetails.name]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.AddressDetails.phone]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.AddressDetails.rlv]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.AddressDetails.userId]
-
- 2024-02-18 11:51:18.232 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (ad1 : io.github.truenine.composeserver.rds.entities.AddressDetails) {
- primaryTableReference : address_details as ad1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.232 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `io.github.truenine.composeserver.rds.entities.AddressDetails` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.232 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : ad1_0
- 2024-02-18 11:51:18.232 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.AddressDetails)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.AddressDetails] for NavigablePath [io.github.truenine.composeserver.rds.entities.AddressDetails]
- 2024-02-18 11:51:18.232 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.AddressDetails]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.AddressDetails.addressCode]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.AddressDetails.addressDetails]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.AddressDetails.addressId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.AddressDetails.center]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.AddressDetails.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.AddressDetails.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.AddressDetails.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.AddressDetails.name]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.AddressDetails.phone]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.AddressDetails.rlv]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.AddressDetails.userId]
-
- 2024-02-18 11:51:18.232 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (ad1 : io.github.truenine.composeserver.rds.entities.AddressDetails) {
- primaryTableReference : address_details as ad1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.232 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: io.github.truenine.composeserver.rds.entities.AddressDetails
- 2024-02-18 11:51:18.232 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from address_details where id=?
- 2024-02-18 11:51:18.232 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update address_details set address_code=?,address_details=?,address_id=?,center=?,crd=?,ldf=?,mrd=?,name=?,phone=?,rlv=?,user_id=? where id=? and rlv=?
- 2024-02-18 11:51:18.232 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from address_details where id=? and rlv=?
- 2024-02-18 11:51:18.232 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : jjt1_0
- 2024-02-18 11:51:18.232 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.JobJobTag)] with identifierForTableGroup [com.tnmaster.entities.JobJobTag] for NavigablePath [com.tnmaster.entities.JobJobTag]
- 2024-02-18 11:51:18.233 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.JobJobTag]
- | +-BasicFetch [com.tnmaster.entities.JobJobTag.crd]
- | +-BasicFetch [com.tnmaster.entities.JobJobTag.jobId]
- | +-BasicFetch [com.tnmaster.entities.JobJobTag.jobTagId]
- | +-BasicFetch [com.tnmaster.entities.JobJobTag.ldf]
- | +-BasicFetch [com.tnmaster.entities.JobJobTag.mrd]
- | \-BasicFetch [com.tnmaster.entities.JobJobTag.rlv]
-
- 2024-02-18 11:51:18.233 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (jjt1 : com.tnmaster.entities.JobJobTag) {
- primaryTableReference : job_job_tag as jjt1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.233 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `com.tnmaster.entities.JobJobTag` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.233 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : jjt1_0
- 2024-02-18 11:51:18.233 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.JobJobTag)] with identifierForTableGroup [com.tnmaster.entities.JobJobTag] for NavigablePath [com.tnmaster.entities.JobJobTag]
- 2024-02-18 11:51:18.233 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.JobJobTag]
- | +-BasicFetch [com.tnmaster.entities.JobJobTag.crd]
- | +-BasicFetch [com.tnmaster.entities.JobJobTag.jobId]
- | +-BasicFetch [com.tnmaster.entities.JobJobTag.jobTagId]
- | +-BasicFetch [com.tnmaster.entities.JobJobTag.ldf]
- | +-BasicFetch [com.tnmaster.entities.JobJobTag.mrd]
- | \-BasicFetch [com.tnmaster.entities.JobJobTag.rlv]
-
- 2024-02-18 11:51:18.233 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (jjt1 : com.tnmaster.entities.JobJobTag) {
- primaryTableReference : job_job_tag as jjt1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.233 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: com.tnmaster.entities.JobJobTag
- 2024-02-18 11:51:18.233 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from job_job_tag where id=?
- 2024-02-18 11:51:18.233 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update job_job_tag set crd=?,job_id=?,job_tag_id=?,ldf=?,mrd=?,rlv=? where id=? and rlv=?
- 2024-02-18 11:51:18.233 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from job_job_tag where id=? and rlv=?
- 2024-02-18 11:51:18.233 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : ui1_0
- 2024-02-18 11:51:18.233 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.UserInfo)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.UserInfo] for NavigablePath [io.github.truenine.composeserver.rds.entities.UserInfo]
- 2024-02-18 11:51:18.234 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.UserInfo]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserInfo.addressCode]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserInfo.addressDetailsId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserInfo.addressId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserInfo.avatarImgId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserInfo.birthday]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserInfo.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserInfo.createUserId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserInfo.email]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserInfo.firstName]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserInfo.gender]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserInfo.idCard]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserInfo.lastName]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserInfo.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserInfo.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserInfo.phone]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserInfo.pri]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserInfo.qqAccount]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserInfo.qqOpenid]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserInfo.rlv]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserInfo.sparePhone]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserInfo.userId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserInfo.wechatAccount]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserInfo.wechatAuthid]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.UserInfo.wechatOpenid]
-
- 2024-02-18 11:51:18.234 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (ui1 : io.github.truenine.composeserver.rds.entities.UserInfo) {
- primaryTableReference : user_info as ui1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.234 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `io.github.truenine.composeserver.rds.entities.UserInfo` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.234 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : ui1_0
- 2024-02-18 11:51:18.234 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.UserInfo)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.UserInfo] for NavigablePath [io.github.truenine.composeserver.rds.entities.UserInfo]
- 2024-02-18 11:51:18.235 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.UserInfo]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserInfo.addressCode]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserInfo.addressDetailsId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserInfo.addressId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserInfo.avatarImgId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserInfo.birthday]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserInfo.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserInfo.createUserId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserInfo.email]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserInfo.firstName]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserInfo.gender]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserInfo.idCard]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserInfo.lastName]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserInfo.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserInfo.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserInfo.phone]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserInfo.pri]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserInfo.qqAccount]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserInfo.qqOpenid]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserInfo.rlv]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserInfo.sparePhone]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserInfo.userId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserInfo.wechatAccount]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.UserInfo.wechatAuthid]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.UserInfo.wechatOpenid]
-
- 2024-02-18 11:51:18.235 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (ui1 : io.github.truenine.composeserver.rds.entities.UserInfo) {
- primaryTableReference : user_info as ui1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.235 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: io.github.truenine.composeserver.rds.entities.UserInfo
- 2024-02-18 11:51:18.235 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from user_info where id=?
- 2024-02-18 11:51:18.235 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update user_info set address_code=?,address_details_id=?,address_id=?,avatar_img_id=?,birthday=?,crd=?,create_user_id=?,email=?,first_name=?,gender=?,id_card=?,last_name=?,ldf=?,mrd=?,phone=?,pri=?,qq_account=?,qq_openid=?,rlv=?,spare_phone=?,user_id=?,wechat_account=?,wechat_authid=?,wechat_openid=? where id=? and rlv=?
- 2024-02-18 11:51:18.235 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from user_info where id=? and rlv=?
- 2024-02-18 11:51:18.235 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : blt1_0
- 2024-02-18 11:51:18.235 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.BlackListTag)] with identifierForTableGroup [com.tnmaster.entities.BlackListTag] for NavigablePath [com.tnmaster.entities.BlackListTag]
- 2024-02-18 11:51:18.235 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.BlackListTag]
- | +-BasicFetch [com.tnmaster.entities.BlackListTag.crd]
- | +-BasicFetch [com.tnmaster.entities.BlackListTag.doc]
- | +-BasicFetch [com.tnmaster.entities.BlackListTag.ldf]
- | +-BasicFetch [com.tnmaster.entities.BlackListTag.mrd]
- | +-BasicFetch [com.tnmaster.entities.BlackListTag.rlv]
- | \-BasicFetch [com.tnmaster.entities.BlackListTag.title]
-
- 2024-02-18 11:51:18.235 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (blt1 : com.tnmaster.entities.BlackListTag) {
- primaryTableReference : black_list_tag as blt1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.236 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `com.tnmaster.entities.BlackListTag` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.236 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : blt1_0
- 2024-02-18 11:51:18.236 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.BlackListTag)] with identifierForTableGroup [com.tnmaster.entities.BlackListTag] for NavigablePath [com.tnmaster.entities.BlackListTag]
- 2024-02-18 11:51:18.236 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.BlackListTag]
- | +-BasicFetch [com.tnmaster.entities.BlackListTag.crd]
- | +-BasicFetch [com.tnmaster.entities.BlackListTag.doc]
- | +-BasicFetch [com.tnmaster.entities.BlackListTag.ldf]
- | +-BasicFetch [com.tnmaster.entities.BlackListTag.mrd]
- | +-BasicFetch [com.tnmaster.entities.BlackListTag.rlv]
- | \-BasicFetch [com.tnmaster.entities.BlackListTag.title]
-
- 2024-02-18 11:51:18.236 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (blt1 : com.tnmaster.entities.BlackListTag) {
- primaryTableReference : black_list_tag as blt1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.236 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: com.tnmaster.entities.BlackListTag
- 2024-02-18 11:51:18.236 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from black_list_tag where id=?
- 2024-02-18 11:51:18.236 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update black_list_tag set crd=?,doc=?,ldf=?,mrd=?,rlv=?,title=? where id=? and rlv=?
- 2024-02-18 11:51:18.236 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from black_list_tag where id=? and rlv=?
- 2024-02-18 11:51:18.236 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : dav1_0
- 2024-02-18 11:51:18.236 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.DisAccountVo)] with identifierForTableGroup [com.tnmaster.entities.DisAccountVo] for NavigablePath [com.tnmaster.entities.DisAccountVo]
- 2024-02-18 11:51:18.237 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : di1_0
- 2024-02-18 11:51:18.244 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [CollectionTableGroup(com.tnmaster.entities.DisAccountVo.dsInfos)] with identifierForTableGroup [com.tnmaster.entities.DisAccountVo.dsInfos] for NavigablePath [com.tnmaster.entities.DisAccountVo.dsInfos]
- 2024-02-18 11:51:18.248 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@71d0240d] with identifierForTableGroup [com.tnmaster.entities.DisAccountVo.dsInfos.{element}] for NavigablePath [com.tnmaster.entities.DisAccountVo.dsInfos.{element}]
- 2024-02-18 11:51:18.248 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : di1_1
- 2024-02-18 11:51:18.251 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.DisAccountVo]
- | +-BasicFetch [com.tnmaster.entities.DisAccountVo.account]
- | +-BasicFetch [com.tnmaster.entities.DisAccountVo.banTime]
- | +-BasicFetch [com.tnmaster.entities.DisAccountVo.crd]
- | +-BasicFetch [com.tnmaster.entities.DisAccountVo.createUserId]
- | +-BasicFetch [com.tnmaster.entities.DisAccountVo.doc]
- | +-EagerCollectionFetch [com.tnmaster.entities.DisAccountVo.dsInfos]
- | | \-EntityFetchJoinedImpl [com.tnmaster.entities.DisAccountVo.dsInfos.{element}]
- | +-BasicFetch [com.tnmaster.entities.DisAccountVo.lastLoginTime]
- | +-BasicFetch [com.tnmaster.entities.DisAccountVo.ldf]
- | +-BasicFetch [com.tnmaster.entities.DisAccountVo.mrd]
- | +-BasicFetch [com.tnmaster.entities.DisAccountVo.nickName]
- | +-BasicFetch [com.tnmaster.entities.DisAccountVo.pwdEnc]
- | +-BasicFetch [com.tnmaster.entities.DisAccountVo.rlv]
- | \-DelayedCollectionFetch [com.tnmaster.entities.DisAccountVo.userInfos]
-
- 2024-02-18 11:51:18.252 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (dav1 : com.tnmaster.entities.DisAccountVo) {
- primaryTableReference : usr as dav1_0
- TableGroupJoins {
- left join CollectionTableGroup (di1 : com.tnmaster.entities.DisAccountVo.dsInfos) {
- primaryTableReference : dis_info as di1_0
- TableGroupJoins {
- left join LazyTableGroup (di1 : com.tnmaster.entities.DisAccountVo.dsInfos.{element}) {
- primaryTableReference : dis_info as di1_1
- }
- }
- }
- }
- }
- }
- }
-
- 2024-02-18 11:51:18.252 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `com.tnmaster.entities.DisAccountVo` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.252 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : dav1_0
- 2024-02-18 11:51:18.252 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.DisAccountVo)] with identifierForTableGroup [com.tnmaster.entities.DisAccountVo] for NavigablePath [com.tnmaster.entities.DisAccountVo]
- 2024-02-18 11:51:18.252 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : di1_0
- 2024-02-18 11:51:18.252 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [CollectionTableGroup(com.tnmaster.entities.DisAccountVo.dsInfos)] with identifierForTableGroup [com.tnmaster.entities.DisAccountVo.dsInfos] for NavigablePath [com.tnmaster.entities.DisAccountVo.dsInfos]
- 2024-02-18 11:51:18.252 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@76a0910c] with identifierForTableGroup [com.tnmaster.entities.DisAccountVo.dsInfos.{element}] for NavigablePath [com.tnmaster.entities.DisAccountVo.dsInfos.{element}]
- 2024-02-18 11:51:18.252 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : di1_1
- 2024-02-18 11:51:18.253 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.DisAccountVo]
- | +-BasicFetch [com.tnmaster.entities.DisAccountVo.account]
- | +-BasicFetch [com.tnmaster.entities.DisAccountVo.banTime]
- | +-BasicFetch [com.tnmaster.entities.DisAccountVo.crd]
- | +-BasicFetch [com.tnmaster.entities.DisAccountVo.createUserId]
- | +-BasicFetch [com.tnmaster.entities.DisAccountVo.doc]
- | +-EagerCollectionFetch [com.tnmaster.entities.DisAccountVo.dsInfos]
- | | \-EntityFetchJoinedImpl [com.tnmaster.entities.DisAccountVo.dsInfos.{element}]
- | +-BasicFetch [com.tnmaster.entities.DisAccountVo.lastLoginTime]
- | +-BasicFetch [com.tnmaster.entities.DisAccountVo.ldf]
- | +-BasicFetch [com.tnmaster.entities.DisAccountVo.mrd]
- | +-BasicFetch [com.tnmaster.entities.DisAccountVo.nickName]
- | +-BasicFetch [com.tnmaster.entities.DisAccountVo.pwdEnc]
- | +-BasicFetch [com.tnmaster.entities.DisAccountVo.rlv]
- | \-DelayedCollectionFetch [com.tnmaster.entities.DisAccountVo.userInfos]
-
- 2024-02-18 11:51:18.254 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (dav1 : com.tnmaster.entities.DisAccountVo) {
- primaryTableReference : usr as dav1_0
- TableGroupJoins {
- left join CollectionTableGroup (di1 : com.tnmaster.entities.DisAccountVo.dsInfos) {
- primaryTableReference : dis_info as di1_0
- TableGroupJoins {
- left join LazyTableGroup (di1 : com.tnmaster.entities.DisAccountVo.dsInfos.{element}) {
- primaryTableReference : dis_info as di1_1
- }
- }
- }
- }
- }
- }
- }
-
- 2024-02-18 11:51:18.254 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: com.tnmaster.entities.DisAccountVo
- 2024-02-18 11:51:18.254 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from usr where id=?
- 2024-02-18 11:51:18.254 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update usr set account=?,ban_time=?,crd=?,create_user_id=?,doc=?,last_login_time=?,ldf=?,mrd=?,nick_name=?,pwd_enc=?,rlv=? where id=? and rlv=?
- 2024-02-18 11:51:18.254 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from usr where id=? and rlv=?
- 2024-02-18 11:51:18.254 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : aa1_0
- 2024-02-18 11:51:18.254 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.AuditAttachment)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.AuditAttachment] for NavigablePath [io.github.truenine.composeserver.rds.entities.AuditAttachment]
- 2024-02-18 11:51:18.255 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.AuditAttachment]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.AuditAttachment.attId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.AuditAttachment.auditId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.AuditAttachment.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.AuditAttachment.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.AuditAttachment.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.AuditAttachment.rlv]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.AuditAttachment.status]
-
- 2024-02-18 11:51:18.255 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (aa1 : io.github.truenine.composeserver.rds.entities.AuditAttachment) {
- primaryTableReference : audit_attachment as aa1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.255 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `io.github.truenine.composeserver.rds.entities.AuditAttachment` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.256 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : aa1_0
- 2024-02-18 11:51:18.256 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.AuditAttachment)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.AuditAttachment] for NavigablePath [io.github.truenine.composeserver.rds.entities.AuditAttachment]
- 2024-02-18 11:51:18.256 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.AuditAttachment]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.AuditAttachment.attId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.AuditAttachment.auditId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.AuditAttachment.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.AuditAttachment.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.AuditAttachment.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.AuditAttachment.rlv]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.AuditAttachment.status]
-
- 2024-02-18 11:51:18.257 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (aa1 : io.github.truenine.composeserver.rds.entities.AuditAttachment) {
- primaryTableReference : audit_attachment as aa1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.257 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: io.github.truenine.composeserver.rds.entities.AuditAttachment
- 2024-02-18 11:51:18.257 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from audit_attachment where id=?
- 2024-02-18 11:51:18.257 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update audit_attachment set att_id=?,audit_id=?,crd=?,ldf=?,mrd=?,rlv=?,status=? where id=? and rlv=?
- 2024-02-18 11:51:18.257 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from audit_attachment where id=? and rlv=?
- 2024-02-18 11:51:18.257 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : frg1_0
- 2024-02-18 11:51:18.257 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.FullRoleGroup)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FullRoleGroup] for NavigablePath [io.github.truenine.composeserver.rds.entities.FullRoleGroup]
- 2024-02-18 11:51:18.258 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.FullRoleGroup]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullRoleGroup.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullRoleGroup.doc]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullRoleGroup.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullRoleGroup.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullRoleGroup.name]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullRoleGroup.rlv]
- | \-SelectEagerCollectionFetch [io.github.truenine.composeserver.rds.entities.FullRoleGroup.roles]
-
- 2024-02-18 11:51:18.258 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (frg1 : io.github.truenine.composeserver.rds.entities.FullRoleGroup) {
- primaryTableReference : role_group as frg1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.258 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `io.github.truenine.composeserver.rds.entities.FullRoleGroup` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.258 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : frg1_0
- 2024-02-18 11:51:18.258 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.FullRoleGroup)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FullRoleGroup] for NavigablePath [io.github.truenine.composeserver.rds.entities.FullRoleGroup]
- 2024-02-18 11:51:18.258 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.FullRoleGroup]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullRoleGroup.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullRoleGroup.doc]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullRoleGroup.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullRoleGroup.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullRoleGroup.name]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullRoleGroup.rlv]
- | \-SelectEagerCollectionFetch [io.github.truenine.composeserver.rds.entities.FullRoleGroup.roles]
-
- 2024-02-18 11:51:18.258 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (frg1 : io.github.truenine.composeserver.rds.entities.FullRoleGroup) {
- primaryTableReference : role_group as frg1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.258 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: io.github.truenine.composeserver.rds.entities.FullRoleGroup
- 2024-02-18 11:51:18.258 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from role_group where id=?
- 2024-02-18 11:51:18.258 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update role_group set crd=?,doc=?,ldf=?,mrd=?,name=?,rlv=? where id=? and rlv=?
- 2024-02-18 11:51:18.258 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from role_group where id=? and rlv=?
- 2024-02-18 11:51:18.258 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : di1_0
- 2024-02-18 11:51:18.258 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.DisInfo)] with identifierForTableGroup [com.tnmaster.entities.DisInfo] for NavigablePath [com.tnmaster.entities.DisInfo]
- 2024-02-18 11:51:18.259 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.DisInfo]
- | +-BasicFetch [com.tnmaster.entities.DisInfo.cause]
- | +-BasicFetch [com.tnmaster.entities.DisInfo.certCode]
- | +-BasicFetch [com.tnmaster.entities.DisInfo.crd]
- | +-BasicFetch [com.tnmaster.entities.DisInfo.dsType]
- | +-BasicFetch [com.tnmaster.entities.DisInfo.ldf]
- | +-BasicFetch [com.tnmaster.entities.DisInfo.level]
- | +-BasicFetch [com.tnmaster.entities.DisInfo.mrd]
- | +-BasicFetch [com.tnmaster.entities.DisInfo.muRule]
- | +-BasicFetch [com.tnmaster.entities.DisInfo.place]
- | +-BasicFetch [com.tnmaster.entities.DisInfo.rlv]
- | \-BasicFetch [com.tnmaster.entities.DisInfo.userInfoId]
-
- 2024-02-18 11:51:18.260 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (di1 : com.tnmaster.entities.DisInfo) {
- primaryTableReference : dis_info as di1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.261 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `com.tnmaster.entities.DisInfo` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.261 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : di1_0
- 2024-02-18 11:51:18.261 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.DisInfo)] with identifierForTableGroup [com.tnmaster.entities.DisInfo] for NavigablePath [com.tnmaster.entities.DisInfo]
- 2024-02-18 11:51:18.261 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.DisInfo]
- | +-BasicFetch [com.tnmaster.entities.DisInfo.cause]
- | +-BasicFetch [com.tnmaster.entities.DisInfo.certCode]
- | +-BasicFetch [com.tnmaster.entities.DisInfo.crd]
- | +-BasicFetch [com.tnmaster.entities.DisInfo.dsType]
- | +-BasicFetch [com.tnmaster.entities.DisInfo.ldf]
- | +-BasicFetch [com.tnmaster.entities.DisInfo.level]
- | +-BasicFetch [com.tnmaster.entities.DisInfo.mrd]
- | +-BasicFetch [com.tnmaster.entities.DisInfo.muRule]
- | +-BasicFetch [com.tnmaster.entities.DisInfo.place]
- | +-BasicFetch [com.tnmaster.entities.DisInfo.rlv]
- | \-BasicFetch [com.tnmaster.entities.DisInfo.userInfoId]
-
- 2024-02-18 11:51:18.261 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (di1 : com.tnmaster.entities.DisInfo) {
- primaryTableReference : dis_info as di1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.261 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: com.tnmaster.entities.DisInfo
- 2024-02-18 11:51:18.261 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from dis_info where id=?
- 2024-02-18 11:51:18.261 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update dis_info set cause=?,cert_code=?,crd=?,ds_type=?,ldf=?,level=?,mrd=?,mu_rule=?,place=?,rlv=?,user_info_id=? where id=? and rlv=?
- 2024-02-18 11:51:18.261 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from dis_info where id=? and rlv=?
- 2024-02-18 11:51:18.261 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : rgr1_0
- 2024-02-18 11:51:18.261 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole] for NavigablePath [io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole]
- 2024-02-18 11:51:18.262 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole.rlv]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole.roleGroupId]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole.roleId]
-
- 2024-02-18 11:51:18.263 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (rgr1 : io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole) {
- primaryTableReference : role_group_role as rgr1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.263 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.263 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : rgr1_0
- 2024-02-18 11:51:18.263 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole] for NavigablePath [io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole]
- 2024-02-18 11:51:18.264 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole.rlv]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole.roleGroupId]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole.roleId]
-
- 2024-02-18 11:51:18.264 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (rgr1 : io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole) {
- primaryTableReference : role_group_role as rgr1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.264 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole
- 2024-02-18 11:51:18.264 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from role_group_role where id=?
- 2024-02-18 11:51:18.264 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update role_group_role set crd=?,ldf=?,mrd=?,rlv=?,role_group_id=?,role_id=? where id=? and rlv=?
- 2024-02-18 11:51:18.264 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from role_group_role where id=? and rlv=?
- 2024-02-18 11:51:18.264 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : ble1_0
- 2024-02-18 11:51:18.264 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.BlackListEvidence)] with identifierForTableGroup [com.tnmaster.entities.BlackListEvidence] for NavigablePath [com.tnmaster.entities.BlackListEvidence]
- 2024-02-18 11:51:18.264 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.BlackListEvidence]
- | +-BasicFetch [com.tnmaster.entities.BlackListEvidence.attId]
- | +-BasicFetch [com.tnmaster.entities.BlackListEvidence.auditStatus]
- | +-BasicFetch [com.tnmaster.entities.BlackListEvidence.blackListId]
- | +-BasicFetch [com.tnmaster.entities.BlackListEvidence.crd]
- | +-BasicFetch [com.tnmaster.entities.BlackListEvidence.doc]
- | +-BasicFetch [com.tnmaster.entities.BlackListEvidence.ldf]
- | +-BasicFetch [com.tnmaster.entities.BlackListEvidence.mrd]
- | +-BasicFetch [com.tnmaster.entities.BlackListEvidence.rlv]
- | \-BasicFetch [com.tnmaster.entities.BlackListEvidence.title]
-
- 2024-02-18 11:51:18.265 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (ble1 : com.tnmaster.entities.BlackListEvidence) {
- primaryTableReference : black_list_evidence as ble1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.265 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `com.tnmaster.entities.BlackListEvidence` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.265 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : ble1_0
- 2024-02-18 11:51:18.265 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.BlackListEvidence)] with identifierForTableGroup [com.tnmaster.entities.BlackListEvidence] for NavigablePath [com.tnmaster.entities.BlackListEvidence]
- 2024-02-18 11:51:18.265 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.BlackListEvidence]
- | +-BasicFetch [com.tnmaster.entities.BlackListEvidence.attId]
- | +-BasicFetch [com.tnmaster.entities.BlackListEvidence.auditStatus]
- | +-BasicFetch [com.tnmaster.entities.BlackListEvidence.blackListId]
- | +-BasicFetch [com.tnmaster.entities.BlackListEvidence.crd]
- | +-BasicFetch [com.tnmaster.entities.BlackListEvidence.doc]
- | +-BasicFetch [com.tnmaster.entities.BlackListEvidence.ldf]
- | +-BasicFetch [com.tnmaster.entities.BlackListEvidence.mrd]
- | +-BasicFetch [com.tnmaster.entities.BlackListEvidence.rlv]
- | \-BasicFetch [com.tnmaster.entities.BlackListEvidence.title]
-
- 2024-02-18 11:51:18.265 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (ble1 : com.tnmaster.entities.BlackListEvidence) {
- primaryTableReference : black_list_evidence as ble1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.265 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: com.tnmaster.entities.BlackListEvidence
- 2024-02-18 11:51:18.265 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from black_list_evidence where id=?
- 2024-02-18 11:51:18.265 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update black_list_evidence set att_id=?,audit_status=?,black_list_id=?,crd=?,doc=?,ldf=?,mrd=?,rlv=?,title=? where id=? and rlv=?
- 2024-02-18 11:51:18.265 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from black_list_evidence where id=? and rlv=?
- 2024-02-18 11:51:18.265 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : c1_0
- 2024-02-18 11:51:18.265 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.cert.Cert)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.cert.Cert] for NavigablePath [io.github.truenine.composeserver.rds.entities.cert.Cert]
- 2024-02-18 11:51:18.267 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.cert.Cert]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Cert.attId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Cert.auditStatus]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Cert.coType]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Cert.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Cert.createDatetime]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Cert.createDeviceId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Cert.createIp]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Cert.createUserId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Cert.doType]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Cert.doc]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Cert.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Cert.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Cert.name]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Cert.poType]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Cert.remark]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Cert.rlv]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Cert.userId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Cert.userInfoId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Cert.wmAttId]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Cert.wmCode]
-
- 2024-02-18 11:51:18.268 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (c1 : io.github.truenine.composeserver.rds.entities.cert.Cert) {
- primaryTableReference : cert as c1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.268 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `io.github.truenine.composeserver.rds.entities.cert.Cert` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.268 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : c1_0
- 2024-02-18 11:51:18.268 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.cert.Cert)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.cert.Cert] for NavigablePath [io.github.truenine.composeserver.rds.entities.cert.Cert]
- 2024-02-18 11:51:18.269 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.cert.Cert]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Cert.attId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Cert.auditStatus]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Cert.coType]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Cert.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Cert.createDatetime]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Cert.createDeviceId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Cert.createIp]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Cert.createUserId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Cert.doType]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Cert.doc]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Cert.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Cert.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Cert.name]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Cert.poType]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Cert.remark]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Cert.rlv]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Cert.userId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Cert.userInfoId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Cert.wmAttId]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.Cert.wmCode]
-
- 2024-02-18 11:51:18.269 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (c1 : io.github.truenine.composeserver.rds.entities.cert.Cert) {
- primaryTableReference : cert as c1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.269 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: io.github.truenine.composeserver.rds.entities.cert.Cert
- 2024-02-18 11:51:18.269 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from cert where id=?
- 2024-02-18 11:51:18.269 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update cert set att_id=?,audit_status=?,co_type=?,crd=?,create_datetime=?,create_device_id=?,create_ip=?,create_user_id=?,do_type=?,doc=?,ldf=?,mrd=?,name=?,po_type=?,remark=?,rlv=?,user_id=?,user_info_id=?,wm_att_id=?,wm_code=? where id=? and rlv=?
- 2024-02-18 11:51:18.269 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from cert where id=? and rlv=?
- 2024-02-18 11:51:18.269 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : ndad1_0
- 2024-02-18 11:51:18.269 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails] for NavigablePath [io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails]
- 2024-02-18 11:51:18.269 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails.addressCode]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails.addressDetails]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails.addressId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails.center]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails.name]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails.phone]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails.rlv]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails.userId]
-
- 2024-02-18 11:51:18.269 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (ndad1 : io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails) {
- primaryTableReference : address_details as ndad1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.269 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.269 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : ndad1_0
- 2024-02-18 11:51:18.269 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails] for NavigablePath [io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails]
- 2024-02-18 11:51:18.270 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails.addressCode]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails.addressDetails]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails.addressId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails.center]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails.name]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails.phone]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails.rlv]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails.userId]
-
- 2024-02-18 11:51:18.270 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (ndad1 : io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails) {
- primaryTableReference : address_details as ndad1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.270 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: io.github.truenine.composeserver.rds.entities.NonDesensitizedAddressDetails
- 2024-02-18 11:51:18.270 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from address_details where id=?
- 2024-02-18 11:51:18.270 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update address_details set address_code=?,address_details=?,address_id=?,center=?,crd=?,ldf=?,mrd=?,name=?,phone=?,rlv=?,user_id=? where id=? and rlv=?
- 2024-02-18 11:51:18.270 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from address_details where id=? and rlv=?
- 2024-02-18 11:51:18.270 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : jss1_0
- 2024-02-18 11:51:18.270 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.JobSeekerSuperior)] with identifierForTableGroup [com.tnmaster.entities.JobSeekerSuperior] for NavigablePath [com.tnmaster.entities.JobSeekerSuperior]
- 2024-02-18 11:51:18.270 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.JobSeekerSuperior]
- | +-BasicFetch [com.tnmaster.entities.JobSeekerSuperior.crd]
- | +-BasicFetch [com.tnmaster.entities.JobSeekerSuperior.createDatetime]
- | +-BasicFetch [com.tnmaster.entities.JobSeekerSuperior.endDatetime]
- | +-BasicFetch [com.tnmaster.entities.JobSeekerSuperior.ldf]
- | +-BasicFetch [com.tnmaster.entities.JobSeekerSuperior.mrd]
- | +-BasicFetch [com.tnmaster.entities.JobSeekerSuperior.rlv]
- | +-BasicFetch [com.tnmaster.entities.JobSeekerSuperior.subordinateUserId]
- | \-BasicFetch [com.tnmaster.entities.JobSeekerSuperior.superiorUserId]
-
- 2024-02-18 11:51:18.270 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (jss1 : com.tnmaster.entities.JobSeekerSuperior) {
- primaryTableReference : job_seeker_superior as jss1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.270 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `com.tnmaster.entities.JobSeekerSuperior` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.270 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : jss1_0
- 2024-02-18 11:51:18.270 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.JobSeekerSuperior)] with identifierForTableGroup [com.tnmaster.entities.JobSeekerSuperior] for NavigablePath [com.tnmaster.entities.JobSeekerSuperior]
- 2024-02-18 11:51:18.271 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.JobSeekerSuperior]
- | +-BasicFetch [com.tnmaster.entities.JobSeekerSuperior.crd]
- | +-BasicFetch [com.tnmaster.entities.JobSeekerSuperior.createDatetime]
- | +-BasicFetch [com.tnmaster.entities.JobSeekerSuperior.endDatetime]
- | +-BasicFetch [com.tnmaster.entities.JobSeekerSuperior.ldf]
- | +-BasicFetch [com.tnmaster.entities.JobSeekerSuperior.mrd]
- | +-BasicFetch [com.tnmaster.entities.JobSeekerSuperior.rlv]
- | +-BasicFetch [com.tnmaster.entities.JobSeekerSuperior.subordinateUserId]
- | \-BasicFetch [com.tnmaster.entities.JobSeekerSuperior.superiorUserId]
-
- 2024-02-18 11:51:18.271 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (jss1 : com.tnmaster.entities.JobSeekerSuperior) {
- primaryTableReference : job_seeker_superior as jss1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.271 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: com.tnmaster.entities.JobSeekerSuperior
- 2024-02-18 11:51:18.271 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from job_seeker_superior where id=?
- 2024-02-18 11:51:18.271 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update job_seeker_superior set crd=?,create_datetime=?,end_datetime=?,ldf=?,mrd=?,rlv=?,subordinate_user_id=?,superior_user_id=? where id=? and rlv=?
- 2024-02-18 11:51:18.271 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from job_seeker_superior where id=? and rlv=?
- 2024-02-18 11:51:18.271 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : a1_0
- 2024-02-18 11:51:18.271 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.Attachment)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.Attachment] for NavigablePath [io.github.truenine.composeserver.rds.entities.Attachment]
- 2024-02-18 11:51:18.272 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.Attachment]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Attachment.attType]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Attachment.baseUri]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Attachment.baseUrl]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Attachment.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Attachment.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Attachment.metaName]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Attachment.mimeType]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Attachment.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Attachment.rlv]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Attachment.saveName]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Attachment.size]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Attachment.urlDoc]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Attachment.urlId]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.Attachment.urlName]
-
- 2024-02-18 11:51:18.272 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (a1 : io.github.truenine.composeserver.rds.entities.Attachment) {
- primaryTableReference : attachment as a1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.272 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `io.github.truenine.composeserver.rds.entities.Attachment` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.272 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : a1_0
- 2024-02-18 11:51:18.272 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.Attachment)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.Attachment] for NavigablePath [io.github.truenine.composeserver.rds.entities.Attachment]
- 2024-02-18 11:51:18.273 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.Attachment]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Attachment.attType]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Attachment.baseUri]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Attachment.baseUrl]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Attachment.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Attachment.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Attachment.metaName]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Attachment.mimeType]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Attachment.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Attachment.rlv]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Attachment.saveName]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Attachment.size]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Attachment.urlDoc]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Attachment.urlId]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.Attachment.urlName]
-
- 2024-02-18 11:51:18.273 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (a1 : io.github.truenine.composeserver.rds.entities.Attachment) {
- primaryTableReference : attachment as a1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.273 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: io.github.truenine.composeserver.rds.entities.Attachment
- 2024-02-18 11:51:18.273 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from attachment where id=?
- 2024-02-18 11:51:18.273 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update attachment set att_type=?,base_uri=?,base_url=?,crd=?,ldf=?,meta_name=?,mime_type=?,mrd=?,rlv=?,save_name=?,size=?,url_doc=?,url_id=?,url_name=? where id=? and rlv=?
- 2024-02-18 11:51:18.273 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from attachment where id=? and rlv=?
- 2024-02-18 11:51:18.273 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : i1_0
- 2024-02-18 11:51:18.273 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.Industry)] with identifierForTableGroup [com.tnmaster.entities.Industry] for NavigablePath [com.tnmaster.entities.Industry]
- 2024-02-18 11:51:18.274 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.Industry]
- | +-BasicFetch [com.tnmaster.entities.Industry.crd]
- | +-BasicFetch [com.tnmaster.entities.Industry.doc]
- | +-BasicFetch [com.tnmaster.entities.Industry.ldf]
- | +-BasicFetch [com.tnmaster.entities.Industry.mrd]
- | +-BasicFetch [com.tnmaster.entities.Industry.rlv]
- | \-BasicFetch [com.tnmaster.entities.Industry.title]
-
- 2024-02-18 11:51:18.275 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (i1 : com.tnmaster.entities.Industry) {
- primaryTableReference : industry as i1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.275 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `com.tnmaster.entities.Industry` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.275 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : i1_0
- 2024-02-18 11:51:18.275 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.Industry)] with identifierForTableGroup [com.tnmaster.entities.Industry] for NavigablePath [com.tnmaster.entities.Industry]
- 2024-02-18 11:51:18.275 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.Industry]
- | +-BasicFetch [com.tnmaster.entities.Industry.crd]
- | +-BasicFetch [com.tnmaster.entities.Industry.doc]
- | +-BasicFetch [com.tnmaster.entities.Industry.ldf]
- | +-BasicFetch [com.tnmaster.entities.Industry.mrd]
- | +-BasicFetch [com.tnmaster.entities.Industry.rlv]
- | \-BasicFetch [com.tnmaster.entities.Industry.title]
-
- 2024-02-18 11:51:18.275 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (i1 : com.tnmaster.entities.Industry) {
- primaryTableReference : industry as i1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.276 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: com.tnmaster.entities.Industry
- 2024-02-18 11:51:18.276 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from industry where id=?
- 2024-02-18 11:51:18.276 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update industry set crd=?,doc=?,ldf=?,mrd=?,rlv=?,title=? where id=? and rlv=?
- 2024-02-18 11:51:18.276 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from industry where id=? and rlv=?
- 2024-02-18 11:51:18.277 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : rg1_0
- 2024-02-18 11:51:18.277 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.RoleGroup)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.RoleGroup] for NavigablePath [io.github.truenine.composeserver.rds.entities.RoleGroup]
- 2024-02-18 11:51:18.277 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.RoleGroup]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.RoleGroup.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.RoleGroup.doc]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.RoleGroup.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.RoleGroup.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.RoleGroup.name]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.RoleGroup.rlv]
-
- 2024-02-18 11:51:18.277 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (rg1 : io.github.truenine.composeserver.rds.entities.RoleGroup) {
- primaryTableReference : role_group as rg1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.277 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `io.github.truenine.composeserver.rds.entities.RoleGroup` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.277 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : rg1_0
- 2024-02-18 11:51:18.277 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.RoleGroup)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.RoleGroup] for NavigablePath [io.github.truenine.composeserver.rds.entities.RoleGroup]
- 2024-02-18 11:51:18.277 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.RoleGroup]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.RoleGroup.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.RoleGroup.doc]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.RoleGroup.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.RoleGroup.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.RoleGroup.name]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.RoleGroup.rlv]
-
- 2024-02-18 11:51:18.277 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (rg1 : io.github.truenine.composeserver.rds.entities.RoleGroup) {
- primaryTableReference : role_group as rg1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.277 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: io.github.truenine.composeserver.rds.entities.RoleGroup
- 2024-02-18 11:51:18.277 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from role_group where id=?
- 2024-02-18 11:51:18.277 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update role_group set crd=?,doc=?,ldf=?,mrd=?,name=?,rlv=? where id=? and rlv=?
- 2024-02-18 11:51:18.277 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from role_group where id=? and rlv=?
- 2024-02-18 11:51:18.277 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : acg1_0
- 2024-02-18 11:51:18.277 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.AnonymousCertGroup)] with identifierForTableGroup [com.tnmaster.entities.AnonymousCertGroup] for NavigablePath [com.tnmaster.entities.AnonymousCertGroup]
- 2024-02-18 11:51:18.278 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.AnonymousCertGroup]
- | +-BasicFetch [com.tnmaster.entities.AnonymousCertGroup.certId]
- | +-BasicFetch [com.tnmaster.entities.AnonymousCertGroup.crd]
- | +-BasicFetch [com.tnmaster.entities.AnonymousCertGroup.ldf]
- | +-BasicFetch [com.tnmaster.entities.AnonymousCertGroup.mrd]
- | +-BasicFetch [com.tnmaster.entities.AnonymousCertGroup.rlv]
- | +-BasicFetch [com.tnmaster.entities.AnonymousCertGroup.serialNo]
- | \-BasicFetch [com.tnmaster.entities.AnonymousCertGroup.upUserId]
-
- 2024-02-18 11:51:18.278 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (acg1 : com.tnmaster.entities.AnonymousCertGroup) {
- primaryTableReference : anonymous_cert_group as acg1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.278 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `com.tnmaster.entities.AnonymousCertGroup` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.279 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : acg1_0
- 2024-02-18 11:51:18.279 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.AnonymousCertGroup)] with identifierForTableGroup [com.tnmaster.entities.AnonymousCertGroup] for NavigablePath [com.tnmaster.entities.AnonymousCertGroup]
- 2024-02-18 11:51:18.279 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.AnonymousCertGroup]
- | +-BasicFetch [com.tnmaster.entities.AnonymousCertGroup.certId]
- | +-BasicFetch [com.tnmaster.entities.AnonymousCertGroup.crd]
- | +-BasicFetch [com.tnmaster.entities.AnonymousCertGroup.ldf]
- | +-BasicFetch [com.tnmaster.entities.AnonymousCertGroup.mrd]
- | +-BasicFetch [com.tnmaster.entities.AnonymousCertGroup.rlv]
- | +-BasicFetch [com.tnmaster.entities.AnonymousCertGroup.serialNo]
- | \-BasicFetch [com.tnmaster.entities.AnonymousCertGroup.upUserId]
-
- 2024-02-18 11:51:18.279 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (acg1 : com.tnmaster.entities.AnonymousCertGroup) {
- primaryTableReference : anonymous_cert_group as acg1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.279 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: com.tnmaster.entities.AnonymousCertGroup
- 2024-02-18 11:51:18.279 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from anonymous_cert_group where id=?
- 2024-02-18 11:51:18.279 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update anonymous_cert_group set cert_id=?,crd=?,ldf=?,mrd=?,rlv=?,serial_no=?,up_user_id=? where id=? and rlv=?
- 2024-02-18 11:51:18.279 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from anonymous_cert_group where id=? and rlv=?
- 2024-02-18 11:51:18.279 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : dc1_0
- 2024-02-18 11:51:18.279 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.cert.DisCert2)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.cert.DisCert2] for NavigablePath [io.github.truenine.composeserver.rds.entities.cert.DisCert2]
- 2024-02-18 11:51:18.279 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.cert.DisCert2]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.DisCert2.addressDetailsId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.DisCert2.birthday]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.DisCert2.code]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.DisCert2.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.DisCert2.expireDate]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.DisCert2.gender]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.DisCert2.guardian]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.DisCert2.guardianPhone]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.DisCert2.issueDate]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.DisCert2.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.DisCert2.level]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.DisCert2.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.DisCert2.name]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.DisCert2.rlv]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.DisCert2.type]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.DisCert2.userId]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.DisCert2.userInfoId]
-
- 2024-02-18 11:51:18.279 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (dc1 : io.github.truenine.composeserver.rds.entities.cert.DisCert2) {
- primaryTableReference : dis_cert_2 as dc1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.279 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `io.github.truenine.composeserver.rds.entities.cert.DisCert2` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.279 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : dc1_0
- 2024-02-18 11:51:18.279 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.cert.DisCert2)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.cert.DisCert2] for NavigablePath [io.github.truenine.composeserver.rds.entities.cert.DisCert2]
- 2024-02-18 11:51:18.280 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.cert.DisCert2]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.DisCert2.addressDetailsId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.DisCert2.birthday]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.DisCert2.code]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.DisCert2.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.DisCert2.expireDate]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.DisCert2.gender]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.DisCert2.guardian]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.DisCert2.guardianPhone]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.DisCert2.issueDate]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.DisCert2.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.DisCert2.level]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.DisCert2.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.DisCert2.name]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.DisCert2.rlv]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.DisCert2.type]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.DisCert2.userId]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.DisCert2.userInfoId]
-
- 2024-02-18 11:51:18.280 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (dc1 : io.github.truenine.composeserver.rds.entities.cert.DisCert2) {
- primaryTableReference : dis_cert_2 as dc1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.280 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: io.github.truenine.composeserver.rds.entities.cert.DisCert2
- 2024-02-18 11:51:18.280 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from dis_cert_2 where id=?
- 2024-02-18 11:51:18.280 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update dis_cert_2 set address_details_id=?,birthday=?,code=?,crd=?,expire_date=?,gender=?,guardian=?,guardian_phone=?,issue_date=?,ldf=?,level=?,mrd=?,name=?,rlv=?,type=?,user_id=?,user_info_id=? where id=? and rlv=?
- 2024-02-18 11:51:18.280 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from dis_cert_2 where id=? and rlv=?
- 2024-02-18 11:51:18.280 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : fe1_0
- 2024-02-18 11:51:18.280 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.FullEnterprise)] with identifierForTableGroup [com.tnmaster.entities.FullEnterprise] for NavigablePath [com.tnmaster.entities.FullEnterprise]
- 2024-02-18 11:51:18.281 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : e1_0
- 2024-02-18 11:51:18.282 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.OneToManyTableGroup@44a065f7] with identifierForTableGroup [com.tnmaster.entities.FullEnterprise.emails] for NavigablePath [com.tnmaster.entities.FullEnterprise.emails]
- 2024-02-18 11:51:18.282 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.FullEnterprise.emails.{element})] with identifierForTableGroup [com.tnmaster.entities.FullEnterprise.emails.{element}] for NavigablePath [com.tnmaster.entities.FullEnterprise.emails.{element}]
- 2024-02-18 11:51:18.282 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.FullEnterprise]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.addressCode]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.addressDetailsId]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.capitalCurrency]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.crd]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.createDatetime]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.creditCodeV1]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.dataScore]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.doc]
- | +-EagerCollectionFetch [com.tnmaster.entities.FullEnterprise.emails]
- | | \-EntityFetchJoinedImpl [com.tnmaster.entities.FullEnterprise.emails.{element}]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.employeeCount]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.enterpriseType]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.industryId]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.ldf]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.leaderName]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.leaderUserId]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.leaderUserInfoId]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.logoAttachmentId]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.mrd]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.nlv]
- | +-SelectEagerCollectionFetch [com.tnmaster.entities.FullEnterprise.phones]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.regCapital]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.regDate]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.rln]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.rlv]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.rpi]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.rrn]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.status]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.tgi]
- | \-BasicFetch [com.tnmaster.entities.FullEnterprise.title]
-
- 2024-02-18 11:51:18.283 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (fe1 : com.tnmaster.entities.FullEnterprise) {
- primaryTableReference : enterprise as fe1_0
- TableGroupJoins {
- left join OneToManyTableGroup (e1 : com.tnmaster.entities.FullEnterprise.emails) {
- primaryTableReference : enterprise_email as e1_0
- }
- }
- }
- }
- }
-
- 2024-02-18 11:51:18.283 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `com.tnmaster.entities.FullEnterprise` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.283 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : fe1_0
- 2024-02-18 11:51:18.283 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.FullEnterprise)] with identifierForTableGroup [com.tnmaster.entities.FullEnterprise] for NavigablePath [com.tnmaster.entities.FullEnterprise]
- 2024-02-18 11:51:18.283 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : e1_0
- 2024-02-18 11:51:18.283 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.OneToManyTableGroup@71efa55d] with identifierForTableGroup [com.tnmaster.entities.FullEnterprise.emails] for NavigablePath [com.tnmaster.entities.FullEnterprise.emails]
- 2024-02-18 11:51:18.283 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.FullEnterprise.emails.{element})] with identifierForTableGroup [com.tnmaster.entities.FullEnterprise.emails.{element}] for NavigablePath [com.tnmaster.entities.FullEnterprise.emails.{element}]
- 2024-02-18 11:51:18.283 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.FullEnterprise]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.addressCode]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.addressDetailsId]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.capitalCurrency]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.crd]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.createDatetime]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.creditCodeV1]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.dataScore]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.doc]
- | +-EagerCollectionFetch [com.tnmaster.entities.FullEnterprise.emails]
- | | \-EntityFetchJoinedImpl [com.tnmaster.entities.FullEnterprise.emails.{element}]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.employeeCount]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.enterpriseType]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.industryId]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.ldf]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.leaderName]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.leaderUserId]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.leaderUserInfoId]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.logoAttachmentId]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.mrd]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.nlv]
- | +-SelectEagerCollectionFetch [com.tnmaster.entities.FullEnterprise.phones]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.regCapital]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.regDate]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.rln]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.rlv]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.rpi]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.rrn]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.status]
- | +-BasicFetch [com.tnmaster.entities.FullEnterprise.tgi]
- | \-BasicFetch [com.tnmaster.entities.FullEnterprise.title]
-
- 2024-02-18 11:51:18.284 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (fe1 : com.tnmaster.entities.FullEnterprise) {
- primaryTableReference : enterprise as fe1_0
- TableGroupJoins {
- left join OneToManyTableGroup (e1 : com.tnmaster.entities.FullEnterprise.emails) {
- primaryTableReference : enterprise_email as e1_0
- }
- }
- }
- }
- }
-
- 2024-02-18 11:51:18.284 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: com.tnmaster.entities.FullEnterprise
- 2024-02-18 11:51:18.284 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from enterprise where id=?
- 2024-02-18 11:51:18.284 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update enterprise set address_code=?,address_details_id=?,capital_currency=?,crd=?,create_datetime=?,credit_code_v1=?,data_score=?,doc=?,employee_count=?,enterprise_type=?,industry_id=?,ldf=?,leader_name=?,leader_user_id=?,leader_user_info_id=?,logo_attachment_id=?,mrd=?,nlv=?,reg_capital=?,reg_date=?,rln=?,rlv=?,rpi=?,rrn=?,status=?,tgi=?,title=? where id=? and rlv=?
- 2024-02-18 11:51:18.284 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from enterprise where id=? and rlv=?
- 2024-02-18 11:51:18.284 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : fa1_0
- 2024-02-18 11:51:18.284 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.FullAddress)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FullAddress] for NavigablePath [io.github.truenine.composeserver.rds.entities.FullAddress]
- 2024-02-18 11:51:18.284 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.FullAddress]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddress.center]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddress.code]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddress.crd]
- | +-SelectEagerCollectionFetch [io.github.truenine.composeserver.rds.entities.FullAddress.details]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddress.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddress.leaf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddress.level]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddress.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddress.name]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddress.nlv]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddress.rln]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddress.rlv]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddress.rpi]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddress.rrn]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddress.tgi]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddress.yearVersion]
-
- 2024-02-18 11:51:18.284 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (fa1 : io.github.truenine.composeserver.rds.entities.FullAddress) {
- primaryTableReference : address as fa1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.284 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `io.github.truenine.composeserver.rds.entities.FullAddress` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.284 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : fa1_0
- 2024-02-18 11:51:18.284 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.FullAddress)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FullAddress] for NavigablePath [io.github.truenine.composeserver.rds.entities.FullAddress]
- 2024-02-18 11:51:18.285 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.FullAddress]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddress.center]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddress.code]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddress.crd]
- | +-SelectEagerCollectionFetch [io.github.truenine.composeserver.rds.entities.FullAddress.details]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddress.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddress.leaf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddress.level]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddress.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddress.name]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddress.nlv]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddress.rln]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddress.rlv]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddress.rpi]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddress.rrn]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddress.tgi]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddress.yearVersion]
-
- 2024-02-18 11:51:18.285 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (fa1 : io.github.truenine.composeserver.rds.entities.FullAddress) {
- primaryTableReference : address as fa1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.285 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: io.github.truenine.composeserver.rds.entities.FullAddress
- 2024-02-18 11:51:18.286 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from address where id=?
- 2024-02-18 11:51:18.286 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update address set center=?,code=?,crd=?,ldf=?,leaf=?,level=?,mrd=?,name=?,nlv=?,rln=?,rlv=?,rpi=?,rrn=?,tgi=?,year_version=? where id=? and rlv=?
- 2024-02-18 11:51:18.286 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from address where id=? and rlv=?
- 2024-02-18 11:51:18.286 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : r1_0
- 2024-02-18 11:51:18.286 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.Role)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.Role] for NavigablePath [io.github.truenine.composeserver.rds.entities.Role]
- 2024-02-18 11:51:18.286 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.Role]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Role.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Role.doc]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Role.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Role.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Role.name]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.Role.rlv]
-
- 2024-02-18 11:51:18.286 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (r1 : io.github.truenine.composeserver.rds.entities.Role) {
- primaryTableReference : role as r1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.286 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `io.github.truenine.composeserver.rds.entities.Role` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.286 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : r1_0
- 2024-02-18 11:51:18.286 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.Role)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.Role] for NavigablePath [io.github.truenine.composeserver.rds.entities.Role]
- 2024-02-18 11:51:18.287 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.Role]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Role.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Role.doc]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Role.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Role.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Role.name]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.Role.rlv]
-
- 2024-02-18 11:51:18.287 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (r1 : io.github.truenine.composeserver.rds.entities.Role) {
- primaryTableReference : role as r1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.287 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: io.github.truenine.composeserver.rds.entities.Role
- 2024-02-18 11:51:18.287 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from role where id=?
- 2024-02-18 11:51:18.287 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update role set crd=?,doc=?,ldf=?,mrd=?,name=?,rlv=? where id=? and rlv=?
- 2024-02-18 11:51:18.287 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from role where id=? and rlv=?
- 2024-02-18 11:51:18.287 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : ca1_0
- 2024-02-18 11:51:18.287 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.CertAccess)] with identifierForTableGroup [com.tnmaster.entities.CertAccess] for NavigablePath [com.tnmaster.entities.CertAccess]
- 2024-02-18 11:51:18.287 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.CertAccess]
- | +-BasicFetch [com.tnmaster.entities.CertAccess.accessDatetime]
- | +-BasicFetch [com.tnmaster.entities.CertAccess.accessDeviceId]
- | +-BasicFetch [com.tnmaster.entities.CertAccess.accessIp]
- | +-BasicFetch [com.tnmaster.entities.CertAccess.attId]
- | +-BasicFetch [com.tnmaster.entities.CertAccess.certId]
- | +-BasicFetch [com.tnmaster.entities.CertAccess.crd]
- | +-BasicFetch [com.tnmaster.entities.CertAccess.ldf]
- | +-BasicFetch [com.tnmaster.entities.CertAccess.meta]
- | +-BasicFetch [com.tnmaster.entities.CertAccess.mrd]
- | +-BasicFetch [com.tnmaster.entities.CertAccess.rlv]
- | +-BasicFetch [com.tnmaster.entities.CertAccess.userId]
- | +-BasicFetch [com.tnmaster.entities.CertAccess.wmAttId]
- | \-BasicFetch [com.tnmaster.entities.CertAccess.wmCode]
-
- 2024-02-18 11:51:18.287 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (ca1 : com.tnmaster.entities.CertAccess) {
- primaryTableReference : cert_access as ca1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.287 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `com.tnmaster.entities.CertAccess` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.287 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : ca1_0
- 2024-02-18 11:51:18.288 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.CertAccess)] with identifierForTableGroup [com.tnmaster.entities.CertAccess] for NavigablePath [com.tnmaster.entities.CertAccess]
- 2024-02-18 11:51:18.288 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.CertAccess]
- | +-BasicFetch [com.tnmaster.entities.CertAccess.accessDatetime]
- | +-BasicFetch [com.tnmaster.entities.CertAccess.accessDeviceId]
- | +-BasicFetch [com.tnmaster.entities.CertAccess.accessIp]
- | +-BasicFetch [com.tnmaster.entities.CertAccess.attId]
- | +-BasicFetch [com.tnmaster.entities.CertAccess.certId]
- | +-BasicFetch [com.tnmaster.entities.CertAccess.crd]
- | +-BasicFetch [com.tnmaster.entities.CertAccess.ldf]
- | +-BasicFetch [com.tnmaster.entities.CertAccess.meta]
- | +-BasicFetch [com.tnmaster.entities.CertAccess.mrd]
- | +-BasicFetch [com.tnmaster.entities.CertAccess.rlv]
- | +-BasicFetch [com.tnmaster.entities.CertAccess.userId]
- | +-BasicFetch [com.tnmaster.entities.CertAccess.wmAttId]
- | \-BasicFetch [com.tnmaster.entities.CertAccess.wmCode]
-
- 2024-02-18 11:51:18.288 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (ca1 : com.tnmaster.entities.CertAccess) {
- primaryTableReference : cert_access as ca1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.288 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: com.tnmaster.entities.CertAccess
- 2024-02-18 11:51:18.288 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from cert_access where id=?
- 2024-02-18 11:51:18.288 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update cert_access set access_datetime=?,access_device_id=?,access_ip=?,att_id=?,cert_id=?,crd=?,ldf=?,meta=?,mrd=?,rlv=?,user_id=?,wm_att_id=?,wm_code=? where id=? and rlv=?
- 2024-02-18 11:51:18.288 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from cert_access where id=? and rlv=?
- 2024-02-18 11:51:18.288 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : a1_0
- 2024-02-18 11:51:18.288 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.Address)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.Address] for NavigablePath [io.github.truenine.composeserver.rds.entities.Address]
- 2024-02-18 11:51:18.288 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.Address]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Address.center]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Address.code]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Address.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Address.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Address.leaf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Address.level]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Address.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Address.name]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Address.nlv]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Address.rln]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Address.rlv]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Address.rpi]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Address.rrn]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Address.tgi]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.Address.yearVersion]
-
- 2024-02-18 11:51:18.288 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (a1 : io.github.truenine.composeserver.rds.entities.Address) {
- primaryTableReference : address as a1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.288 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `io.github.truenine.composeserver.rds.entities.Address` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.288 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : a1_0
- 2024-02-18 11:51:18.288 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.Address)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.Address] for NavigablePath [io.github.truenine.composeserver.rds.entities.Address]
- 2024-02-18 11:51:18.289 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.Address]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Address.center]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Address.code]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Address.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Address.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Address.leaf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Address.level]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Address.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Address.name]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Address.nlv]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Address.rln]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Address.rlv]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Address.rpi]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Address.rrn]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Address.tgi]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.Address.yearVersion]
-
- 2024-02-18 11:51:18.289 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (a1 : io.github.truenine.composeserver.rds.entities.Address) {
- primaryTableReference : address as a1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.289 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: io.github.truenine.composeserver.rds.entities.Address
- 2024-02-18 11:51:18.289 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from address where id=?
- 2024-02-18 11:51:18.289 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update address set center=?,code=?,crd=?,ldf=?,leaf=?,level=?,mrd=?,name=?,nlv=?,rln=?,rlv=?,rpi=?,rrn=?,tgi=?,year_version=? where id=? and rlv=?
- 2024-02-18 11:51:18.289 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from address where id=? and rlv=?
- 2024-02-18 11:51:18.289 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : fu1_0
- 2024-02-18 11:51:18.289 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.FullUsr)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FullUsr] for NavigablePath [io.github.truenine.composeserver.rds.entities.FullUsr]
- 2024-02-18 11:51:18.289 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@6967bbf3] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FullUsr.info] for NavigablePath [io.github.truenine.composeserver.rds.entities.FullUsr.info]
- 2024-02-18 11:51:18.289 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : i1_0
- 2024-02-18 11:51:18.289 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@17f5eaad] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FullUsr.info.addressDetails] for NavigablePath [io.github.truenine.composeserver.rds.entities.FullUsr.info.addressDetails]
- 2024-02-18 11:51:18.290 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : ad1_0
- 2024-02-18 11:51:18.291 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@d5c4bad] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FullUsr.info.avatarImage] for NavigablePath [io.github.truenine.composeserver.rds.entities.FullUsr.info.avatarImage]
- 2024-02-18 11:51:18.291 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : ai1_0
- 2024-02-18 11:51:18.291 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@14b849b9] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FullUsr.info.avatarImage.base] for NavigablePath [io.github.truenine.composeserver.rds.entities.FullUsr.info.avatarImage.base]
- 2024-02-18 11:51:18.291 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : b1_0
- 2024-02-18 11:51:18.295 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@2664d94] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FullUsr.info.usr] for NavigablePath [io.github.truenine.composeserver.rds.entities.FullUsr.info.usr]
- 2024-02-18 11:51:18.295 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.FullUsr]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUsr.account]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUsr.banTime]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUsr.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUsr.createUserId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUsr.doc]
- | +-EntityFetchJoinedImpl [io.github.truenine.composeserver.rds.entities.FullUsr.info]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUsr.lastLoginTime]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUsr.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUsr.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUsr.nickName]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUsr.pwdEnc]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUsr.rlv]
- | \-SelectEagerCollectionFetch [io.github.truenine.composeserver.rds.entities.FullUsr.roleGroups]
-
- 2024-02-18 11:51:18.296 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (fu1 : io.github.truenine.composeserver.rds.entities.FullUsr) {
- primaryTableReference : usr as fu1_0
- TableGroupJoins {
- left join LazyTableGroup (i1 : io.github.truenine.composeserver.rds.entities.FullUsr.info) {
- primaryTableReference : user_info as i1_0
- TableGroupJoins {
- left join LazyTableGroup (ad1 : io.github.truenine.composeserver.rds.entities.FullUsr.info.addressDetails) {
- primaryTableReference : address_details as ad1_0
- }
- left join LazyTableGroup (ai1 : io.github.truenine.composeserver.rds.entities.FullUsr.info.avatarImage) {
- primaryTableReference : attachment as ai1_0
- TableGroupJoins {
- left join LazyTableGroup (b1 : io.github.truenine.composeserver.rds.entities.FullUsr.info.avatarImage.base) {
- primaryTableReference : attachment as b1_0
- }
- }
- }
- left join LazyTableGroup (u1 : io.github.truenine.composeserver.rds.entities.FullUsr.info.usr) {
- }
- }
- }
- }
- }
- }
- }
-
- 2024-02-18 11:51:18.297 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `io.github.truenine.composeserver.rds.entities.FullUsr` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.297 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : fu1_0
- 2024-02-18 11:51:18.297 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.FullUsr)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FullUsr] for NavigablePath [io.github.truenine.composeserver.rds.entities.FullUsr]
- 2024-02-18 11:51:18.297 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@57eab3f5] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FullUsr.info] for NavigablePath [io.github.truenine.composeserver.rds.entities.FullUsr.info]
- 2024-02-18 11:51:18.297 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : i1_0
- 2024-02-18 11:51:18.297 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@698dd40c] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FullUsr.info.addressDetails] for NavigablePath [io.github.truenine.composeserver.rds.entities.FullUsr.info.addressDetails]
- 2024-02-18 11:51:18.297 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : ad1_0
- 2024-02-18 11:51:18.298 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@34abbd8d] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FullUsr.info.avatarImage] for NavigablePath [io.github.truenine.composeserver.rds.entities.FullUsr.info.avatarImage]
- 2024-02-18 11:51:18.298 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : ai1_0
- 2024-02-18 11:51:18.298 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@391c6239] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FullUsr.info.avatarImage.base] for NavigablePath [io.github.truenine.composeserver.rds.entities.FullUsr.info.avatarImage.base]
- 2024-02-18 11:51:18.298 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : b1_0
- 2024-02-18 11:51:18.298 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@3b6b0bf4] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FullUsr.info.usr] for NavigablePath [io.github.truenine.composeserver.rds.entities.FullUsr.info.usr]
- 2024-02-18 11:51:18.298 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.FullUsr]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUsr.account]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUsr.banTime]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUsr.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUsr.createUserId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUsr.doc]
- | +-EntityFetchJoinedImpl [io.github.truenine.composeserver.rds.entities.FullUsr.info]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUsr.lastLoginTime]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUsr.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUsr.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUsr.nickName]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUsr.pwdEnc]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUsr.rlv]
- | \-SelectEagerCollectionFetch [io.github.truenine.composeserver.rds.entities.FullUsr.roleGroups]
-
- 2024-02-18 11:51:18.299 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (fu1 : io.github.truenine.composeserver.rds.entities.FullUsr) {
- primaryTableReference : usr as fu1_0
- TableGroupJoins {
- left join LazyTableGroup (i1 : io.github.truenine.composeserver.rds.entities.FullUsr.info) {
- primaryTableReference : user_info as i1_0
- TableGroupJoins {
- left join LazyTableGroup (ad1 : io.github.truenine.composeserver.rds.entities.FullUsr.info.addressDetails) {
- primaryTableReference : address_details as ad1_0
- }
- left join LazyTableGroup (ai1 : io.github.truenine.composeserver.rds.entities.FullUsr.info.avatarImage) {
- primaryTableReference : attachment as ai1_0
- TableGroupJoins {
- left join LazyTableGroup (b1 : io.github.truenine.composeserver.rds.entities.FullUsr.info.avatarImage.base) {
- primaryTableReference : attachment as b1_0
- }
- }
- }
- left join LazyTableGroup (u1 : io.github.truenine.composeserver.rds.entities.FullUsr.info.usr) {
- }
- }
- }
- }
- }
- }
- }
-
- 2024-02-18 11:51:18.299 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: io.github.truenine.composeserver.rds.entities.FullUsr
- 2024-02-18 11:51:18.299 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from usr where id=?
- 2024-02-18 11:51:18.299 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update usr set account=?,ban_time=?,crd=?,create_user_id=?,doc=?,last_login_time=?,ldf=?,mrd=?,nick_name=?,pwd_enc=?,rlv=? where id=? and rlv=?
- 2024-02-18 11:51:18.299 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from usr where id=? and rlv=?
- 2024-02-18 11:51:18.299 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : blv1_0
- 2024-02-18 11:51:18.299 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.BlackListVo)] with identifierForTableGroup [com.tnmaster.entities.BlackListVo] for NavigablePath [com.tnmaster.entities.BlackListVo]
- 2024-02-18 11:51:18.300 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@6cef2367] with identifierForTableGroup [com.tnmaster.entities.BlackListVo.blackUserInfo] for NavigablePath [com.tnmaster.entities.BlackListVo.blackUserInfo]
- 2024-02-18 11:51:18.300 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : bui1_0
- 2024-02-18 11:51:18.300 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@5c374b46] with identifierForTableGroup [com.tnmaster.entities.BlackListVo.createUser] for NavigablePath [com.tnmaster.entities.BlackListVo.createUser]
- 2024-02-18 11:51:18.300 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : cu1_0
- 2024-02-18 11:51:18.300 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@3beead8d] with identifierForTableGroup [com.tnmaster.entities.BlackListVo.reportUser] for NavigablePath [com.tnmaster.entities.BlackListVo.reportUser]
- 2024-02-18 11:51:18.300 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : ru1_0
- 2024-02-18 11:51:18.300 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@2e8f558c] with identifierForTableGroup [com.tnmaster.entities.BlackListVo.reportUserInfo] for NavigablePath [com.tnmaster.entities.BlackListVo.reportUserInfo]
- 2024-02-18 11:51:18.300 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : rui1_0
- 2024-02-18 11:51:18.301 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : r1_0
- 2024-02-18 11:51:18.301 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.OneToManyTableGroup@48844660] with identifierForTableGroup [com.tnmaster.entities.BlackListVo.relations] for NavigablePath [com.tnmaster.entities.BlackListVo.relations]
- 2024-02-18 11:51:18.301 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.BlackListVo.relations.{element})] with identifierForTableGroup [com.tnmaster.entities.BlackListVo.relations.{element}] for NavigablePath [com.tnmaster.entities.BlackListVo.relations.{element}]
- 2024-02-18 11:51:18.301 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.BlackListVo]
- | +-BasicFetch [com.tnmaster.entities.BlackListVo.auditStatus]
- | +-BasicFetch [com.tnmaster.entities.BlackListVo.blackRefId]
- | +-EntityFetchJoinedImpl [com.tnmaster.entities.BlackListVo.blackUserInfo]
- | +-BasicFetch [com.tnmaster.entities.BlackListVo.blackUserInfoId]
- | +-BasicFetch [com.tnmaster.entities.BlackListVo.crd]
- | +-BasicFetch [com.tnmaster.entities.BlackListVo.createDatetime]
- | +-EntityFetchJoinedImpl [com.tnmaster.entities.BlackListVo.createUser]
- | +-BasicFetch [com.tnmaster.entities.BlackListVo.createUserId]
- | +-BasicFetch [com.tnmaster.entities.BlackListVo.eventDoc]
- | +-BasicFetch [com.tnmaster.entities.BlackListVo.ldf]
- | +-BasicFetch [com.tnmaster.entities.BlackListVo.mrd]
- | +-BasicFetch [com.tnmaster.entities.BlackListVo.reItemType]
- | +-EagerCollectionFetch [com.tnmaster.entities.BlackListVo.relations]
- | | \-EntityFetchJoinedImpl [com.tnmaster.entities.BlackListVo.relations.{element}]
- | +-EntityFetchJoinedImpl [com.tnmaster.entities.BlackListVo.reportUser]
- | +-BasicFetch [com.tnmaster.entities.BlackListVo.reportUserId]
- | +-EntityFetchJoinedImpl [com.tnmaster.entities.BlackListVo.reportUserInfo]
- | +-BasicFetch [com.tnmaster.entities.BlackListVo.reportUserInfoId]
- | +-BasicFetch [com.tnmaster.entities.BlackListVo.rlv]
- | \-SelectEagerCollectionFetch [com.tnmaster.entities.BlackListVo.tags]
-
- 2024-02-18 11:51:18.302 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (blv1 : com.tnmaster.entities.BlackListVo) {
- primaryTableReference : black_list as blv1_0
- TableGroupJoins {
- left join LazyTableGroup (bui1 : com.tnmaster.entities.BlackListVo.blackUserInfo) {
- primaryTableReference : user_info as bui1_0
- }
- left join LazyTableGroup (cu1 : com.tnmaster.entities.BlackListVo.createUser) {
- primaryTableReference : usr as cu1_0
- }
- left join LazyTableGroup (ru1 : com.tnmaster.entities.BlackListVo.reportUser) {
- primaryTableReference : usr as ru1_0
- }
- left join LazyTableGroup (rui1 : com.tnmaster.entities.BlackListVo.reportUserInfo) {
- primaryTableReference : user_info as rui1_0
- }
- left join OneToManyTableGroup (r1 : com.tnmaster.entities.BlackListVo.relations) {
- primaryTableReference : black_list_relation as r1_0
- }
- }
- }
- }
- }
-
- 2024-02-18 11:51:18.302 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `com.tnmaster.entities.BlackListVo` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.302 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : blv1_0
- 2024-02-18 11:51:18.302 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.BlackListVo)] with identifierForTableGroup [com.tnmaster.entities.BlackListVo] for NavigablePath [com.tnmaster.entities.BlackListVo]
- 2024-02-18 11:51:18.302 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@4e712e0d] with identifierForTableGroup [com.tnmaster.entities.BlackListVo.blackUserInfo] for NavigablePath [com.tnmaster.entities.BlackListVo.blackUserInfo]
- 2024-02-18 11:51:18.302 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : bui1_0
- 2024-02-18 11:51:18.302 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@700735e2] with identifierForTableGroup [com.tnmaster.entities.BlackListVo.createUser] for NavigablePath [com.tnmaster.entities.BlackListVo.createUser]
- 2024-02-18 11:51:18.302 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : cu1_0
- 2024-02-18 11:51:18.303 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@22bd93ab] with identifierForTableGroup [com.tnmaster.entities.BlackListVo.reportUser] for NavigablePath [com.tnmaster.entities.BlackListVo.reportUser]
- 2024-02-18 11:51:18.303 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : ru1_0
- 2024-02-18 11:51:18.303 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@756032a9] with identifierForTableGroup [com.tnmaster.entities.BlackListVo.reportUserInfo] for NavigablePath [com.tnmaster.entities.BlackListVo.reportUserInfo]
- 2024-02-18 11:51:18.303 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : rui1_0
- 2024-02-18 11:51:18.303 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : r1_0
- 2024-02-18 11:51:18.303 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.OneToManyTableGroup@32a66b4e] with identifierForTableGroup [com.tnmaster.entities.BlackListVo.relations] for NavigablePath [com.tnmaster.entities.BlackListVo.relations]
- 2024-02-18 11:51:18.303 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.BlackListVo.relations.{element})] with identifierForTableGroup [com.tnmaster.entities.BlackListVo.relations.{element}] for NavigablePath [com.tnmaster.entities.BlackListVo.relations.{element}]
- 2024-02-18 11:51:18.303 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.BlackListVo]
- | +-BasicFetch [com.tnmaster.entities.BlackListVo.auditStatus]
- | +-BasicFetch [com.tnmaster.entities.BlackListVo.blackRefId]
- | +-EntityFetchJoinedImpl [com.tnmaster.entities.BlackListVo.blackUserInfo]
- | +-BasicFetch [com.tnmaster.entities.BlackListVo.blackUserInfoId]
- | +-BasicFetch [com.tnmaster.entities.BlackListVo.crd]
- | +-BasicFetch [com.tnmaster.entities.BlackListVo.createDatetime]
- | +-EntityFetchJoinedImpl [com.tnmaster.entities.BlackListVo.createUser]
- | +-BasicFetch [com.tnmaster.entities.BlackListVo.createUserId]
- | +-BasicFetch [com.tnmaster.entities.BlackListVo.eventDoc]
- | +-BasicFetch [com.tnmaster.entities.BlackListVo.ldf]
- | +-BasicFetch [com.tnmaster.entities.BlackListVo.mrd]
- | +-BasicFetch [com.tnmaster.entities.BlackListVo.reItemType]
- | +-EagerCollectionFetch [com.tnmaster.entities.BlackListVo.relations]
- | | \-EntityFetchJoinedImpl [com.tnmaster.entities.BlackListVo.relations.{element}]
- | +-EntityFetchJoinedImpl [com.tnmaster.entities.BlackListVo.reportUser]
- | +-BasicFetch [com.tnmaster.entities.BlackListVo.reportUserId]
- | +-EntityFetchJoinedImpl [com.tnmaster.entities.BlackListVo.reportUserInfo]
- | +-BasicFetch [com.tnmaster.entities.BlackListVo.reportUserInfoId]
- | +-BasicFetch [com.tnmaster.entities.BlackListVo.rlv]
- | \-SelectEagerCollectionFetch [com.tnmaster.entities.BlackListVo.tags]
-
- 2024-02-18 11:51:18.303 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (blv1 : com.tnmaster.entities.BlackListVo) {
- primaryTableReference : black_list as blv1_0
- TableGroupJoins {
- left join LazyTableGroup (bui1 : com.tnmaster.entities.BlackListVo.blackUserInfo) {
- primaryTableReference : user_info as bui1_0
- }
- left join LazyTableGroup (cu1 : com.tnmaster.entities.BlackListVo.createUser) {
- primaryTableReference : usr as cu1_0
- }
- left join LazyTableGroup (ru1 : com.tnmaster.entities.BlackListVo.reportUser) {
- primaryTableReference : usr as ru1_0
- }
- left join LazyTableGroup (rui1 : com.tnmaster.entities.BlackListVo.reportUserInfo) {
- primaryTableReference : user_info as rui1_0
- }
- left join OneToManyTableGroup (r1 : com.tnmaster.entities.BlackListVo.relations) {
- primaryTableReference : black_list_relation as r1_0
- }
- }
- }
- }
- }
-
- 2024-02-18 11:51:18.304 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: com.tnmaster.entities.BlackListVo
- 2024-02-18 11:51:18.305 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from black_list where id=?
- 2024-02-18 11:51:18.305 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update black_list set audit_status=?,black_ref_id=?,black_user_info_id=?,crd=?,create_datetime=?,create_user_id=?,event_doc=?,ldf=?,mrd=?,re_item_type=?,report_user_id=?,report_user_info_id=?,rlv=? where id=? and rlv=?
- 2024-02-18 11:51:18.305 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from black_list where id=? and rlv=?
- 2024-02-18 11:51:18.305 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : trdr1_0
- 2024-02-18 11:51:18.305 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord] for NavigablePath [io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord]
- 2024-02-18 11:51:18.305 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord.deleteDatetime]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord.entity]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord.rlv]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord.tableNames]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord.userAccount]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord.userId]
-
- 2024-02-18 11:51:18.305 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (trdr1 : io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord) {
- primaryTableReference : table_row_delete_record as trdr1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.305 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.305 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : trdr1_0
- 2024-02-18 11:51:18.305 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord] for NavigablePath [io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord]
- 2024-02-18 11:51:18.306 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord.deleteDatetime]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord.entity]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord.rlv]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord.tableNames]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord.userAccount]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord.userId]
-
- 2024-02-18 11:51:18.306 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (trdr1 : io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord) {
- primaryTableReference : table_row_delete_record as trdr1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.306 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: io.github.truenine.composeserver.rds.entities.TableRowDeleteRecord
- 2024-02-18 11:51:18.306 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from table_row_delete_record where id=?
- 2024-02-18 11:51:18.306 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update table_row_delete_record set crd=?,delete_datetime=?,entity=?,ldf=?,mrd=?,rlv=?,table_names=?,user_account=?,user_id=? where id=? and rlv=?
- 2024-02-18 11:51:18.306 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from table_row_delete_record where id=? and rlv=?
- 2024-02-18 11:51:18.306 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : acri1_0
- 2024-02-18 11:51:18.306 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity] for NavigablePath [io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity]
- 2024-02-18 11:51:18.306 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@174af948] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity.api] for NavigablePath [io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity.api]
- 2024-02-18 11:51:18.306 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : a1_0
- 2024-02-18 11:51:18.306 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@1287f07e] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity.api.permissions] for NavigablePath [io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity.api.permissions]
- 2024-02-18 11:51:18.306 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : p1_0
- 2024-02-18 11:51:18.306 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity]
- | +-EntityFetchJoinedImpl [io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity.api]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity.deviceCode]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity.loginIp]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity.reqIp]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity.respCode]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity.respResultEnc]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity.rlv]
-
- 2024-02-18 11:51:18.306 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (acri1 : io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity) {
- primaryTableReference : api_call_record as acri1_0
- TableGroupJoins {
- left join LazyTableGroup (a1 : io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity.api) {
- primaryTableReference : api as a1_0
- TableGroupJoins {
- left join LazyTableGroup (p1 : io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity.api.permissions) {
- primaryTableReference : permissions as p1_0
- }
- }
- }
- }
- }
- }
- }
-
- 2024-02-18 11:51:18.307 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.307 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : acri1_0
- 2024-02-18 11:51:18.307 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity] for NavigablePath [io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity]
- 2024-02-18 11:51:18.307 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@517ca1dc] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity.api] for NavigablePath [io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity.api]
- 2024-02-18 11:51:18.307 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : a1_0
- 2024-02-18 11:51:18.308 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@7c55bf8d] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity.api.permissions] for NavigablePath [io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity.api.permissions]
- 2024-02-18 11:51:18.308 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : p1_0
- 2024-02-18 11:51:18.308 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity]
- | +-EntityFetchJoinedImpl [io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity.api]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity.deviceCode]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity.loginIp]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity.reqIp]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity.respCode]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity.respResultEnc]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity.rlv]
-
- 2024-02-18 11:51:18.308 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (acri1 : io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity) {
- primaryTableReference : api_call_record as acri1_0
- TableGroupJoins {
- left join LazyTableGroup (a1 : io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity.api) {
- primaryTableReference : api as a1_0
- TableGroupJoins {
- left join LazyTableGroup (p1 : io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity.api.permissions) {
- primaryTableReference : permissions as p1_0
- }
- }
- }
- }
- }
- }
- }
-
- 2024-02-18 11:51:18.309 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: io.github.truenine.composeserver.rds.entities.ApiCallRecordIEntity
- 2024-02-18 11:51:18.309 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from api_call_record where id=?
- 2024-02-18 11:51:18.309 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update api_call_record set api_id=?,crd=?,device_code=?,ldf=?,login_ip=?,mrd=?,req_ip=?,resp_code=?,resp_result_enc=?,rlv=? where id=? and rlv=?
- 2024-02-18 11:51:18.309 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from api_call_record where id=? and rlv=?
- 2024-02-18 11:51:18.309 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : we1_0
- 2024-02-18 11:51:18.309 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.WorkExperience)] with identifierForTableGroup [com.tnmaster.entities.WorkExperience] for NavigablePath [com.tnmaster.entities.WorkExperience]
- 2024-02-18 11:51:18.309 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.WorkExperience]
- | +-BasicFetch [com.tnmaster.entities.WorkExperience.comAddressCode]
- | +-BasicFetch [com.tnmaster.entities.WorkExperience.comName]
- | +-BasicFetch [com.tnmaster.entities.WorkExperience.crd]
- | +-BasicFetch [com.tnmaster.entities.WorkExperience.doc]
- | +-BasicFetch [com.tnmaster.entities.WorkExperience.endDate]
- | +-BasicFetch [com.tnmaster.entities.WorkExperience.enterpriseId]
- | +-BasicFetch [com.tnmaster.entities.WorkExperience.ldf]
- | +-BasicFetch [com.tnmaster.entities.WorkExperience.mrd]
- | +-BasicFetch [com.tnmaster.entities.WorkExperience.rlv]
- | +-BasicFetch [com.tnmaster.entities.WorkExperience.startDate]
- | +-BasicFetch [com.tnmaster.entities.WorkExperience.title]
- | \-BasicFetch [com.tnmaster.entities.WorkExperience.userId]
-
- 2024-02-18 11:51:18.309 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (we1 : com.tnmaster.entities.WorkExperience) {
- primaryTableReference : work_experience as we1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.309 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `com.tnmaster.entities.WorkExperience` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.309 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : we1_0
- 2024-02-18 11:51:18.309 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.WorkExperience)] with identifierForTableGroup [com.tnmaster.entities.WorkExperience] for NavigablePath [com.tnmaster.entities.WorkExperience]
- 2024-02-18 11:51:18.310 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.WorkExperience]
- | +-BasicFetch [com.tnmaster.entities.WorkExperience.comAddressCode]
- | +-BasicFetch [com.tnmaster.entities.WorkExperience.comName]
- | +-BasicFetch [com.tnmaster.entities.WorkExperience.crd]
- | +-BasicFetch [com.tnmaster.entities.WorkExperience.doc]
- | +-BasicFetch [com.tnmaster.entities.WorkExperience.endDate]
- | +-BasicFetch [com.tnmaster.entities.WorkExperience.enterpriseId]
- | +-BasicFetch [com.tnmaster.entities.WorkExperience.ldf]
- | +-BasicFetch [com.tnmaster.entities.WorkExperience.mrd]
- | +-BasicFetch [com.tnmaster.entities.WorkExperience.rlv]
- | +-BasicFetch [com.tnmaster.entities.WorkExperience.startDate]
- | +-BasicFetch [com.tnmaster.entities.WorkExperience.title]
- | \-BasicFetch [com.tnmaster.entities.WorkExperience.userId]
-
- 2024-02-18 11:51:18.310 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (we1 : com.tnmaster.entities.WorkExperience) {
- primaryTableReference : work_experience as we1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.311 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: com.tnmaster.entities.WorkExperience
- 2024-02-18 11:51:18.311 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from work_experience where id=?
- 2024-02-18 11:51:18.311 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update work_experience set com_address_code=?,com_name=?,crd=?,doc=?,end_date=?,enterprise_id=?,ldf=?,mrd=?,rlv=?,start_date=?,title=?,user_id=? where id=? and rlv=?
- 2024-02-18 11:51:18.311 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from work_experience where id=? and rlv=?
- 2024-02-18 11:51:18.311 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : a1_0
- 2024-02-18 11:51:18.311 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.Api)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.Api] for NavigablePath [io.github.truenine.composeserver.rds.entities.Api]
- 2024-02-18 11:51:18.311 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@3e881258] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.Api.permissions] for NavigablePath [io.github.truenine.composeserver.rds.entities.Api.permissions]
- 2024-02-18 11:51:18.311 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : p1_0
- 2024-02-18 11:51:18.311 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.Api]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Api.apiMethod]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Api.apiPath]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Api.apiProtocol]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Api.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Api.doc]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Api.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Api.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Api.name]
- | +-EntityFetchJoinedImpl [io.github.truenine.composeserver.rds.entities.Api.permissions]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.Api.rlv]
-
- 2024-02-18 11:51:18.311 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (a1 : io.github.truenine.composeserver.rds.entities.Api) {
- primaryTableReference : api as a1_0
- TableGroupJoins {
- left join LazyTableGroup (p1 : io.github.truenine.composeserver.rds.entities.Api.permissions) {
- primaryTableReference : permissions as p1_0
- }
- }
- }
- }
- }
-
- 2024-02-18 11:51:18.311 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `io.github.truenine.composeserver.rds.entities.Api` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.311 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : a1_0
- 2024-02-18 11:51:18.311 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.Api)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.Api] for NavigablePath [io.github.truenine.composeserver.rds.entities.Api]
- 2024-02-18 11:51:18.312 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@36e7932f] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.Api.permissions] for NavigablePath [io.github.truenine.composeserver.rds.entities.Api.permissions]
- 2024-02-18 11:51:18.312 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : p1_0
- 2024-02-18 11:51:18.312 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.Api]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Api.apiMethod]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Api.apiPath]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Api.apiProtocol]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Api.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Api.doc]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Api.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Api.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Api.name]
- | +-EntityFetchJoinedImpl [io.github.truenine.composeserver.rds.entities.Api.permissions]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.Api.rlv]
-
- 2024-02-18 11:51:18.312 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (a1 : io.github.truenine.composeserver.rds.entities.Api) {
- primaryTableReference : api as a1_0
- TableGroupJoins {
- left join LazyTableGroup (p1 : io.github.truenine.composeserver.rds.entities.Api.permissions) {
- primaryTableReference : permissions as p1_0
- }
- }
- }
- }
- }
-
- 2024-02-18 11:51:18.312 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: io.github.truenine.composeserver.rds.entities.Api
- 2024-02-18 11:51:18.312 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from api where id=?
- 2024-02-18 11:51:18.312 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update api set api_method=?,api_path=?,api_protocol=?,crd=?,doc=?,ldf=?,mrd=?,name=?,permissions_id=?,rlv=? where id=? and rlv=?
- 2024-02-18 11:51:18.312 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from api where id=? and rlv=?
- 2024-02-18 11:51:18.313 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : blr1_0
- 2024-02-18 11:51:18.313 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.BlackListRelation)] with identifierForTableGroup [com.tnmaster.entities.BlackListRelation] for NavigablePath [com.tnmaster.entities.BlackListRelation]
- 2024-02-18 11:51:18.313 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.BlackListRelation]
- | +-BasicFetch [com.tnmaster.entities.BlackListRelation.blackListId]
- | +-BasicFetch [com.tnmaster.entities.BlackListRelation.crd]
- | +-BasicFetch [com.tnmaster.entities.BlackListRelation.eventDoc]
- | +-BasicFetch [com.tnmaster.entities.BlackListRelation.ldf]
- | +-BasicFetch [com.tnmaster.entities.BlackListRelation.mrd]
- | +-BasicFetch [com.tnmaster.entities.BlackListRelation.reItemType]
- | +-BasicFetch [com.tnmaster.entities.BlackListRelation.reType]
- | +-BasicFetch [com.tnmaster.entities.BlackListRelation.refId]
- | +-BasicFetch [com.tnmaster.entities.BlackListRelation.rlv]
- | \-BasicFetch [com.tnmaster.entities.BlackListRelation.userInfoId]
-
- 2024-02-18 11:51:18.313 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (blr1 : com.tnmaster.entities.BlackListRelation) {
- primaryTableReference : black_list_relation as blr1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.313 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `com.tnmaster.entities.BlackListRelation` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.313 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : blr1_0
- 2024-02-18 11:51:18.313 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.BlackListRelation)] with identifierForTableGroup [com.tnmaster.entities.BlackListRelation] for NavigablePath [com.tnmaster.entities.BlackListRelation]
- 2024-02-18 11:51:18.313 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.BlackListRelation]
- | +-BasicFetch [com.tnmaster.entities.BlackListRelation.blackListId]
- | +-BasicFetch [com.tnmaster.entities.BlackListRelation.crd]
- | +-BasicFetch [com.tnmaster.entities.BlackListRelation.eventDoc]
- | +-BasicFetch [com.tnmaster.entities.BlackListRelation.ldf]
- | +-BasicFetch [com.tnmaster.entities.BlackListRelation.mrd]
- | +-BasicFetch [com.tnmaster.entities.BlackListRelation.reItemType]
- | +-BasicFetch [com.tnmaster.entities.BlackListRelation.reType]
- | +-BasicFetch [com.tnmaster.entities.BlackListRelation.refId]
- | +-BasicFetch [com.tnmaster.entities.BlackListRelation.rlv]
- | \-BasicFetch [com.tnmaster.entities.BlackListRelation.userInfoId]
-
- 2024-02-18 11:51:18.314 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (blr1 : com.tnmaster.entities.BlackListRelation) {
- primaryTableReference : black_list_relation as blr1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.314 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: com.tnmaster.entities.BlackListRelation
- 2024-02-18 11:51:18.314 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from black_list_relation where id=?
- 2024-02-18 11:51:18.314 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update black_list_relation set black_list_id=?,crd=?,event_doc=?,ldf=?,mrd=?,re_item_type=?,re_type=?,ref_id=?,rlv=?,user_info_id=? where id=? and rlv=?
- 2024-02-18 11:51:18.314 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from black_list_relation where id=? and rlv=?
- 2024-02-18 11:51:18.314 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : p1_0
- 2024-02-18 11:51:18.314 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.Permissions)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.Permissions] for NavigablePath [io.github.truenine.composeserver.rds.entities.Permissions]
- 2024-02-18 11:51:18.314 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.Permissions]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Permissions.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Permissions.doc]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Permissions.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Permissions.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Permissions.name]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.Permissions.rlv]
-
- 2024-02-18 11:51:18.315 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (p1 : io.github.truenine.composeserver.rds.entities.Permissions) {
- primaryTableReference : permissions as p1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.315 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `io.github.truenine.composeserver.rds.entities.Permissions` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.315 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : p1_0
- 2024-02-18 11:51:18.315 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.Permissions)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.Permissions] for NavigablePath [io.github.truenine.composeserver.rds.entities.Permissions]
- 2024-02-18 11:51:18.315 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.Permissions]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Permissions.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Permissions.doc]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Permissions.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Permissions.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Permissions.name]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.Permissions.rlv]
-
- 2024-02-18 11:51:18.315 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (p1 : io.github.truenine.composeserver.rds.entities.Permissions) {
- primaryTableReference : permissions as p1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.315 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: io.github.truenine.composeserver.rds.entities.Permissions
- 2024-02-18 11:51:18.315 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from permissions where id=?
- 2024-02-18 11:51:18.315 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update permissions set crd=?,doc=?,ldf=?,mrd=?,name=?,rlv=? where id=? and rlv=?
- 2024-02-18 11:51:18.315 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from permissions where id=? and rlv=?
- 2024-02-18 11:51:18.315 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : hc1_0
- 2024-02-18 11:51:18.315 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.cert.HouseholdCert)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert] for NavigablePath [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert]
- 2024-02-18 11:51:18.315 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.addressDetailsId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.birthday]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.bloodType]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.code]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.educationLevel]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.ethnicGroup]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.gender]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.height]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.householdPrimaryName]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.householdType]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.idcardCode]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.issueDate]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.issueOrgan]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.militaryServiceStatus]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.name]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.occupation]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.oldName]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.originAddressDetailsId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.placeBirthAddressDetailsId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.relationship]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.rlv]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.serviceAddressDetailsId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.userId]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.userInfoId]
-
- 2024-02-18 11:51:18.316 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (hc1 : io.github.truenine.composeserver.rds.entities.cert.HouseholdCert) {
- primaryTableReference : household_cert as hc1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.316 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `io.github.truenine.composeserver.rds.entities.cert.HouseholdCert` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.316 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : hc1_0
- 2024-02-18 11:51:18.316 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.cert.HouseholdCert)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert] for NavigablePath [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert]
- 2024-02-18 11:51:18.316 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.addressDetailsId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.birthday]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.bloodType]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.code]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.educationLevel]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.ethnicGroup]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.gender]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.height]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.householdPrimaryName]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.householdType]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.idcardCode]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.issueDate]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.issueOrgan]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.militaryServiceStatus]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.name]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.occupation]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.oldName]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.originAddressDetailsId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.placeBirthAddressDetailsId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.relationship]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.rlv]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.serviceAddressDetailsId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.userId]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.HouseholdCert.userInfoId]
-
- 2024-02-18 11:51:18.316 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (hc1 : io.github.truenine.composeserver.rds.entities.cert.HouseholdCert) {
- primaryTableReference : household_cert as hc1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.316 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: io.github.truenine.composeserver.rds.entities.cert.HouseholdCert
- 2024-02-18 11:51:18.316 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from household_cert where id=?
- 2024-02-18 11:51:18.316 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update household_cert set address_details_id=?,birthday=?,blood_type=?,code=?,crd=?,education_level=?,ethnic_group=?,gender=?,height=?,household_primary_name=?,household_type=?,idcard_code=?,issue_date=?,issue_organ=?,ldf=?,military_service_status=?,mrd=?,name=?,occupation=?,old_name=?,origin_address_details_id=?,place_birth_address_details_id=?,relationship=?,rlv=?,service_address_details_id=?,user_id=?,user_info_id=? where id=? and rlv=?
- 2024-02-18 11:51:18.316 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from household_cert where id=? and rlv=?
- 2024-02-18 11:51:18.317 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : u1_0
- 2024-02-18 11:51:18.317 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.Usr)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.Usr] for NavigablePath [io.github.truenine.composeserver.rds.entities.Usr]
- 2024-02-18 11:51:18.317 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.Usr]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Usr.account]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Usr.banTime]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Usr.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Usr.createUserId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Usr.doc]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Usr.lastLoginTime]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Usr.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Usr.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Usr.nickName]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Usr.pwdEnc]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.Usr.rlv]
-
- 2024-02-18 11:51:18.317 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (u1 : io.github.truenine.composeserver.rds.entities.Usr) {
- primaryTableReference : usr as u1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.317 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `io.github.truenine.composeserver.rds.entities.Usr` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.317 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : u1_0
- 2024-02-18 11:51:18.317 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.Usr)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.Usr] for NavigablePath [io.github.truenine.composeserver.rds.entities.Usr]
- 2024-02-18 11:51:18.317 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.Usr]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Usr.account]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Usr.banTime]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Usr.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Usr.createUserId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Usr.doc]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Usr.lastLoginTime]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Usr.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Usr.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Usr.nickName]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Usr.pwdEnc]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.Usr.rlv]
-
- 2024-02-18 11:51:18.317 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (u1 : io.github.truenine.composeserver.rds.entities.Usr) {
- primaryTableReference : usr as u1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.317 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: io.github.truenine.composeserver.rds.entities.Usr
- 2024-02-18 11:51:18.317 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from usr where id=?
- 2024-02-18 11:51:18.317 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update usr set account=?,ban_time=?,crd=?,create_user_id=?,doc=?,last_login_time=?,ldf=?,mrd=?,nick_name=?,pwd_enc=?,rlv=? where id=? and rlv=?
- 2024-02-18 11:51:18.317 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from usr where id=? and rlv=?
- 2024-02-18 11:51:18.318 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : bc1_0
- 2024-02-18 11:51:18.318 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.cert.BizCert)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.cert.BizCert] for NavigablePath [io.github.truenine.composeserver.rds.entities.cert.BizCert]
- 2024-02-18 11:51:18.318 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.cert.BizCert]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BizCert.addressCode]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BizCert.addressDetailsId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BizCert.bizRange]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BizCert.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BizCert.createDate]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BizCert.issueDate]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BizCert.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BizCert.leaderName]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BizCert.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BizCert.regCapital]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BizCert.rlv]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BizCert.title]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BizCert.type]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BizCert.uniCreditCode]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BizCert.userId]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BizCert.userInfoId]
-
- 2024-02-18 11:51:18.318 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (bc1 : io.github.truenine.composeserver.rds.entities.cert.BizCert) {
- primaryTableReference : biz_cert as bc1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.318 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `io.github.truenine.composeserver.rds.entities.cert.BizCert` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.318 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : bc1_0
- 2024-02-18 11:51:18.318 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.cert.BizCert)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.cert.BizCert] for NavigablePath [io.github.truenine.composeserver.rds.entities.cert.BizCert]
- 2024-02-18 11:51:18.318 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.cert.BizCert]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BizCert.addressCode]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BizCert.addressDetailsId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BizCert.bizRange]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BizCert.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BizCert.createDate]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BizCert.issueDate]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BizCert.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BizCert.leaderName]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BizCert.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BizCert.regCapital]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BizCert.rlv]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BizCert.title]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BizCert.type]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BizCert.uniCreditCode]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BizCert.userId]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.cert.BizCert.userInfoId]
-
- 2024-02-18 11:51:18.318 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (bc1 : io.github.truenine.composeserver.rds.entities.cert.BizCert) {
- primaryTableReference : biz_cert as bc1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.318 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: io.github.truenine.composeserver.rds.entities.cert.BizCert
- 2024-02-18 11:51:18.318 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from biz_cert where id=?
- 2024-02-18 11:51:18.318 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update biz_cert set address_code=?,address_details_id=?,biz_range=?,crd=?,create_date=?,issue_date=?,ldf=?,leader_name=?,mrd=?,reg_capital=?,rlv=?,title=?,type=?,uni_credit_code=?,user_id=?,user_info_id=? where id=? and rlv=?
- 2024-02-18 11:51:18.318 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from biz_cert where id=? and rlv=?
- 2024-02-18 11:51:18.318 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : js1_0
- 2024-02-18 11:51:18.318 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.JobSeeker)] with identifierForTableGroup [com.tnmaster.entities.JobSeeker] for NavigablePath [com.tnmaster.entities.JobSeeker]
- 2024-02-18 11:51:18.319 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.JobSeeker]
- | +-BasicFetch [com.tnmaster.entities.JobSeeker.crd]
- | +-BasicFetch [com.tnmaster.entities.JobSeeker.createDatetime]
- | +-BasicFetch [com.tnmaster.entities.JobSeeker.degree]
- | +-BasicFetch [com.tnmaster.entities.JobSeeker.exAddressCode]
- | +-BasicFetch [com.tnmaster.entities.JobSeeker.exIndustryId]
- | +-BasicFetch [com.tnmaster.entities.JobSeeker.exMaxSalary]
- | +-BasicFetch [com.tnmaster.entities.JobSeeker.exMinSalary]
- | +-BasicFetch [com.tnmaster.entities.JobSeeker.exRemote]
- | +-BasicFetch [com.tnmaster.entities.JobSeeker.ldf]
- | +-BasicFetch [com.tnmaster.entities.JobSeeker.mrd]
- | +-BasicFetch [com.tnmaster.entities.JobSeeker.regAddressCode]
- | +-BasicFetch [com.tnmaster.entities.JobSeeker.rlv]
- | +-BasicFetch [com.tnmaster.entities.JobSeeker.rqSocial]
- | \-BasicFetch [com.tnmaster.entities.JobSeeker.userId]
-
- 2024-02-18 11:51:18.319 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (js1 : com.tnmaster.entities.JobSeeker) {
- primaryTableReference : job_seeker as js1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.319 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `com.tnmaster.entities.JobSeeker` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.319 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : js1_0
- 2024-02-18 11:51:18.319 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.JobSeeker)] with identifierForTableGroup [com.tnmaster.entities.JobSeeker] for NavigablePath [com.tnmaster.entities.JobSeeker]
- 2024-02-18 11:51:18.321 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.JobSeeker]
- | +-BasicFetch [com.tnmaster.entities.JobSeeker.crd]
- | +-BasicFetch [com.tnmaster.entities.JobSeeker.createDatetime]
- | +-BasicFetch [com.tnmaster.entities.JobSeeker.degree]
- | +-BasicFetch [com.tnmaster.entities.JobSeeker.exAddressCode]
- | +-BasicFetch [com.tnmaster.entities.JobSeeker.exIndustryId]
- | +-BasicFetch [com.tnmaster.entities.JobSeeker.exMaxSalary]
- | +-BasicFetch [com.tnmaster.entities.JobSeeker.exMinSalary]
- | +-BasicFetch [com.tnmaster.entities.JobSeeker.exRemote]
- | +-BasicFetch [com.tnmaster.entities.JobSeeker.ldf]
- | +-BasicFetch [com.tnmaster.entities.JobSeeker.mrd]
- | +-BasicFetch [com.tnmaster.entities.JobSeeker.regAddressCode]
- | +-BasicFetch [com.tnmaster.entities.JobSeeker.rlv]
- | +-BasicFetch [com.tnmaster.entities.JobSeeker.rqSocial]
- | \-BasicFetch [com.tnmaster.entities.JobSeeker.userId]
-
- 2024-02-18 11:51:18.322 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (js1 : com.tnmaster.entities.JobSeeker) {
- primaryTableReference : job_seeker as js1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.323 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: com.tnmaster.entities.JobSeeker
- 2024-02-18 11:51:18.323 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from job_seeker where id=?
- 2024-02-18 11:51:18.323 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update job_seeker set crd=?,create_datetime=?,degree=?,ex_address_code=?,ex_industry_id=?,ex_max_salary=?,ex_min_salary=?,ex_remote=?,ldf=?,mrd=?,reg_address_code=?,rlv=?,rq_social=?,user_id=? where id=? and rlv=?
- 2024-02-18 11:51:18.323 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from job_seeker where id=? and rlv=?
- 2024-02-18 11:51:18.323 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : fr1_0
- 2024-02-18 11:51:18.323 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.FullRole)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FullRole] for NavigablePath [io.github.truenine.composeserver.rds.entities.FullRole]
- 2024-02-18 11:51:18.323 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.FullRole]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullRole.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullRole.doc]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullRole.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullRole.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullRole.name]
- | +-SelectEagerCollectionFetch [io.github.truenine.composeserver.rds.entities.FullRole.permissions]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.FullRole.rlv]
-
- 2024-02-18 11:51:18.323 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (fr1 : io.github.truenine.composeserver.rds.entities.FullRole) {
- primaryTableReference : role as fr1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.323 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `io.github.truenine.composeserver.rds.entities.FullRole` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.323 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : fr1_0
- 2024-02-18 11:51:18.323 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.FullRole)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FullRole] for NavigablePath [io.github.truenine.composeserver.rds.entities.FullRole]
- 2024-02-18 11:51:18.323 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.FullRole]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullRole.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullRole.doc]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullRole.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullRole.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullRole.name]
- | +-SelectEagerCollectionFetch [io.github.truenine.composeserver.rds.entities.FullRole.permissions]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.FullRole.rlv]
-
- 2024-02-18 11:51:18.324 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (fr1 : io.github.truenine.composeserver.rds.entities.FullRole) {
- primaryTableReference : role as fr1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.324 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: io.github.truenine.composeserver.rds.entities.FullRole
- 2024-02-18 11:51:18.324 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from role where id=?
- 2024-02-18 11:51:18.324 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update role set crd=?,doc=?,ldf=?,mrd=?,name=?,rlv=? where id=? and rlv=?
- 2024-02-18 11:51:18.324 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from role where id=? and rlv=?
- 2024-02-18 11:51:18.324 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : urg1_0
- 2024-02-18 11:51:18.324 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup] for NavigablePath [io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup]
- 2024-02-18 11:51:18.324 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup.rlv]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup.roleGroupId]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup.userId]
-
- 2024-02-18 11:51:18.324 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (urg1 : io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup) {
- primaryTableReference : user_role_group as urg1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.326 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.326 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : urg1_0
- 2024-02-18 11:51:18.326 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup] for NavigablePath [io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup]
- 2024-02-18 11:51:18.326 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup.rlv]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup.roleGroupId]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup.userId]
-
- 2024-02-18 11:51:18.326 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (urg1 : io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup) {
- primaryTableReference : user_role_group as urg1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.326 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup
- 2024-02-18 11:51:18.326 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from user_role_group where id=?
- 2024-02-18 11:51:18.326 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update user_role_group set crd=?,ldf=?,mrd=?,rlv=?,role_group_id=?,user_id=? where id=? and rlv=?
- 2024-02-18 11:51:18.326 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from user_role_group where id=? and rlv=?
- 2024-02-18 11:51:18.326 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : bl1_0
- 2024-02-18 11:51:18.326 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.BlackList)] with identifierForTableGroup [com.tnmaster.entities.BlackList] for NavigablePath [com.tnmaster.entities.BlackList]
- 2024-02-18 11:51:18.327 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.BlackList]
- | +-BasicFetch [com.tnmaster.entities.BlackList.auditStatus]
- | +-BasicFetch [com.tnmaster.entities.BlackList.blackRefId]
- | +-BasicFetch [com.tnmaster.entities.BlackList.blackUserInfoId]
- | +-BasicFetch [com.tnmaster.entities.BlackList.crd]
- | +-BasicFetch [com.tnmaster.entities.BlackList.createDatetime]
- | +-BasicFetch [com.tnmaster.entities.BlackList.createUserId]
- | +-BasicFetch [com.tnmaster.entities.BlackList.eventDoc]
- | +-BasicFetch [com.tnmaster.entities.BlackList.ldf]
- | +-BasicFetch [com.tnmaster.entities.BlackList.mrd]
- | +-BasicFetch [com.tnmaster.entities.BlackList.reItemType]
- | +-BasicFetch [com.tnmaster.entities.BlackList.reportUserId]
- | +-BasicFetch [com.tnmaster.entities.BlackList.reportUserInfoId]
- | \-BasicFetch [com.tnmaster.entities.BlackList.rlv]
-
- 2024-02-18 11:51:18.327 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (bl1 : com.tnmaster.entities.BlackList) {
- primaryTableReference : black_list as bl1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.327 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `com.tnmaster.entities.BlackList` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.328 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : bl1_0
- 2024-02-18 11:51:18.328 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.BlackList)] with identifierForTableGroup [com.tnmaster.entities.BlackList] for NavigablePath [com.tnmaster.entities.BlackList]
- 2024-02-18 11:51:18.328 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.BlackList]
- | +-BasicFetch [com.tnmaster.entities.BlackList.auditStatus]
- | +-BasicFetch [com.tnmaster.entities.BlackList.blackRefId]
- | +-BasicFetch [com.tnmaster.entities.BlackList.blackUserInfoId]
- | +-BasicFetch [com.tnmaster.entities.BlackList.crd]
- | +-BasicFetch [com.tnmaster.entities.BlackList.createDatetime]
- | +-BasicFetch [com.tnmaster.entities.BlackList.createUserId]
- | +-BasicFetch [com.tnmaster.entities.BlackList.eventDoc]
- | +-BasicFetch [com.tnmaster.entities.BlackList.ldf]
- | +-BasicFetch [com.tnmaster.entities.BlackList.mrd]
- | +-BasicFetch [com.tnmaster.entities.BlackList.reItemType]
- | +-BasicFetch [com.tnmaster.entities.BlackList.reportUserId]
- | +-BasicFetch [com.tnmaster.entities.BlackList.reportUserInfoId]
- | \-BasicFetch [com.tnmaster.entities.BlackList.rlv]
-
- 2024-02-18 11:51:18.331 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (bl1 : com.tnmaster.entities.BlackList) {
- primaryTableReference : black_list as bl1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.331 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: com.tnmaster.entities.BlackList
- 2024-02-18 11:51:18.331 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from black_list where id=?
- 2024-02-18 11:51:18.331 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update black_list set audit_status=?,black_ref_id=?,black_user_info_id=?,crd=?,create_datetime=?,create_user_id=?,event_doc=?,ldf=?,mrd=?,re_item_type=?,report_user_id=?,report_user_info_id=?,rlv=? where id=? and rlv=?
- 2024-02-18 11:51:18.331 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from black_list where id=? and rlv=?
- 2024-02-18 11:51:18.331 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : j1_0
- 2024-02-18 11:51:18.331 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.Job)] with identifierForTableGroup [com.tnmaster.entities.Job] for NavigablePath [com.tnmaster.entities.Job]
- 2024-02-18 11:51:18.333 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.Job]
- | +-BasicFetch [com.tnmaster.entities.Job.addressCode]
- | +-BasicFetch [com.tnmaster.entities.Job.addressDetailsId]
- | +-BasicFetch [com.tnmaster.entities.Job.auditStatus]
- | +-BasicFetch [com.tnmaster.entities.Job.contactName]
- | +-BasicFetch [com.tnmaster.entities.Job.crd]
- | +-BasicFetch [com.tnmaster.entities.Job.createDatetime]
- | +-BasicFetch [com.tnmaster.entities.Job.degree]
- | +-BasicFetch [com.tnmaster.entities.Job.dispatchType]
- | +-BasicFetch [com.tnmaster.entities.Job.doc]
- | +-BasicFetch [com.tnmaster.entities.Job.endDate]
- | +-BasicFetch [com.tnmaster.entities.Job.enterpriseId]
- | +-BasicFetch [com.tnmaster.entities.Job.enterpriseType]
- | +-BasicFetch [com.tnmaster.entities.Job.enterpriseUserId]
- | +-BasicFetch [com.tnmaster.entities.Job.exYear]
- | +-BasicFetch [com.tnmaster.entities.Job.industryId]
- | +-BasicFetch [com.tnmaster.entities.Job.jobType]
- | +-BasicFetch [com.tnmaster.entities.Job.landline]
- | +-BasicFetch [com.tnmaster.entities.Job.ldf]
- | +-BasicFetch [com.tnmaster.entities.Job.maxManAge]
- | +-BasicFetch [com.tnmaster.entities.Job.maxSalary]
- | +-BasicFetch [com.tnmaster.entities.Job.maxWomanAge]
- | +-BasicFetch [com.tnmaster.entities.Job.minManAge]
- | +-BasicFetch [com.tnmaster.entities.Job.minSalary]
- | +-BasicFetch [com.tnmaster.entities.Job.minWomanAge]
- | +-BasicFetch [com.tnmaster.entities.Job.mrd]
- | +-BasicFetch [com.tnmaster.entities.Job.orderedWight]
- | +-BasicFetch [com.tnmaster.entities.Job.payday]
- | +-BasicFetch [com.tnmaster.entities.Job.phone]
- | +-BasicFetch [com.tnmaster.entities.Job.postPeriod]
- | +-BasicFetch [com.tnmaster.entities.Job.postResp]
- | +-BasicFetch [com.tnmaster.entities.Job.postType]
- | +-BasicFetch [com.tnmaster.entities.Job.qualification]
- | +-BasicFetch [com.tnmaster.entities.Job.rlv]
- | +-BasicFetch [com.tnmaster.entities.Job.rqAddressCode]
- | +-BasicFetch [com.tnmaster.entities.Job.rqCount]
- | +-BasicFetch [com.tnmaster.entities.Job.rqDisRule]
- | +-BasicFetch [com.tnmaster.entities.Job.rqGender]
- | +-BasicFetch [com.tnmaster.entities.Job.salaryCommissionRule]
- | +-BasicFetch [com.tnmaster.entities.Job.startDate]
- | +-BasicFetch [com.tnmaster.entities.Job.subsidy]
- | \-BasicFetch [com.tnmaster.entities.Job.title]
-
- 2024-02-18 11:51:18.333 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (j1 : com.tnmaster.entities.Job) {
- primaryTableReference : job as j1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.333 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `com.tnmaster.entities.Job` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.334 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : j1_0
- 2024-02-18 11:51:18.334 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.Job)] with identifierForTableGroup [com.tnmaster.entities.Job] for NavigablePath [com.tnmaster.entities.Job]
- 2024-02-18 11:51:18.334 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.Job]
- | +-BasicFetch [com.tnmaster.entities.Job.addressCode]
- | +-BasicFetch [com.tnmaster.entities.Job.addressDetailsId]
- | +-BasicFetch [com.tnmaster.entities.Job.auditStatus]
- | +-BasicFetch [com.tnmaster.entities.Job.contactName]
- | +-BasicFetch [com.tnmaster.entities.Job.crd]
- | +-BasicFetch [com.tnmaster.entities.Job.createDatetime]
- | +-BasicFetch [com.tnmaster.entities.Job.degree]
- | +-BasicFetch [com.tnmaster.entities.Job.dispatchType]
- | +-BasicFetch [com.tnmaster.entities.Job.doc]
- | +-BasicFetch [com.tnmaster.entities.Job.endDate]
- | +-BasicFetch [com.tnmaster.entities.Job.enterpriseId]
- | +-BasicFetch [com.tnmaster.entities.Job.enterpriseType]
- | +-BasicFetch [com.tnmaster.entities.Job.enterpriseUserId]
- | +-BasicFetch [com.tnmaster.entities.Job.exYear]
- | +-BasicFetch [com.tnmaster.entities.Job.industryId]
- | +-BasicFetch [com.tnmaster.entities.Job.jobType]
- | +-BasicFetch [com.tnmaster.entities.Job.landline]
- | +-BasicFetch [com.tnmaster.entities.Job.ldf]
- | +-BasicFetch [com.tnmaster.entities.Job.maxManAge]
- | +-BasicFetch [com.tnmaster.entities.Job.maxSalary]
- | +-BasicFetch [com.tnmaster.entities.Job.maxWomanAge]
- | +-BasicFetch [com.tnmaster.entities.Job.minManAge]
- | +-BasicFetch [com.tnmaster.entities.Job.minSalary]
- | +-BasicFetch [com.tnmaster.entities.Job.minWomanAge]
- | +-BasicFetch [com.tnmaster.entities.Job.mrd]
- | +-BasicFetch [com.tnmaster.entities.Job.orderedWight]
- | +-BasicFetch [com.tnmaster.entities.Job.payday]
- | +-BasicFetch [com.tnmaster.entities.Job.phone]
- | +-BasicFetch [com.tnmaster.entities.Job.postPeriod]
- | +-BasicFetch [com.tnmaster.entities.Job.postResp]
- | +-BasicFetch [com.tnmaster.entities.Job.postType]
- | +-BasicFetch [com.tnmaster.entities.Job.qualification]
- | +-BasicFetch [com.tnmaster.entities.Job.rlv]
- | +-BasicFetch [com.tnmaster.entities.Job.rqAddressCode]
- | +-BasicFetch [com.tnmaster.entities.Job.rqCount]
- | +-BasicFetch [com.tnmaster.entities.Job.rqDisRule]
- | +-BasicFetch [com.tnmaster.entities.Job.rqGender]
- | +-BasicFetch [com.tnmaster.entities.Job.salaryCommissionRule]
- | +-BasicFetch [com.tnmaster.entities.Job.startDate]
- | +-BasicFetch [com.tnmaster.entities.Job.subsidy]
- | \-BasicFetch [com.tnmaster.entities.Job.title]
-
- 2024-02-18 11:51:18.334 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (j1 : com.tnmaster.entities.Job) {
- primaryTableReference : job as j1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.334 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: com.tnmaster.entities.Job
- 2024-02-18 11:51:18.334 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from job where id=?
- 2024-02-18 11:51:18.334 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update job set address_code=?,address_details_id=?,audit_status=?,contact_name=?,crd=?,create_datetime=?,degree=?,dispatch_type=?,doc=?,end_date=?,enterprise_id=?,enterprise_type=?,enterprise_user_id=?,ex_year=?,industry_id=?,job_type=?,landline=?,ldf=?,max_man_age=?,max_salary=?,max_woman_age=?,min_man_age=?,min_salary=?,min_woman_age=?,mrd=?,ordered_weight=?,payday=?,phone=?,post_period=?,post_resp=?,post_type=?,qualification=?,rlv=?,rq_address_code=?,rq_count=?,rq_dis_rule=?,rq_gender=?,salary_commission_rule=?,start_date=?,subsidy=?,title=? where id=? and rlv=?
- 2024-02-18 11:51:18.334 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from job where id=? and rlv=?
- 2024-02-18 11:51:18.334 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : ee1_0
- 2024-02-18 11:51:18.334 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.EnterpriseEmail)] with identifierForTableGroup [com.tnmaster.entities.EnterpriseEmail] for NavigablePath [com.tnmaster.entities.EnterpriseEmail]
- 2024-02-18 11:51:18.334 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.EnterpriseEmail]
- | +-BasicFetch [com.tnmaster.entities.EnterpriseEmail.crd]
- | +-BasicFetch [com.tnmaster.entities.EnterpriseEmail.email]
- | +-BasicFetch [com.tnmaster.entities.EnterpriseEmail.enterpriseId]
- | +-BasicFetch [com.tnmaster.entities.EnterpriseEmail.ldf]
- | +-BasicFetch [com.tnmaster.entities.EnterpriseEmail.mrd]
- | \-BasicFetch [com.tnmaster.entities.EnterpriseEmail.rlv]
-
- 2024-02-18 11:51:18.335 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (ee1 : com.tnmaster.entities.EnterpriseEmail) {
- primaryTableReference : enterprise_email as ee1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.335 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `com.tnmaster.entities.EnterpriseEmail` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.335 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : ee1_0
- 2024-02-18 11:51:18.335 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.EnterpriseEmail)] with identifierForTableGroup [com.tnmaster.entities.EnterpriseEmail] for NavigablePath [com.tnmaster.entities.EnterpriseEmail]
- 2024-02-18 11:51:18.335 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.EnterpriseEmail]
- | +-BasicFetch [com.tnmaster.entities.EnterpriseEmail.crd]
- | +-BasicFetch [com.tnmaster.entities.EnterpriseEmail.email]
- | +-BasicFetch [com.tnmaster.entities.EnterpriseEmail.enterpriseId]
- | +-BasicFetch [com.tnmaster.entities.EnterpriseEmail.ldf]
- | +-BasicFetch [com.tnmaster.entities.EnterpriseEmail.mrd]
- | \-BasicFetch [com.tnmaster.entities.EnterpriseEmail.rlv]
-
- 2024-02-18 11:51:18.335 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (ee1 : com.tnmaster.entities.EnterpriseEmail) {
- primaryTableReference : enterprise_email as ee1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.335 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: com.tnmaster.entities.EnterpriseEmail
- 2024-02-18 11:51:18.335 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from enterprise_email where id=?
- 2024-02-18 11:51:18.335 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update enterprise_email set crd=?,email=?,enterprise_id=?,ldf=?,mrd=?,rlv=? where id=? and rlv=?
- 2024-02-18 11:51:18.335 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from enterprise_email where id=? and rlv=?
- 2024-02-18 11:51:18.335 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : a1_0
- 2024-02-18 11:51:18.335 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.Audit)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.Audit] for NavigablePath [io.github.truenine.composeserver.rds.entities.Audit]
- 2024-02-18 11:51:18.335 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.Audit]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Audit.auditDeviceId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Audit.auditIp]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Audit.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Audit.createDatetime]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Audit.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Audit.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Audit.refId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Audit.refType]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Audit.remark]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Audit.rlv]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.Audit.state]
-
- 2024-02-18 11:51:18.335 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (a1 : io.github.truenine.composeserver.rds.entities.Audit) {
- primaryTableReference : audit as a1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.336 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `io.github.truenine.composeserver.rds.entities.Audit` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.336 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : a1_0
- 2024-02-18 11:51:18.336 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.Audit)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.Audit] for NavigablePath [io.github.truenine.composeserver.rds.entities.Audit]
- 2024-02-18 11:51:18.336 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.Audit]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Audit.auditDeviceId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Audit.auditIp]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Audit.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Audit.createDatetime]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Audit.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Audit.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Audit.refId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Audit.refType]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Audit.remark]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.Audit.rlv]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.Audit.state]
-
- 2024-02-18 11:51:18.336 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (a1 : io.github.truenine.composeserver.rds.entities.Audit) {
- primaryTableReference : audit as a1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.336 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: io.github.truenine.composeserver.rds.entities.Audit
- 2024-02-18 11:51:18.336 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from audit where id=?
- 2024-02-18 11:51:18.336 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update audit set audit_device_id=?,audit_ip=?,crd=?,create_datetime=?,ldf=?,mrd=?,ref_id=?,ref_type=?,remark=?,rlv=?,status=? where id=? and rlv=?
- 2024-02-18 11:51:18.336 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from audit where id=? and rlv=?
- 2024-02-18 11:51:18.336 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : blblt1_0
- 2024-02-18 11:51:18.336 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.BlackListBlackListTag)] with identifierForTableGroup [com.tnmaster.entities.BlackListBlackListTag] for NavigablePath [com.tnmaster.entities.BlackListBlackListTag]
- 2024-02-18 11:51:18.336 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.BlackListBlackListTag]
- | +-BasicFetch [com.tnmaster.entities.BlackListBlackListTag.blackListId]
- | +-BasicFetch [com.tnmaster.entities.BlackListBlackListTag.crd]
- | +-BasicFetch [com.tnmaster.entities.BlackListBlackListTag.ldf]
- | +-BasicFetch [com.tnmaster.entities.BlackListBlackListTag.mrd]
- | +-BasicFetch [com.tnmaster.entities.BlackListBlackListTag.rlv]
- | \-BasicFetch [com.tnmaster.entities.BlackListBlackListTag.tagId]
-
- 2024-02-18 11:51:18.336 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (blblt1 : com.tnmaster.entities.BlackListBlackListTag) {
- primaryTableReference : black_list_black_list_tag as blblt1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.336 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `com.tnmaster.entities.BlackListBlackListTag` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.336 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : blblt1_0
- 2024-02-18 11:51:18.336 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.BlackListBlackListTag)] with identifierForTableGroup [com.tnmaster.entities.BlackListBlackListTag] for NavigablePath [com.tnmaster.entities.BlackListBlackListTag]
- 2024-02-18 11:51:18.337 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.BlackListBlackListTag]
- | +-BasicFetch [com.tnmaster.entities.BlackListBlackListTag.blackListId]
- | +-BasicFetch [com.tnmaster.entities.BlackListBlackListTag.crd]
- | +-BasicFetch [com.tnmaster.entities.BlackListBlackListTag.ldf]
- | +-BasicFetch [com.tnmaster.entities.BlackListBlackListTag.mrd]
- | +-BasicFetch [com.tnmaster.entities.BlackListBlackListTag.rlv]
- | \-BasicFetch [com.tnmaster.entities.BlackListBlackListTag.tagId]
-
- 2024-02-18 11:51:18.337 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (blblt1 : com.tnmaster.entities.BlackListBlackListTag) {
- primaryTableReference : black_list_black_list_tag as blblt1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.337 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: com.tnmaster.entities.BlackListBlackListTag
- 2024-02-18 11:51:18.337 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from black_list_black_list_tag where id=?
- 2024-02-18 11:51:18.337 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update black_list_black_list_tag set black_list_id=?,crd=?,ldf=?,mrd=?,rlv=?,tag_id=? where id=? and rlv=?
- 2024-02-18 11:51:18.337 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from black_list_black_list_tag where id=? and rlv=?
- 2024-02-18 11:51:18.337 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : fsh1_0
- 2024-02-18 11:51:18.337 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory] for NavigablePath [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory]
- 2024-02-18 11:51:18.337 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory.checksum]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory.desc]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory.execOn]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory.installedByDatabaseAccount]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory.installedOn]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory.rank]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory.rlv]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory.script]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory.success]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory.type]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory.version]
-
- 2024-02-18 11:51:18.337 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (fsh1 : io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory) {
- primaryTableReference : flyway_schema_history as fsh1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.337 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.337 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : fsh1_0
- 2024-02-18 11:51:18.337 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory] for NavigablePath [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory]
- 2024-02-18 11:51:18.337 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory.checksum]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory.desc]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory.execOn]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory.installedByDatabaseAccount]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory.installedOn]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory.rank]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory.rlv]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory.script]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory.success]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory.type]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory.version]
-
- 2024-02-18 11:51:18.338 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (fsh1 : io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory) {
- primaryTableReference : flyway_schema_history as fsh1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.338 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: io.github.truenine.composeserver.rds.entities.FlywaySchemaHistory
- 2024-02-18 11:51:18.338 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from flyway_schema_history where id=?
- 2024-02-18 11:51:18.338 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update flyway_schema_history set checksum=?,crd=?,description=?,execution_time=?,installed_by=?,installed_on=?,ldf=?,mrd=?,installed_rank=?,rlv=?,script=?,success=?,type=?,version=? where id=? and rlv=?
- 2024-02-18 11:51:18.338 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from flyway_schema_history where id=? and rlv=?
- 2024-02-18 11:51:18.338 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : fui1_0
- 2024-02-18 11:51:18.338 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.FullUserInfo)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FullUserInfo] for NavigablePath [io.github.truenine.composeserver.rds.entities.FullUserInfo]
- 2024-02-18 11:51:18.338 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@36806af3] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FullUserInfo.addressDetails] for NavigablePath [io.github.truenine.composeserver.rds.entities.FullUserInfo.addressDetails]
- 2024-02-18 11:51:18.338 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : ad1_0
- 2024-02-18 11:51:18.338 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@53517736] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FullUserInfo.avatarImage] for NavigablePath [io.github.truenine.composeserver.rds.entities.FullUserInfo.avatarImage]
- 2024-02-18 11:51:18.338 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : ai1_0
- 2024-02-18 11:51:18.338 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@379327f3] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FullUserInfo.avatarImage.base] for NavigablePath [io.github.truenine.composeserver.rds.entities.FullUserInfo.avatarImage.base]
- 2024-02-18 11:51:18.338 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : b1_0
- 2024-02-18 11:51:18.338 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@6ba998e3] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FullUserInfo.usr] for NavigablePath [io.github.truenine.composeserver.rds.entities.FullUserInfo.usr]
- 2024-02-18 11:51:18.338 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : u1_0
- 2024-02-18 11:51:18.338 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.FullUserInfo]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUserInfo.addressCode]
- | +-EntityFetchJoinedImpl [io.github.truenine.composeserver.rds.entities.FullUserInfo.addressDetails]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUserInfo.addressDetailsId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUserInfo.addressId]
- | +-EntityFetchJoinedImpl [io.github.truenine.composeserver.rds.entities.FullUserInfo.avatarImage]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUserInfo.avatarImgId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUserInfo.birthday]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUserInfo.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUserInfo.createUserId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUserInfo.email]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUserInfo.firstName]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUserInfo.gender]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUserInfo.idCard]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUserInfo.lastName]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUserInfo.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUserInfo.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUserInfo.phone]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUserInfo.pri]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUserInfo.qqAccount]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUserInfo.qqOpenid]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUserInfo.rlv]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUserInfo.sparePhone]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUserInfo.userId]
- | +-EntityFetchJoinedImpl [io.github.truenine.composeserver.rds.entities.FullUserInfo.usr]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUserInfo.wechatAccount]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUserInfo.wechatAuthid]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUserInfo.wechatOpenid]
-
- 2024-02-18 11:51:18.339 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (fui1 : io.github.truenine.composeserver.rds.entities.FullUserInfo) {
- primaryTableReference : user_info as fui1_0
- TableGroupJoins {
- left join LazyTableGroup (ad1 : io.github.truenine.composeserver.rds.entities.FullUserInfo.addressDetails) {
- primaryTableReference : address_details as ad1_0
- }
- left join LazyTableGroup (ai1 : io.github.truenine.composeserver.rds.entities.FullUserInfo.avatarImage) {
- primaryTableReference : attachment as ai1_0
- TableGroupJoins {
- left join LazyTableGroup (b1 : io.github.truenine.composeserver.rds.entities.FullUserInfo.avatarImage.base) {
- primaryTableReference : attachment as b1_0
- }
- }
- }
- left join LazyTableGroup (u1 : io.github.truenine.composeserver.rds.entities.FullUserInfo.usr) {
- primaryTableReference : usr as u1_0
- }
- }
- }
- }
- }
-
- 2024-02-18 11:51:18.339 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `io.github.truenine.composeserver.rds.entities.FullUserInfo` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.339 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : fui1_0
- 2024-02-18 11:51:18.339 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.FullUserInfo)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FullUserInfo] for NavigablePath [io.github.truenine.composeserver.rds.entities.FullUserInfo]
- 2024-02-18 11:51:18.339 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@28f9873c] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FullUserInfo.addressDetails] for NavigablePath [io.github.truenine.composeserver.rds.entities.FullUserInfo.addressDetails]
- 2024-02-18 11:51:18.339 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : ad1_0
- 2024-02-18 11:51:18.339 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@fb07c40] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FullUserInfo.avatarImage] for NavigablePath [io.github.truenine.composeserver.rds.entities.FullUserInfo.avatarImage]
- 2024-02-18 11:51:18.339 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : ai1_0
- 2024-02-18 11:51:18.339 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@c7caa29] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FullUserInfo.avatarImage.base] for NavigablePath [io.github.truenine.composeserver.rds.entities.FullUserInfo.avatarImage.base]
- 2024-02-18 11:51:18.339 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : b1_0
- 2024-02-18 11:51:18.339 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@56f809e5] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FullUserInfo.usr] for NavigablePath [io.github.truenine.composeserver.rds.entities.FullUserInfo.usr]
- 2024-02-18 11:51:18.339 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : u1_0
- 2024-02-18 11:51:18.348 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.FullUserInfo]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUserInfo.addressCode]
- | +-EntityFetchJoinedImpl [io.github.truenine.composeserver.rds.entities.FullUserInfo.addressDetails]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUserInfo.addressDetailsId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUserInfo.addressId]
- | +-EntityFetchJoinedImpl [io.github.truenine.composeserver.rds.entities.FullUserInfo.avatarImage]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUserInfo.avatarImgId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUserInfo.birthday]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUserInfo.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUserInfo.createUserId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUserInfo.email]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUserInfo.firstName]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUserInfo.gender]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUserInfo.idCard]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUserInfo.lastName]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUserInfo.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUserInfo.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUserInfo.phone]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUserInfo.pri]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUserInfo.qqAccount]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUserInfo.qqOpenid]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUserInfo.rlv]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUserInfo.sparePhone]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUserInfo.userId]
- | +-EntityFetchJoinedImpl [io.github.truenine.composeserver.rds.entities.FullUserInfo.usr]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUserInfo.wechatAccount]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUserInfo.wechatAuthid]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.FullUserInfo.wechatOpenid]
-
- 2024-02-18 11:51:18.348 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (fui1 : io.github.truenine.composeserver.rds.entities.FullUserInfo) {
- primaryTableReference : user_info as fui1_0
- TableGroupJoins {
- left join LazyTableGroup (ad1 : io.github.truenine.composeserver.rds.entities.FullUserInfo.addressDetails) {
- primaryTableReference : address_details as ad1_0
- }
- left join LazyTableGroup (ai1 : io.github.truenine.composeserver.rds.entities.FullUserInfo.avatarImage) {
- primaryTableReference : attachment as ai1_0
- TableGroupJoins {
- left join LazyTableGroup (b1 : io.github.truenine.composeserver.rds.entities.FullUserInfo.avatarImage.base) {
- primaryTableReference : attachment as b1_0
- }
- }
- }
- left join LazyTableGroup (u1 : io.github.truenine.composeserver.rds.entities.FullUserInfo.usr) {
- primaryTableReference : usr as u1_0
- }
- }
- }
- }
- }
-
- 2024-02-18 11:51:18.348 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: io.github.truenine.composeserver.rds.entities.FullUserInfo
- 2024-02-18 11:51:18.348 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from user_info where id=?
- 2024-02-18 11:51:18.348 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update user_info set address_code=?,address_details_id=?,address_id=?,avatar_img_id=?,birthday=?,crd=?,create_user_id=?,email=?,first_name=?,gender=?,id_card=?,last_name=?,ldf=?,mrd=?,phone=?,pri=?,qq_account=?,qq_openid=?,rlv=?,spare_phone=?,user_id=?,wechat_account=?,wechat_authid=?,wechat_openid=? where id=? and rlv=?
- 2024-02-18 11:51:18.348 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from user_info where id=? and rlv=?
- 2024-02-18 11:51:18.348 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : rcr1_0
- 2024-02-18 11:51:18.348 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.RqCertRule)] with identifierForTableGroup [com.tnmaster.entities.RqCertRule] for NavigablePath [com.tnmaster.entities.RqCertRule]
- 2024-02-18 11:51:18.349 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.RqCertRule]
- | +-BasicFetch [com.tnmaster.entities.RqCertRule.coType]
- | +-BasicFetch [com.tnmaster.entities.RqCertRule.crd]
- | +-BasicFetch [com.tnmaster.entities.RqCertRule.doType]
- | +-BasicFetch [com.tnmaster.entities.RqCertRule.ldf]
- | +-BasicFetch [com.tnmaster.entities.RqCertRule.mrd]
- | +-BasicFetch [com.tnmaster.entities.RqCertRule.poType]
- | +-BasicFetch [com.tnmaster.entities.RqCertRule.remark]
- | +-BasicFetch [com.tnmaster.entities.RqCertRule.rlv]
- | +-BasicFetch [com.tnmaster.entities.RqCertRule.rq]
- | \-BasicFetch [com.tnmaster.entities.RqCertRule.title]
-
- 2024-02-18 11:51:18.349 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (rcr1 : com.tnmaster.entities.RqCertRule) {
- primaryTableReference : rq_cert_rule as rcr1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.349 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `com.tnmaster.entities.RqCertRule` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.349 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : rcr1_0
- 2024-02-18 11:51:18.349 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.RqCertRule)] with identifierForTableGroup [com.tnmaster.entities.RqCertRule] for NavigablePath [com.tnmaster.entities.RqCertRule]
- 2024-02-18 11:51:18.349 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [com.tnmaster.entities.RqCertRule]
- | +-BasicFetch [com.tnmaster.entities.RqCertRule.coType]
- | +-BasicFetch [com.tnmaster.entities.RqCertRule.crd]
- | +-BasicFetch [com.tnmaster.entities.RqCertRule.doType]
- | +-BasicFetch [com.tnmaster.entities.RqCertRule.ldf]
- | +-BasicFetch [com.tnmaster.entities.RqCertRule.mrd]
- | +-BasicFetch [com.tnmaster.entities.RqCertRule.poType]
- | +-BasicFetch [com.tnmaster.entities.RqCertRule.remark]
- | +-BasicFetch [com.tnmaster.entities.RqCertRule.rlv]
- | +-BasicFetch [com.tnmaster.entities.RqCertRule.rq]
- | \-BasicFetch [com.tnmaster.entities.RqCertRule.title]
-
- 2024-02-18 11:51:18.349 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (rcr1 : com.tnmaster.entities.RqCertRule) {
- primaryTableReference : rq_cert_rule as rcr1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.349 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: com.tnmaster.entities.RqCertRule
- 2024-02-18 11:51:18.349 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from rq_cert_rule where id=?
- 2024-02-18 11:51:18.349 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update rq_cert_rule set co_type=?,crd=?,do_type=?,ldf=?,mrd=?,po_type=?,remark=?,rlv=?,rq=?,title=? where id=? and rlv=?
- 2024-02-18 11:51:18.349 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from rq_cert_rule where id=? and rlv=?
- 2024-02-18 11:51:18.349 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : fad1_0
- 2024-02-18 11:51:18.349 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.FullAddressDetails)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FullAddressDetails] for NavigablePath [io.github.truenine.composeserver.rds.entities.FullAddressDetails]
- 2024-02-18 11:51:18.349 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@4e1a19a3] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FullAddressDetails.address] for NavigablePath [io.github.truenine.composeserver.rds.entities.FullAddressDetails.address]
- 2024-02-18 11:51:18.350 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : a1_0
- 2024-02-18 11:51:18.350 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.FullAddressDetails]
- | +-EntityFetchJoinedImpl [io.github.truenine.composeserver.rds.entities.FullAddressDetails.address]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddressDetails.addressCode]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddressDetails.addressDetails]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddressDetails.addressId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddressDetails.center]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddressDetails.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddressDetails.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddressDetails.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddressDetails.name]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddressDetails.phone]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddressDetails.rlv]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddressDetails.userId]
-
- 2024-02-18 11:51:18.350 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (fad1 : io.github.truenine.composeserver.rds.entities.FullAddressDetails) {
- primaryTableReference : address_details as fad1_0
- TableGroupJoins {
- left join LazyTableGroup (a1 : io.github.truenine.composeserver.rds.entities.FullAddressDetails.address) {
- primaryTableReference : address as a1_0
- }
- }
- }
- }
- }
-
- 2024-02-18 11:51:18.350 [, - main] DEBUG org.hibernate.orm.loader.multi - Batch fetching enabled for `io.github.truenine.composeserver.rds.entities.FullAddressDetails` (entity) using ARRAY strategy : 84
- 2024-02-18 11:51:18.350 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : fad1_0
- 2024-02-18 11:51:18.350 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.FullAddressDetails)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FullAddressDetails] for NavigablePath [io.github.truenine.composeserver.rds.entities.FullAddressDetails]
- 2024-02-18 11:51:18.350 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@3d21400c] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FullAddressDetails.address] for NavigablePath [io.github.truenine.composeserver.rds.entities.FullAddressDetails.address]
- 2024-02-18 11:51:18.350 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : a1_0
- 2024-02-18 11:51:18.350 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-EntityResultImpl [io.github.truenine.composeserver.rds.entities.FullAddressDetails]
- | +-EntityFetchJoinedImpl [io.github.truenine.composeserver.rds.entities.FullAddressDetails.address]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddressDetails.addressCode]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddressDetails.addressDetails]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddressDetails.addressId]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddressDetails.center]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddressDetails.crd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddressDetails.ldf]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddressDetails.mrd]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddressDetails.name]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddressDetails.phone]
- | +-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddressDetails.rlv]
- | \-BasicFetch [io.github.truenine.composeserver.rds.entities.FullAddressDetails.userId]
-
- 2024-02-18 11:51:18.350 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- StandardTableGroup (fad1 : io.github.truenine.composeserver.rds.entities.FullAddressDetails) {
- primaryTableReference : address_details as fad1_0
- TableGroupJoins {
- left join LazyTableGroup (a1 : io.github.truenine.composeserver.rds.entities.FullAddressDetails.address) {
- primaryTableReference : address as a1_0
- }
- }
- }
- }
- }
-
- 2024-02-18 11:51:18.351 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Static SQL for entity: io.github.truenine.composeserver.rds.entities.FullAddressDetails
- 2024-02-18 11:51:18.351 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Version select: select rlv as version_ from address_details where id=?
- 2024-02-18 11:51:18.351 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Update (0): update address_details set address_code=?,address_details=?,address_id=?,center=?,crd=?,ldf=?,mrd=?,name=?,phone=?,rlv=?,user_id=? where id=? and rlv=?
- 2024-02-18 11:51:18.351 [, - main] DEBUG o.h.persister.entity.AbstractEntityPersister - Delete (0): delete from address_details where id=? and rlv=?
- 2024-02-18 11:51:18.363 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : p1_0
- 2024-02-18 11:51:18.363 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.OneToManyTableGroup@699a5d04] with identifierForTableGroup [com.tnmaster.entities.FullEnterprise.phones] for NavigablePath [com.tnmaster.entities.FullEnterprise.phones]
- 2024-02-18 11:51:18.363 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.FullEnterprise.phones.{element})] with identifierForTableGroup [com.tnmaster.entities.FullEnterprise.phones.{element}] for NavigablePath [com.tnmaster.entities.FullEnterprise.phones.{element}]
- 2024-02-18 11:51:18.364 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-CollectionDomainResult [com.tnmaster.entities.FullEnterprise.phones]
-
- 2024-02-18 11:51:18.365 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- OneToManyTableGroup (p1 : com.tnmaster.entities.FullEnterprise.phones) {
- primaryTableReference : enterprise_phone as p1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.365 [, - main] DEBUG org.hibernate.orm.loader.multi - Using ARRAY batch fetching strategy for collection `com.tnmaster.entities.FullEnterprise.phones` : 84
- 2024-02-18 11:51:18.365 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : p1_0
- 2024-02-18 11:51:18.365 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.OneToManyTableGroup@30e1f008] with identifierForTableGroup [com.tnmaster.entities.FullEnterprise.phones] for NavigablePath [com.tnmaster.entities.FullEnterprise.phones]
- 2024-02-18 11:51:18.365 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.FullEnterprise.phones.{element})] with identifierForTableGroup [com.tnmaster.entities.FullEnterprise.phones.{element}] for NavigablePath [com.tnmaster.entities.FullEnterprise.phones.{element}]
- 2024-02-18 11:51:18.365 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-CollectionDomainResult [com.tnmaster.entities.FullEnterprise.phones]
-
- 2024-02-18 11:51:18.365 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- OneToManyTableGroup (p1 : com.tnmaster.entities.FullEnterprise.phones) {
- primaryTableReference : enterprise_phone as p1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.366 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - Static SQL for collection: com.tnmaster.entities.FullEnterprise.phones
- 2024-02-18 11:51:18.366 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : rg1_0
- 2024-02-18 11:51:18.366 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [CollectionTableGroup(io.github.truenine.composeserver.rds.entities.FullUsr.roleGroups)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FullUsr.roleGroups] for NavigablePath [io.github.truenine.composeserver.rds.entities.FullUsr.roleGroups]
- 2024-02-18 11:51:18.366 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@4e01cf43] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FullUsr.roleGroups.{element}] for NavigablePath [io.github.truenine.composeserver.rds.entities.FullUsr.roleGroups.{element}]
- 2024-02-18 11:51:18.366 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : rg1_1
- 2024-02-18 11:51:18.366 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-CollectionDomainResult [io.github.truenine.composeserver.rds.entities.FullUsr.roleGroups]
-
- 2024-02-18 11:51:18.366 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- CollectionTableGroup (rg1 : io.github.truenine.composeserver.rds.entities.FullUsr.roleGroups) {
- primaryTableReference : user_role_group as rg1_0
- TableGroupJoins {
- join LazyTableGroup (rg1 : io.github.truenine.composeserver.rds.entities.FullUsr.roleGroups.{element}) {
- primaryTableReference : role_group as rg1_1
- }
- }
- }
- }
- }
-
- 2024-02-18 11:51:18.366 [, - main] DEBUG org.hibernate.orm.loader.multi - Using ARRAY batch fetching strategy for collection `io.github.truenine.composeserver.rds.entities.FullUsr.roleGroups` : 84
- 2024-02-18 11:51:18.366 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : rg1_0
- 2024-02-18 11:51:18.366 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [CollectionTableGroup(io.github.truenine.composeserver.rds.entities.FullUsr.roleGroups)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FullUsr.roleGroups] for NavigablePath [io.github.truenine.composeserver.rds.entities.FullUsr.roleGroups]
- 2024-02-18 11:51:18.366 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@4c9d87ff] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FullUsr.roleGroups.{element}] for NavigablePath [io.github.truenine.composeserver.rds.entities.FullUsr.roleGroups.{element}]
- 2024-02-18 11:51:18.366 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : rg1_1
- 2024-02-18 11:51:18.367 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-CollectionDomainResult [io.github.truenine.composeserver.rds.entities.FullUsr.roleGroups]
-
- 2024-02-18 11:51:18.367 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- CollectionTableGroup (rg1 : io.github.truenine.composeserver.rds.entities.FullUsr.roleGroups) {
- primaryTableReference : user_role_group as rg1_0
- TableGroupJoins {
- join LazyTableGroup (rg1 : io.github.truenine.composeserver.rds.entities.FullUsr.roleGroups.{element}) {
- primaryTableReference : role_group as rg1_1
- }
- }
- }
- }
- }
-
- 2024-02-18 11:51:18.367 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - Static SQL for collection: io.github.truenine.composeserver.rds.entities.FullUsr.roleGroups
- 2024-02-18 11:51:18.367 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - Row insert: insert into user_role_group (user_id,role_group_id) values (?,?)
- 2024-02-18 11:51:18.368 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - Row delete: delete from user_role_group where user_id=? and role_group_id=?
- 2024-02-18 11:51:18.368 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - One-shot delete: delete from user_role_group where user_id=?
- 2024-02-18 11:51:18.368 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : p1_0
- 2024-02-18 11:51:18.368 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [CollectionTableGroup(io.github.truenine.composeserver.rds.entities.FullRole.permissions)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FullRole.permissions] for NavigablePath [io.github.truenine.composeserver.rds.entities.FullRole.permissions]
- 2024-02-18 11:51:18.368 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@12b19557] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FullRole.permissions.{element}] for NavigablePath [io.github.truenine.composeserver.rds.entities.FullRole.permissions.{element}]
- 2024-02-18 11:51:18.369 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : p1_1
- 2024-02-18 11:51:18.369 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-CollectionDomainResult [io.github.truenine.composeserver.rds.entities.FullRole.permissions]
-
- 2024-02-18 11:51:18.369 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- CollectionTableGroup (p1 : io.github.truenine.composeserver.rds.entities.FullRole.permissions) {
- primaryTableReference : role_permissions as p1_0
- TableGroupJoins {
- join LazyTableGroup (p1 : io.github.truenine.composeserver.rds.entities.FullRole.permissions.{element}) {
- primaryTableReference : permissions as p1_1
- }
- }
- }
- }
- }
-
- 2024-02-18 11:51:18.369 [, - main] DEBUG org.hibernate.orm.loader.multi - Using ARRAY batch fetching strategy for collection `io.github.truenine.composeserver.rds.entities.FullRole.permissions` : 84
- 2024-02-18 11:51:18.369 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : p1_0
- 2024-02-18 11:51:18.369 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [CollectionTableGroup(io.github.truenine.composeserver.rds.entities.FullRole.permissions)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FullRole.permissions] for NavigablePath [io.github.truenine.composeserver.rds.entities.FullRole.permissions]
- 2024-02-18 11:51:18.369 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@59aa07cf] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FullRole.permissions.{element}] for NavigablePath [io.github.truenine.composeserver.rds.entities.FullRole.permissions.{element}]
- 2024-02-18 11:51:18.369 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : p1_1
- 2024-02-18 11:51:18.369 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-CollectionDomainResult [io.github.truenine.composeserver.rds.entities.FullRole.permissions]
-
- 2024-02-18 11:51:18.369 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- CollectionTableGroup (p1 : io.github.truenine.composeserver.rds.entities.FullRole.permissions) {
- primaryTableReference : role_permissions as p1_0
- TableGroupJoins {
- join LazyTableGroup (p1 : io.github.truenine.composeserver.rds.entities.FullRole.permissions.{element}) {
- primaryTableReference : permissions as p1_1
- }
- }
- }
- }
- }
-
- 2024-02-18 11:51:18.370 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - Static SQL for collection: io.github.truenine.composeserver.rds.entities.FullRole.permissions
- 2024-02-18 11:51:18.370 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - Row insert: insert into role_permissions (role_id,permissions_id) values (?,?)
- 2024-02-18 11:51:18.370 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - Row delete: delete from role_permissions where role_id=? and permissions_id=?
- 2024-02-18 11:51:18.370 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - One-shot delete: delete from role_permissions where role_id=?
- 2024-02-18 11:51:18.370 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : t1_0
- 2024-02-18 11:51:18.370 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [CollectionTableGroup(com.tnmaster.entities.BlackListVo.tags)] with identifierForTableGroup [com.tnmaster.entities.BlackListVo.tags] for NavigablePath [com.tnmaster.entities.BlackListVo.tags]
- 2024-02-18 11:51:18.370 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@463f7e2f] with identifierForTableGroup [com.tnmaster.entities.BlackListVo.tags.{element}] for NavigablePath [com.tnmaster.entities.BlackListVo.tags.{element}]
- 2024-02-18 11:51:18.370 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : t1_1
- 2024-02-18 11:51:18.370 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-CollectionDomainResult [com.tnmaster.entities.BlackListVo.tags]
-
- 2024-02-18 11:51:18.370 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- CollectionTableGroup (t1 : com.tnmaster.entities.BlackListVo.tags) {
- primaryTableReference : black_list_black_list_tag as t1_0
- TableGroupJoins {
- join LazyTableGroup (t1 : com.tnmaster.entities.BlackListVo.tags.{element}) {
- primaryTableReference : black_list_tag as t1_1
- }
- }
- }
- }
- }
-
- 2024-02-18 11:51:18.371 [, - main] DEBUG org.hibernate.orm.loader.multi - Using ARRAY batch fetching strategy for collection `com.tnmaster.entities.BlackListVo.tags` : 84
- 2024-02-18 11:51:18.371 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : t1_0
- 2024-02-18 11:51:18.371 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [CollectionTableGroup(com.tnmaster.entities.BlackListVo.tags)] with identifierForTableGroup [com.tnmaster.entities.BlackListVo.tags] for NavigablePath [com.tnmaster.entities.BlackListVo.tags]
- 2024-02-18 11:51:18.371 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@403f5628] with identifierForTableGroup [com.tnmaster.entities.BlackListVo.tags.{element}] for NavigablePath [com.tnmaster.entities.BlackListVo.tags.{element}]
- 2024-02-18 11:51:18.371 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : t1_1
- 2024-02-18 11:51:18.371 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-CollectionDomainResult [com.tnmaster.entities.BlackListVo.tags]
-
- 2024-02-18 11:51:18.371 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- CollectionTableGroup (t1 : com.tnmaster.entities.BlackListVo.tags) {
- primaryTableReference : black_list_black_list_tag as t1_0
- TableGroupJoins {
- join LazyTableGroup (t1 : com.tnmaster.entities.BlackListVo.tags.{element}) {
- primaryTableReference : black_list_tag as t1_1
- }
- }
- }
- }
- }
-
- 2024-02-18 11:51:18.371 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - Static SQL for collection: com.tnmaster.entities.BlackListVo.tags
- 2024-02-18 11:51:18.371 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - Row insert: insert into black_list_black_list_tag (black_list_id,tag_id) values (?,?)
- 2024-02-18 11:51:18.371 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - Row delete: delete from black_list_black_list_tag where black_list_id=? and tag_id=?
- 2024-02-18 11:51:18.371 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - One-shot delete: delete from black_list_black_list_tag where black_list_id=?
- 2024-02-18 11:51:18.371 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : e1_0
- 2024-02-18 11:51:18.371 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.OneToManyTableGroup@48c7f0d9] with identifierForTableGroup [com.tnmaster.entities.FullEnterprise.emails] for NavigablePath [com.tnmaster.entities.FullEnterprise.emails]
- 2024-02-18 11:51:18.371 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.FullEnterprise.emails.{element})] with identifierForTableGroup [com.tnmaster.entities.FullEnterprise.emails.{element}] for NavigablePath [com.tnmaster.entities.FullEnterprise.emails.{element}]
- 2024-02-18 11:51:18.372 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-CollectionDomainResult [com.tnmaster.entities.FullEnterprise.emails]
-
- 2024-02-18 11:51:18.372 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- OneToManyTableGroup (e1 : com.tnmaster.entities.FullEnterprise.emails) {
- primaryTableReference : enterprise_email as e1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.372 [, - main] DEBUG org.hibernate.orm.loader.multi - Using ARRAY batch fetching strategy for collection `com.tnmaster.entities.FullEnterprise.emails` : 84
- 2024-02-18 11:51:18.372 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : e1_0
- 2024-02-18 11:51:18.372 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.OneToManyTableGroup@1e5975db] with identifierForTableGroup [com.tnmaster.entities.FullEnterprise.emails] for NavigablePath [com.tnmaster.entities.FullEnterprise.emails]
- 2024-02-18 11:51:18.372 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.FullEnterprise.emails.{element})] with identifierForTableGroup [com.tnmaster.entities.FullEnterprise.emails.{element}] for NavigablePath [com.tnmaster.entities.FullEnterprise.emails.{element}]
- 2024-02-18 11:51:18.372 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-CollectionDomainResult [com.tnmaster.entities.FullEnterprise.emails]
-
- 2024-02-18 11:51:18.372 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- OneToManyTableGroup (e1 : com.tnmaster.entities.FullEnterprise.emails) {
- primaryTableReference : enterprise_email as e1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.373 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - Static SQL for collection: com.tnmaster.entities.FullEnterprise.emails
- 2024-02-18 11:51:18.373 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : r1_0
- 2024-02-18 11:51:18.373 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [CollectionTableGroup(io.github.truenine.composeserver.rds.entities.FullRoleGroup.roles)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FullRoleGroup.roles] for NavigablePath [io.github.truenine.composeserver.rds.entities.FullRoleGroup.roles]
- 2024-02-18 11:51:18.373 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@47c67c19] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FullRoleGroup.roles.{element}] for NavigablePath [io.github.truenine.composeserver.rds.entities.FullRoleGroup.roles.{element}]
- 2024-02-18 11:51:18.373 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : r1_1
- 2024-02-18 11:51:18.373 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-CollectionDomainResult [io.github.truenine.composeserver.rds.entities.FullRoleGroup.roles]
-
- 2024-02-18 11:51:18.373 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- CollectionTableGroup (r1 : io.github.truenine.composeserver.rds.entities.FullRoleGroup.roles) {
- primaryTableReference : role_group_role as r1_0
- TableGroupJoins {
- join LazyTableGroup (r1 : io.github.truenine.composeserver.rds.entities.FullRoleGroup.roles.{element}) {
- primaryTableReference : role as r1_1
- }
- }
- }
- }
- }
-
- 2024-02-18 11:51:18.374 [, - main] DEBUG org.hibernate.orm.loader.multi - Using ARRAY batch fetching strategy for collection `io.github.truenine.composeserver.rds.entities.FullRoleGroup.roles` : 84
- 2024-02-18 11:51:18.374 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : r1_0
- 2024-02-18 11:51:18.374 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [CollectionTableGroup(io.github.truenine.composeserver.rds.entities.FullRoleGroup.roles)] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FullRoleGroup.roles] for NavigablePath [io.github.truenine.composeserver.rds.entities.FullRoleGroup.roles]
- 2024-02-18 11:51:18.374 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@5f09940e] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FullRoleGroup.roles.{element}] for NavigablePath [io.github.truenine.composeserver.rds.entities.FullRoleGroup.roles.{element}]
- 2024-02-18 11:51:18.374 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : r1_1
- 2024-02-18 11:51:18.374 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-CollectionDomainResult [io.github.truenine.composeserver.rds.entities.FullRoleGroup.roles]
-
- 2024-02-18 11:51:18.374 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- CollectionTableGroup (r1 : io.github.truenine.composeserver.rds.entities.FullRoleGroup.roles) {
- primaryTableReference : role_group_role as r1_0
- TableGroupJoins {
- join LazyTableGroup (r1 : io.github.truenine.composeserver.rds.entities.FullRoleGroup.roles.{element}) {
- primaryTableReference : role as r1_1
- }
- }
- }
- }
- }
-
- 2024-02-18 11:51:18.375 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - Static SQL for collection: io.github.truenine.composeserver.rds.entities.FullRoleGroup.roles
- 2024-02-18 11:51:18.375 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - Row insert: insert into role_group_role (role_group_id,role_id) values (?,?)
- 2024-02-18 11:51:18.375 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - Row delete: delete from role_group_role where role_group_id=? and role_id=?
- 2024-02-18 11:51:18.375 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - One-shot delete: delete from role_group_role where role_group_id=?
- 2024-02-18 11:51:18.375 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : r1_0
- 2024-02-18 11:51:18.375 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.OneToManyTableGroup@4fe55048] with identifierForTableGroup [com.tnmaster.entities.BlackListVo.relations] for NavigablePath [com.tnmaster.entities.BlackListVo.relations]
- 2024-02-18 11:51:18.375 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.BlackListVo.relations.{element})] with identifierForTableGroup [com.tnmaster.entities.BlackListVo.relations.{element}] for NavigablePath [com.tnmaster.entities.BlackListVo.relations.{element}]
- 2024-02-18 11:51:18.375 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-CollectionDomainResult [com.tnmaster.entities.BlackListVo.relations]
-
- 2024-02-18 11:51:18.376 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- OneToManyTableGroup (r1 : com.tnmaster.entities.BlackListVo.relations) {
- primaryTableReference : black_list_relation as r1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.376 [, - main] DEBUG org.hibernate.orm.loader.multi - Using ARRAY batch fetching strategy for collection `com.tnmaster.entities.BlackListVo.relations` : 84
- 2024-02-18 11:51:18.377 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : r1_0
- 2024-02-18 11:51:18.377 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.OneToManyTableGroup@73707d4] with identifierForTableGroup [com.tnmaster.entities.BlackListVo.relations] for NavigablePath [com.tnmaster.entities.BlackListVo.relations]
- 2024-02-18 11:51:18.377 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.BlackListVo.relations.{element})] with identifierForTableGroup [com.tnmaster.entities.BlackListVo.relations.{element}] for NavigablePath [com.tnmaster.entities.BlackListVo.relations.{element}]
- 2024-02-18 11:51:18.377 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-CollectionDomainResult [com.tnmaster.entities.BlackListVo.relations]
-
- 2024-02-18 11:51:18.377 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- OneToManyTableGroup (r1 : com.tnmaster.entities.BlackListVo.relations) {
- primaryTableReference : black_list_relation as r1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.377 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - Static SQL for collection: com.tnmaster.entities.BlackListVo.relations
- 2024-02-18 11:51:18.377 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : d1_0
- 2024-02-18 11:51:18.377 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.OneToManyTableGroup@673f8424] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FullAddress.details] for NavigablePath [io.github.truenine.composeserver.rds.entities.FullAddress.details]
- 2024-02-18 11:51:18.377 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.FullAddress.details.{element})] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FullAddress.details.{element}] for NavigablePath [io.github.truenine.composeserver.rds.entities.FullAddress.details.{element}]
- 2024-02-18 11:51:18.378 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-CollectionDomainResult [io.github.truenine.composeserver.rds.entities.FullAddress.details]
-
- 2024-02-18 11:51:18.378 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- OneToManyTableGroup (d1 : io.github.truenine.composeserver.rds.entities.FullAddress.details) {
- primaryTableReference : address_details as d1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.378 [, - main] DEBUG org.hibernate.orm.loader.multi - Using ARRAY batch fetching strategy for collection `io.github.truenine.composeserver.rds.entities.FullAddress.details` : 84
- 2024-02-18 11:51:18.378 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : d1_0
- 2024-02-18 11:51:18.378 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.OneToManyTableGroup@4ef5f92d] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FullAddress.details] for NavigablePath [io.github.truenine.composeserver.rds.entities.FullAddress.details]
- 2024-02-18 11:51:18.378 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(io.github.truenine.composeserver.rds.entities.FullAddress.details.{element})] with identifierForTableGroup [io.github.truenine.composeserver.rds.entities.FullAddress.details.{element}] for NavigablePath [io.github.truenine.composeserver.rds.entities.FullAddress.details.{element}]
- 2024-02-18 11:51:18.379 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-CollectionDomainResult [io.github.truenine.composeserver.rds.entities.FullAddress.details]
-
- 2024-02-18 11:51:18.379 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- OneToManyTableGroup (d1 : io.github.truenine.composeserver.rds.entities.FullAddress.details) {
- primaryTableReference : address_details as d1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.379 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - Static SQL for collection: io.github.truenine.composeserver.rds.entities.FullAddress.details
- 2024-02-18 11:51:18.379 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : di1_0
- 2024-02-18 11:51:18.379 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [CollectionTableGroup(com.tnmaster.entities.DisAccountVo.dsInfos)] with identifierForTableGroup [com.tnmaster.entities.DisAccountVo.dsInfos] for NavigablePath [com.tnmaster.entities.DisAccountVo.dsInfos]
- 2024-02-18 11:51:18.379 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@60509848] with identifierForTableGroup [com.tnmaster.entities.DisAccountVo.dsInfos.{element}] for NavigablePath [com.tnmaster.entities.DisAccountVo.dsInfos.{element}]
- 2024-02-18 11:51:18.379 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : di1_1
- 2024-02-18 11:51:18.380 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-CollectionDomainResult [com.tnmaster.entities.DisAccountVo.dsInfos]
-
- 2024-02-18 11:51:18.380 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- CollectionTableGroup (di1 : com.tnmaster.entities.DisAccountVo.dsInfos) {
- primaryTableReference : dis_info as di1_0
- TableGroupJoins {
- join LazyTableGroup (di1 : com.tnmaster.entities.DisAccountVo.dsInfos.{element}) {
- primaryTableReference : dis_info as di1_1
- }
- }
- }
- }
- }
-
- 2024-02-18 11:51:18.381 [, - main] DEBUG org.hibernate.orm.loader.multi - Using ARRAY batch fetching strategy for collection `com.tnmaster.entities.DisAccountVo.dsInfos` : 84
- 2024-02-18 11:51:18.381 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : di1_0
- 2024-02-18 11:51:18.381 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [CollectionTableGroup(com.tnmaster.entities.DisAccountVo.dsInfos)] with identifierForTableGroup [com.tnmaster.entities.DisAccountVo.dsInfos] for NavigablePath [com.tnmaster.entities.DisAccountVo.dsInfos]
- 2024-02-18 11:51:18.381 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.LazyTableGroup@785c5b78] with identifierForTableGroup [com.tnmaster.entities.DisAccountVo.dsInfos.{element}] for NavigablePath [com.tnmaster.entities.DisAccountVo.dsInfos.{element}]
- 2024-02-18 11:51:18.381 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : di1_1
- 2024-02-18 11:51:18.381 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-CollectionDomainResult [com.tnmaster.entities.DisAccountVo.dsInfos]
-
- 2024-02-18 11:51:18.382 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- CollectionTableGroup (di1 : com.tnmaster.entities.DisAccountVo.dsInfos) {
- primaryTableReference : dis_info as di1_0
- TableGroupJoins {
- join LazyTableGroup (di1 : com.tnmaster.entities.DisAccountVo.dsInfos.{element}) {
- primaryTableReference : dis_info as di1_1
- }
- }
- }
- }
- }
-
- 2024-02-18 11:51:18.382 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - Static SQL for collection: com.tnmaster.entities.DisAccountVo.dsInfos
- 2024-02-18 11:51:18.382 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - Row insert: insert into dis_info (user_info_id,user_info_id) values (?,?)
- 2024-02-18 11:51:18.382 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - Row delete: delete from dis_info where user_info_id=? and user_info_id=?
- 2024-02-18 11:51:18.382 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - One-shot delete: delete from dis_info where user_info_id=?
- 2024-02-18 11:51:18.382 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : ui1_0
- 2024-02-18 11:51:18.382 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.OneToManyTableGroup@38085597] with identifierForTableGroup [com.tnmaster.entities.DisAccountVo.userInfos] for NavigablePath [com.tnmaster.entities.DisAccountVo.userInfos]
- 2024-02-18 11:51:18.382 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.DisAccountVo.userInfos.{element})] with identifierForTableGroup [com.tnmaster.entities.DisAccountVo.userInfos.{element}] for NavigablePath [com.tnmaster.entities.DisAccountVo.userInfos.{element}]
- 2024-02-18 11:51:18.382 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-CollectionDomainResult [com.tnmaster.entities.DisAccountVo.userInfos]
-
- 2024-02-18 11:51:18.383 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- OneToManyTableGroup (ui1 : com.tnmaster.entities.DisAccountVo.userInfos) {
- primaryTableReference : user_info as ui1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.383 [, - main] DEBUG org.hibernate.orm.loader.multi - Using ARRAY batch fetching strategy for collection `com.tnmaster.entities.DisAccountVo.userInfos` : 84
- 2024-02-18 11:51:18.383 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Created new SQL alias : ui1_0
- 2024-02-18 11:51:18.383 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [org.hibernate.sql.ast.tree.from.OneToManyTableGroup@5a771dc6] with identifierForTableGroup [com.tnmaster.entities.DisAccountVo.userInfos] for NavigablePath [com.tnmaster.entities.DisAccountVo.userInfos]
- 2024-02-18 11:51:18.383 [, - main] DEBUG org.hibernate.orm.sql.ast.create - Registration of TableGroup [StandardTableGroup(com.tnmaster.entities.DisAccountVo.userInfos.{element})] with identifierForTableGroup [com.tnmaster.entities.DisAccountVo.userInfos.{element}] for NavigablePath [com.tnmaster.entities.DisAccountVo.userInfos.{element}]
- 2024-02-18 11:51:18.383 [, - main] DEBUG org.hibernate.orm.results.graph.AST - DomainResult Graph:
- \-CollectionDomainResult [com.tnmaster.entities.DisAccountVo.userInfos]
-
- 2024-02-18 11:51:18.384 [, - main] DEBUG org.hibernate.orm.sql.ast.tree - SQL AST Tree:
- SelectStatement {
- FromClause {
- OneToManyTableGroup (ui1 : com.tnmaster.entities.DisAccountVo.userInfos) {
- primaryTableReference : user_info as ui1_0
- }
- }
- }
-
- 2024-02-18 11:51:18.384 [, - main] DEBUG org.hibernate.orm.jdbc.mutation - Static SQL for collection: com.tnmaster.entities.DisAccountVo.userInfos
- 2024-02-18 11:51:18.486 [, - main] DEBUG org.hibernate.type.spi.TypeConfiguration$Scope - Scoping TypeConfiguration [org.hibernate.type.spi.TypeConfiguration@652855c4] to SessionFactoryImplementor [org.hibernate.internal.SessionFactoryImpl@518b3e15]
- 2024-02-18 11:51:18.486 [, - main] DEBUG org.hibernate.query.named.NamedObjectRepository - Checking 0 named HQL queries
- 2024-02-18 11:51:18.486 [, - main] DEBUG org.hibernate.query.named.NamedObjectRepository - Checking 0 named SQL queries
- 2024-02-18 11:51:18.487 [, - main] DEBUG o.h.t.schema.spi.SchemaManagementToolCoordinator - No schema actions specified for contributor `orm`; doing nothing
- 2024-02-18 11:51:18.487 [, - main] DEBUG o.h.t.schema.spi.SchemaManagementToolCoordinator - No actions found; doing nothing
- 2024-02-18 11:51:18.488 [, - main] DEBUG org.hibernate.internal.SessionFactoryRegistry - Initializing SessionFactoryRegistry : org.hibernate.internal.SessionFactoryRegistry@1b618413
- 2024-02-18 11:51:18.488 [, - main] DEBUG org.hibernate.internal.SessionFactoryRegistry - Registering SessionFactory: 117c9913-54d2-411c-9396-e2dcf4344896 ()
- 2024-02-18 11:51:18.488 [, - main] DEBUG org.hibernate.internal.SessionFactoryRegistry - Not binding SessionFactory to JNDI, no JNDI name configured
- 2024-02-18 11:51:18.488 [, - main] DEBUG org.hibernate.internal.SessionFactoryImpl - Instantiated SessionFactory
- 2024-02-18 11:51:18.501 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'tnMasterRunner'
- 2024-02-18 11:51:18.503 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'certStructMapImpl'
- 2024-02-18 11:51:18.505 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'basicConverterConfiguration'
- 2024-02-18 11:51:18.509 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'exceptionAware'
- 2024-02-18 11:51:18.519 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'springSecurityPolicyDefine'
- 2024-02-18 11:51:18.523 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'rbacAggregatorImpl'
- 2024-02-18 11:51:18.535 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'IUserRoleGroupRepo'
- 2024-02-18 11:51:18.555 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jpa.named-queries#35'
- 2024-02-18 11:51:18.566 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jpa.IUserRoleGroupRepo.fragments#0'
- 2024-02-18 11:51:18.599 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jpaSharedEM_entityManagerFactory'
- 2024-02-18 11:51:18.728 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jpaMappingContext'
- 2024-02-18 11:51:18.729 [, - main] DEBUG o.s.d.j.r.c.JpaMetamodelMappingContextFactoryBean - Initializing JpaMetamodelMappingContext…
- 2024-02-18 11:51:18.739 [, - main] DEBUG o.s.d.j.r.c.JpaMetamodelMappingContextFactoryBean - Finished initializing JpaMetamodelMappingContext
- 2024-02-18 11:51:18.773 [, - main] DEBUG o.s.o.j.SharedEntityManagerCreator$SharedEntityManagerInvocationHandler - Creating new EntityManager for shared EntityManager invocation
- 2024-02-18 11:51:18.796 [, - main] DEBUG org.hibernate.stat.internal.StatisticsInitiator - Statistics initialized [enabled=false]
- 2024-02-18 11:51:18.802 [, - main] DEBUG o.s.o.j.SharedEntityManagerCreator$SharedEntityManagerInvocationHandler - Creating new EntityManager for shared EntityManager invocation
- 2024-02-18 11:51:18.806 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'metricsRepositoryMethodInvocationListener'
- 2024-02-18 11:51:18.808 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.data.RepositoryMetricsAutoConfiguration'
- 2024-02-18 11:51:18.809 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - 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-02-18 11:51:18.811 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'repositoryTagsProvider'
- 2024-02-18 11:51:18.813 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'metricsRepositoryMethodInvocationListener' via factory method to bean named 'repositoryTagsProvider'
- 2024-02-18 11:51:18.861 [, - main] DEBUG o.s.d.r.core.support.RepositoryFactorySupport - Initializing repository instance for io.github.truenine.composeserver.rds.repositories.relationship.IUserRoleGroupRepo…
- 2024-02-18 11:51:18.912 [, - main] DEBUG o.s.o.j.SharedEntityManagerCreator$SharedEntityManagerInvocationHandler - Creating new EntityManager for shared EntityManager invocation
- 2024-02-18 11:51:18.918 [, - main] DEBUG o.s.o.j.SharedEntityManagerCreator$SharedEntityManagerInvocationHandler - Creating new EntityManager for shared EntityManager invocation
- 2024-02-18 11:51:19.759 [, - main] DEBUG o.h.r.t.b.j.i.JdbcResourceLocalTransactionCoordinatorImpl - JDBC transaction marked for rollback-only (exception provided for stack trace)
- java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:310)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1097)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:975)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:136)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy4/jdk.proxy4.$Proxy225.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:113)
- 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.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:279)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:285)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1820)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1769)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:907)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:785)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1354)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:561)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:907)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:785)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1354)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:561)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:959)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:334)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1354)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1343)
- at com.tnmaster.ApplicationRunnerKt.main(ApplicationRunner.kt:27)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:91)
- at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:53)
- at org.springframework.boot.loader.launch.JarLauncher.main(JarLauncher.java:58)
- 2024-02-18 11:51:19.759 [, - main] DEBUG o.s.data.jpa.repository.query.NamedQuery - Did not find named query UserRoleGroup.findAllByNotLogicDeleted.count
- 2024-02-18 11:51:19.760 [, - main] DEBUG o.s.o.j.SharedEntityManagerCreator$SharedEntityManagerInvocationHandler - Creating new EntityManager for shared EntityManager invocation
- 2024-02-18 11:51:19.819 [, - main] DEBUG org.hibernate.orm.query.hql - HQL : from UserRoleGroup e where e.ldf = false
- 2024-02-18 11:51:19.985 [, - main] DEBUG org.hibernate.orm.query.sqm.ast - SqmStatement Tree :
- -> [select]
- -> [query-spec]
- -> [select]
- -> [selection]
- -> [root] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e)`
- <- [root] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e)`
- <- [selection]
- <- [select]
- -> [from]
- -> [root] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e)`
- <- [root] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e)`
- <- [from]
- -> [where]
- -> [EQUAL]
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e).ldf`
- <- [EQUAL]
- <- [where]
- <- [query-spec]
- <- [select]
-
- 2024-02-18 11:51:20.037 [, - main] DEBUG org.hibernate.orm.query.hql - HQL : select count(e) from UserRoleGroup e where e.ldf = false
- 2024-02-18 11:51:20.066 [, - main] DEBUG o.hibernate.orm.query.hql.reservedWordAsIdentifier - Encountered use of reserved word as identifier : (
- 2024-02-18 11:51:20.077 [, - main] DEBUG org.hibernate.orm.query.sqm.ast - SqmStatement Tree :
- -> [select]
- -> [query-spec]
- -> [select]
- -> [selection]
- <- [selection]
- <- [select]
- -> [from]
- -> [root] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e)`
- <- [root] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e)`
- <- [from]
- -> [where]
- -> [EQUAL]
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e).ldf`
- <- [EQUAL]
- <- [where]
- <- [query-spec]
- <- [select]
-
- 2024-02-18 11:51:20.161 [, - main] DEBUG o.h.r.t.b.j.i.JdbcResourceLocalTransactionCoordinatorImpl - JDBC transaction marked for rollback-only (exception provided for stack trace)
- java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:310)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1097)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:975)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:136)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy4/jdk.proxy4.$Proxy225.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:113)
- 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.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:279)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:285)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1820)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1769)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:907)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:785)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1354)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:561)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:907)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:785)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1354)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:561)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:959)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:334)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1354)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1343)
- at com.tnmaster.ApplicationRunnerKt.main(ApplicationRunner.kt:27)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:91)
- at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:53)
- at org.springframework.boot.loader.launch.JarLauncher.main(JarLauncher.java:58)
- 2024-02-18 11:51:20.161 [, - main] DEBUG o.s.data.jpa.repository.query.NamedQuery - Did not find named query UserRoleGroup.findAllRoleGroupIdByUserId.count
- 2024-02-18 11:51:20.161 [, - main] DEBUG o.s.o.j.SharedEntityManagerCreator$SharedEntityManagerInvocationHandler - Creating new EntityManager for shared EntityManager invocation
- 2024-02-18 11:51:20.162 [, - main] DEBUG org.hibernate.orm.query.hql - HQL :
- SELECT ur.roleGroupId
- FROM UserRoleGroup ur
- WHERE ur.userId = :userId
-
- 2024-02-18 11:51:20.176 [, - main] DEBUG org.hibernate.orm.query.sqm.creation - Applying inferable type to SqmExpression [SqmNamedParameter(userId)] : null -> SqmBasicValuedSimplePath(io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(ur).userId)
- 2024-02-18 11:51:20.177 [, - main] DEBUG org.hibernate.orm.query.sqm.ast - SqmStatement Tree :
- -> [select]
- -> [query-spec]
- -> [select]
- -> [selection]
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(ur).roleGroupId`
- <- [selection]
- <- [select]
- -> [from]
- -> [root] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(ur)`
- <- [root] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(ur)`
- <- [from]
- -> [where]
- -> [EQUAL]
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(ur).userId`
- :userId
- <- [EQUAL]
- <- [where]
- <- [query-spec]
- <- [select]
-
- 2024-02-18 11:51:20.189 [, - main] DEBUG o.h.r.t.b.j.i.JdbcResourceLocalTransactionCoordinatorImpl - JDBC transaction marked for rollback-only (exception provided for stack trace)
- java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:310)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1097)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:975)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:136)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy4/jdk.proxy4.$Proxy225.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:113)
- 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.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:279)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:285)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1820)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1769)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:907)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:785)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1354)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:561)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:907)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:785)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1354)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:561)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:959)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:334)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1354)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1343)
- at com.tnmaster.ApplicationRunnerKt.main(ApplicationRunner.kt:27)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:91)
- at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:53)
- at org.springframework.boot.loader.launch.JarLauncher.main(JarLauncher.java:58)
- 2024-02-18 11:51:20.189 [, - main] DEBUG o.s.data.jpa.repository.query.NamedQuery - Did not find named query UserRoleGroup.existsByIdAndNotLogicDeleted.count
- 2024-02-18 11:51:20.190 [, - main] DEBUG o.s.o.j.SharedEntityManagerCreator$SharedEntityManagerInvocationHandler - Creating new EntityManager for shared EntityManager invocation
- 2024-02-18 11:51:20.211 [, - main] DEBUG org.hibernate.orm.query.hql - HQL : select count(e.id) > 0 from UserRoleGroup e where e.id = :id and (e.ldf = false or e.ldf is null)
- 2024-02-18 11:51:20.252 [, - main] DEBUG o.hibernate.orm.query.hql.reservedWordAsIdentifier - Encountered use of reserved word as identifier : (
- 2024-02-18 11:51:20.255 [, - main] DEBUG o.hibernate.orm.query.hql.reservedWordAsIdentifier - Encountered use of reserved word as identifier : )
- 2024-02-18 11:51:20.259 [, - main] DEBUG o.hibernate.orm.query.hql.reservedWordAsIdentifier - Encountered use of reserved word as identifier : =
- 2024-02-18 11:51:20.259 [, - main] DEBUG o.hibernate.orm.query.hql.reservedWordAsIdentifier - Encountered use of reserved word as identifier : and
- 2024-02-18 11:51:20.313 [, - main] DEBUG org.hibernate.orm.query.sqm.creation - Applying inferable type to SqmExpression [SqmNamedParameter(id)] : null -> SqmBasicValuedSimplePath(io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e).id)
- 2024-02-18 11:51:20.315 [, - main] DEBUG org.hibernate.orm.query.sqm.ast - SqmStatement Tree :
- -> [select]
- -> [query-spec]
- -> [select]
- -> [selection]
- -> [GREATER_THAN]
- <- [GREATER_THAN]
- <- [selection]
- <- [select]
- -> [from]
- -> [root] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e)`
- <- [root] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e)`
- <- [from]
- -> [where]
- -> [and]
- -> [EQUAL]
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e).id`
- :id
- <- [EQUAL]
- -> [grouped]
- -> [or]
- -> [EQUAL]
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e).ldf`
- <- [EQUAL]
- -> [is-null]
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e).ldf`
- <- [is-null]
- <- [or]
- <- [grouped]
- <- [and]
- <- [where]
- <- [query-spec]
- <- [select]
-
- 2024-02-18 11:51:20.317 [, - main] DEBUG o.s.data.jpa.repository.query.NamedQuery - Looking up named query UserRoleGroup.findAllByUserId
- 2024-02-18 11:51:20.317 [, - main] DEBUG o.h.r.t.b.j.i.JdbcResourceLocalTransactionCoordinatorImpl - JDBC transaction marked for rollback-only (exception provided for stack trace)
- java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:310)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1097)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:975)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:136)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy4/jdk.proxy4.$Proxy225.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:113)
- at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:141)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:279)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:285)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1820)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1769)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:907)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:785)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1354)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:561)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:907)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:785)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1354)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:561)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:959)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:334)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1354)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1343)
- at com.tnmaster.ApplicationRunnerKt.main(ApplicationRunner.kt:27)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:91)
- at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:53)
- at org.springframework.boot.loader.launch.JarLauncher.main(JarLauncher.java:58)
- 2024-02-18 11:51:20.317 [, - main] DEBUG o.s.data.jpa.repository.query.NamedQuery - Did not find named query UserRoleGroup.findAllByUserId
- 2024-02-18 11:51:20.319 [, - main] DEBUG o.s.o.j.SharedEntityManagerCreator$SharedEntityManagerInvocationHandler - Creating new EntityManager for shared EntityManager invocation
- 2024-02-18 11:51:20.345 [, - main] DEBUG o.h.r.t.b.j.i.JdbcResourceLocalTransactionCoordinatorImpl - JDBC transaction marked for rollback-only (exception provided for stack trace)
- java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:310)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1097)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:975)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:136)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy4/jdk.proxy4.$Proxy225.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:113)
- 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.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:279)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:285)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1820)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1769)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:907)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:785)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1354)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:561)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:907)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:785)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1354)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:561)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:959)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:334)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1354)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1343)
- at com.tnmaster.ApplicationRunnerKt.main(ApplicationRunner.kt:27)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:91)
- at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:53)
- at org.springframework.boot.loader.launch.JarLauncher.main(JarLauncher.java:58)
- 2024-02-18 11:51:20.345 [, - main] DEBUG o.s.data.jpa.repository.query.NamedQuery - Did not find named query UserRoleGroup.countByNotLogicDeleted.count
- 2024-02-18 11:51:20.346 [, - main] DEBUG o.s.o.j.SharedEntityManagerCreator$SharedEntityManagerInvocationHandler - Creating new EntityManager for shared EntityManager invocation
- 2024-02-18 11:51:20.349 [, - main] DEBUG org.hibernate.orm.query.hql - HQL : select count(e.id) from UserRoleGroup e where e.ldf = false or e.ldf is null
- 2024-02-18 11:51:20.353 [, - main] DEBUG o.hibernate.orm.query.hql.reservedWordAsIdentifier - Encountered use of reserved word as identifier : (
- 2024-02-18 11:51:20.354 [, - main] DEBUG o.hibernate.orm.query.hql.reservedWordAsIdentifier - Encountered use of reserved word as identifier : )
- 2024-02-18 11:51:20.355 [, - main] DEBUG org.hibernate.orm.query.sqm.ast - SqmStatement Tree :
- -> [select]
- -> [query-spec]
- -> [select]
- -> [selection]
- <- [selection]
- <- [select]
- -> [from]
- -> [root] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e)`
- <- [root] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e)`
- <- [from]
- -> [where]
- -> [or]
- -> [EQUAL]
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e).ldf`
- <- [EQUAL]
- -> [is-null]
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e).ldf`
- <- [is-null]
- <- [or]
- <- [where]
- <- [query-spec]
- <- [select]
-
- 2024-02-18 11:51:20.356 [, - main] DEBUG o.s.data.jpa.repository.query.NamedQuery - Looking up named query UserRoleGroup.deleteAllByUserId
- 2024-02-18 11:51:20.356 [, - main] DEBUG o.h.r.t.b.j.i.JdbcResourceLocalTransactionCoordinatorImpl - JDBC transaction marked for rollback-only (exception provided for stack trace)
- java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:310)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1097)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:975)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:136)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy4/jdk.proxy4.$Proxy225.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:113)
- at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:141)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:279)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:285)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1820)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1769)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:907)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:785)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1354)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:561)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:907)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:785)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1354)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:561)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:959)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:334)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1354)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1343)
- at com.tnmaster.ApplicationRunnerKt.main(ApplicationRunner.kt:27)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:91)
- at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:53)
- at org.springframework.boot.loader.launch.JarLauncher.main(JarLauncher.java:58)
- 2024-02-18 11:51:20.357 [, - main] DEBUG o.s.data.jpa.repository.query.NamedQuery - Did not find named query UserRoleGroup.deleteAllByUserId
- 2024-02-18 11:51:20.357 [, - main] DEBUG o.s.o.j.SharedEntityManagerCreator$SharedEntityManagerInvocationHandler - Creating new EntityManager for shared EntityManager invocation
- 2024-02-18 11:51:20.358 [, - main] DEBUG o.s.data.jpa.repository.query.NamedQuery - Looking up named query UserRoleGroup.existsByUserIdAndRoleGroupId
- 2024-02-18 11:51:20.358 [, - main] DEBUG o.h.r.t.b.j.i.JdbcResourceLocalTransactionCoordinatorImpl - JDBC transaction marked for rollback-only (exception provided for stack trace)
- java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:310)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1097)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:975)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:136)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy4/jdk.proxy4.$Proxy225.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:113)
- at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:141)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:279)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:285)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1820)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1769)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:907)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:785)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1354)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:561)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:907)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:785)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1354)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:561)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:959)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:334)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1354)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1343)
- at com.tnmaster.ApplicationRunnerKt.main(ApplicationRunner.kt:27)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:91)
- at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:53)
- at org.springframework.boot.loader.launch.JarLauncher.main(JarLauncher.java:58)
- 2024-02-18 11:51:20.359 [, - main] DEBUG o.s.data.jpa.repository.query.NamedQuery - Did not find named query UserRoleGroup.existsByUserIdAndRoleGroupId
- 2024-02-18 11:51:20.359 [, - main] DEBUG o.s.o.j.SharedEntityManagerCreator$SharedEntityManagerInvocationHandler - Creating new EntityManager for shared EntityManager invocation
- 2024-02-18 11:51:20.363 [, - main] DEBUG o.h.r.t.b.j.i.JdbcResourceLocalTransactionCoordinatorImpl - JDBC transaction marked for rollback-only (exception provided for stack trace)
- java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:310)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1097)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:975)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:136)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy4/jdk.proxy4.$Proxy225.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:113)
- 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.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:279)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:285)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1820)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1769)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:907)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:785)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1354)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:561)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:907)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:785)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1354)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:561)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:959)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:334)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1354)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1343)
- at com.tnmaster.ApplicationRunnerKt.main(ApplicationRunner.kt:27)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:91)
- at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:53)
- at org.springframework.boot.loader.launch.JarLauncher.main(JarLauncher.java:58)
- 2024-02-18 11:51:20.363 [, - main] DEBUG o.s.data.jpa.repository.query.NamedQuery - Did not find named query UserRoleGroup.findAllByIdAndNotLogicDeleted.count
- 2024-02-18 11:51:20.363 [, - main] DEBUG o.s.o.j.SharedEntityManagerCreator$SharedEntityManagerInvocationHandler - Creating new EntityManager for shared EntityManager invocation
- 2024-02-18 11:51:20.370 [, - main] DEBUG org.hibernate.orm.query.hql - HQL : from UserRoleGroup e where e.id in :ids and (e.ldf = false or e.ldf is null)
- 2024-02-18 11:51:20.383 [, - main] DEBUG o.hibernate.orm.query.hql.reservedWordAsIdentifier - Encountered use of reserved word as identifier : in
- 2024-02-18 11:51:20.385 [, - main] DEBUG org.hibernate.orm.query.sqm.creation - Applying inferable type to SqmExpression [SqmNamedParameter(ids)] : null -> SqmBasicValuedSimplePath(io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e).id)
- 2024-02-18 11:51:20.386 [, - main] DEBUG org.hibernate.orm.query.sqm.ast - SqmStatement Tree :
- -> [select]
- -> [query-spec]
- -> [select]
- -> [selection]
- -> [root] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e)`
- <- [root] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e)`
- <- [selection]
- <- [select]
- -> [from]
- -> [root] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e)`
- <- [root] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e)`
- <- [from]
- -> [where]
- -> [and]
- -> [grouped]
- -> [or]
- -> [EQUAL]
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e).ldf`
- <- [EQUAL]
- -> [is-null]
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e).ldf`
- <- [is-null]
- <- [or]
- <- [grouped]
- <- [and]
- <- [where]
- <- [query-spec]
- <- [select]
-
- 2024-02-18 11:51:20.394 [, - main] DEBUG org.hibernate.orm.query.hql - HQL : select count(e) from UserRoleGroup e where e.id in :ids and (e.ldf = false or e.ldf is null)
- 2024-02-18 11:51:20.403 [, - main] DEBUG o.hibernate.orm.query.hql.reservedWordAsIdentifier - Encountered use of reserved word as identifier : (
- 2024-02-18 11:51:20.403 [, - main] DEBUG o.hibernate.orm.query.hql.reservedWordAsIdentifier - Encountered use of reserved word as identifier : in
- 2024-02-18 11:51:20.404 [, - main] DEBUG org.hibernate.orm.query.sqm.creation - Applying inferable type to SqmExpression [SqmNamedParameter(ids)] : null -> SqmBasicValuedSimplePath(io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e).id)
- 2024-02-18 11:51:20.404 [, - main] DEBUG org.hibernate.orm.query.sqm.ast - SqmStatement Tree :
- -> [select]
- -> [query-spec]
- -> [select]
- -> [selection]
- <- [selection]
- <- [select]
- -> [from]
- -> [root] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e)`
- <- [root] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e)`
- <- [from]
- -> [where]
- -> [and]
- -> [grouped]
- -> [or]
- -> [EQUAL]
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e).ldf`
- <- [EQUAL]
- -> [is-null]
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e).ldf`
- <- [is-null]
- <- [or]
- <- [grouped]
- <- [and]
- <- [where]
- <- [query-spec]
- <- [select]
-
- 2024-02-18 11:51:20.405 [, - main] DEBUG o.s.data.jpa.repository.query.NamedQuery - Looking up named query UserRoleGroup.deleteAllByRoleGroupIdInAndUserId
- 2024-02-18 11:51:20.405 [, - main] DEBUG o.h.r.t.b.j.i.JdbcResourceLocalTransactionCoordinatorImpl - JDBC transaction marked for rollback-only (exception provided for stack trace)
- java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:310)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1097)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:975)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:136)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy4/jdk.proxy4.$Proxy225.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:113)
- at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:141)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:279)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:285)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1820)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1769)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:907)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:785)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1354)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:561)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:907)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:785)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1354)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:561)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:959)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:334)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1354)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1343)
- at com.tnmaster.ApplicationRunnerKt.main(ApplicationRunner.kt:27)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:91)
- at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:53)
- at org.springframework.boot.loader.launch.JarLauncher.main(JarLauncher.java:58)
- 2024-02-18 11:51:20.406 [, - main] DEBUG o.s.data.jpa.repository.query.NamedQuery - Did not find named query UserRoleGroup.deleteAllByRoleGroupIdInAndUserId
- 2024-02-18 11:51:20.406 [, - main] DEBUG o.s.o.j.SharedEntityManagerCreator$SharedEntityManagerInvocationHandler - Creating new EntityManager for shared EntityManager invocation
- 2024-02-18 11:51:20.408 [, - main] DEBUG o.h.r.t.b.j.i.JdbcResourceLocalTransactionCoordinatorImpl - JDBC transaction marked for rollback-only (exception provided for stack trace)
- java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:310)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1097)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:975)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:136)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy4/jdk.proxy4.$Proxy225.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:113)
- 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.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:279)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:285)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1820)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1769)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:907)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:785)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1354)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:561)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:907)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:785)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1354)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:561)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:959)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:334)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1354)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1343)
- at com.tnmaster.ApplicationRunnerKt.main(ApplicationRunner.kt:27)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:91)
- at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:53)
- at org.springframework.boot.loader.launch.JarLauncher.main(JarLauncher.java:58)
- 2024-02-18 11:51:20.408 [, - main] DEBUG o.s.data.jpa.repository.query.NamedQuery - Did not find named query UserRoleGroup.findAllOrderByIdDesc.count
- 2024-02-18 11:51:20.408 [, - main] DEBUG o.s.o.j.SharedEntityManagerCreator$SharedEntityManagerInvocationHandler - Creating new EntityManager for shared EntityManager invocation
- 2024-02-18 11:51:20.412 [, - main] DEBUG org.hibernate.orm.query.hql - HQL : from UserRoleGroup e order by e.id desc
- 2024-02-18 11:51:20.415 [, - main] DEBUG o.hibernate.orm.query.hql.reservedWordAsIdentifier - Encountered use of reserved word as identifier : desc
- 2024-02-18 11:51:20.416 [, - main] DEBUG org.hibernate.orm.query.sqm.ast - SqmStatement Tree :
- -> [select]
- -> [query-spec]
- -> [select]
- -> [selection]
- -> [root] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e)`
- <- [root] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e)`
- <- [selection]
- <- [select]
- -> [from]
- -> [root] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e)`
- <- [root] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e)`
- <- [from]
- <- [query-spec]
- <- [select]
-
- 2024-02-18 11:51:20.418 [, - main] DEBUG o.h.r.t.b.j.i.JdbcResourceLocalTransactionCoordinatorImpl - JDBC transaction marked for rollback-only (exception provided for stack trace)
- java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:310)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1097)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:975)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:136)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy4/jdk.proxy4.$Proxy225.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:113)
- 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.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:279)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:285)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1820)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1769)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:907)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:785)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1354)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:561)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:907)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:785)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1354)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:561)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:959)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:334)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1354)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1343)
- at com.tnmaster.ApplicationRunnerKt.main(ApplicationRunner.kt:27)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:91)
- at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:53)
- at org.springframework.boot.loader.launch.JarLauncher.main(JarLauncher.java:58)
- 2024-02-18 11:51:20.418 [, - main] DEBUG o.s.data.jpa.repository.query.NamedQuery - Did not find named query UserRoleGroup.findAllOrderByIdDesc.count
- 2024-02-18 11:51:20.418 [, - main] DEBUG o.s.o.j.SharedEntityManagerCreator$SharedEntityManagerInvocationHandler - Creating new EntityManager for shared EntityManager invocation
- 2024-02-18 11:51:20.420 [, - main] DEBUG org.hibernate.orm.query.hql - HQL : select count(e) from UserRoleGroup e
- 2024-02-18 11:51:20.420 [, - main] DEBUG o.hibernate.orm.query.hql.reservedWordAsIdentifier - Encountered use of reserved word as identifier : (
- 2024-02-18 11:51:20.420 [, - main] DEBUG org.hibernate.orm.query.sqm.ast - SqmStatement Tree :
- -> [select]
- -> [query-spec]
- -> [select]
- -> [selection]
- <- [selection]
- <- [select]
- -> [from]
- -> [root] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e)`
- <- [root] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e)`
- <- [from]
- <- [query-spec]
- <- [select]
-
- 2024-02-18 11:51:20.421 [, - main] DEBUG o.h.r.t.b.j.i.JdbcResourceLocalTransactionCoordinatorImpl - JDBC transaction marked for rollback-only (exception provided for stack trace)
- java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:310)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1097)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:975)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:136)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy4/jdk.proxy4.$Proxy225.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:113)
- 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.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:279)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:285)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1820)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1769)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:907)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:785)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1354)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:561)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:907)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:785)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1354)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:561)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:959)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:334)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1354)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1343)
- at com.tnmaster.ApplicationRunnerKt.main(ApplicationRunner.kt:27)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:91)
- at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:53)
- at org.springframework.boot.loader.launch.JarLauncher.main(JarLauncher.java:58)
- 2024-02-18 11:51:20.422 [, - main] DEBUG o.s.data.jpa.repository.query.NamedQuery - Did not find named query UserRoleGroup.findByIdAndNotLogicDeleteOrNull.count
- 2024-02-18 11:51:20.422 [, - main] DEBUG o.s.o.j.SharedEntityManagerCreator$SharedEntityManagerInvocationHandler - Creating new EntityManager for shared EntityManager invocation
- 2024-02-18 11:51:20.423 [, - main] DEBUG org.hibernate.orm.query.hql - HQL : from UserRoleGroup e where e.id = :id and e.ldf = false
- 2024-02-18 11:51:20.430 [, - main] DEBUG o.hibernate.orm.query.hql.reservedWordAsIdentifier - Encountered use of reserved word as identifier : =
- 2024-02-18 11:51:20.430 [, - main] DEBUG o.hibernate.orm.query.hql.reservedWordAsIdentifier - Encountered use of reserved word as identifier : and
- 2024-02-18 11:51:20.431 [, - main] DEBUG org.hibernate.orm.query.sqm.creation - Applying inferable type to SqmExpression [SqmNamedParameter(id)] : null -> SqmBasicValuedSimplePath(io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e).id)
- 2024-02-18 11:51:20.431 [, - main] DEBUG org.hibernate.orm.query.sqm.ast - SqmStatement Tree :
- -> [select]
- -> [query-spec]
- -> [select]
- -> [selection]
- -> [root] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e)`
- <- [root] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e)`
- <- [selection]
- <- [select]
- -> [from]
- -> [root] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e)`
- <- [root] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e)`
- <- [from]
- -> [where]
- -> [and]
- -> [EQUAL]
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e).id`
- :id
- <- [EQUAL]
- -> [EQUAL]
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e).ldf`
- <- [EQUAL]
- <- [and]
- <- [where]
- <- [query-spec]
- <- [select]
-
- 2024-02-18 11:51:20.436 [, - main] DEBUG o.h.r.t.b.j.i.JdbcResourceLocalTransactionCoordinatorImpl - JDBC transaction marked for rollback-only (exception provided for stack trace)
- java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:310)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1097)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:975)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:136)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy4/jdk.proxy4.$Proxy225.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:113)
- 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.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:279)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:285)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1820)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1769)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:907)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:785)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1354)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:561)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:907)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:785)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1354)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:561)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:959)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:334)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1354)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1343)
- at com.tnmaster.ApplicationRunnerKt.main(ApplicationRunner.kt:27)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:91)
- at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:53)
- at org.springframework.boot.loader.launch.JarLauncher.main(JarLauncher.java:58)
- 2024-02-18 11:51:20.436 [, - main] DEBUG o.s.data.jpa.repository.query.NamedQuery - Did not find named query UserRoleGroup.findLdfById.count
- 2024-02-18 11:51:20.436 [, - main] DEBUG o.s.o.j.SharedEntityManagerCreator$SharedEntityManagerInvocationHandler - Creating new EntityManager for shared EntityManager invocation
- 2024-02-18 11:51:20.438 [, - main] DEBUG org.hibernate.orm.query.hql - HQL : select (e.ldf = false) from UserRoleGroup e where e.id = :id
- 2024-02-18 11:51:20.461 [, - main] DEBUG o.hibernate.orm.query.hql.reservedWordAsIdentifier - Encountered use of reserved word as identifier : =
- 2024-02-18 11:51:20.461 [, - main] DEBUG o.hibernate.orm.query.hql.reservedWordAsIdentifier - Encountered use of reserved word as identifier :
- 2024-02-18 11:51:20.461 [, - main] DEBUG org.hibernate.orm.query.sqm.creation - Applying inferable type to SqmExpression [SqmNamedParameter(id)] : null -> SqmBasicValuedSimplePath(io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e).id)
- 2024-02-18 11:51:20.462 [, - main] DEBUG org.hibernate.orm.query.sqm.ast - SqmStatement Tree :
- -> [select]
- -> [query-spec]
- -> [select]
- -> [selection]
- -> [grouped]
- -> [EQUAL]
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e).ldf`
- <- [EQUAL]
- <- [grouped]
- <- [selection]
- <- [select]
- -> [from]
- -> [root] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e)`
- <- [root] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e)`
- <- [from]
- -> [where]
- -> [EQUAL]
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e).id`
- :id
- <- [EQUAL]
- <- [where]
- <- [query-spec]
- <- [select]
-
- 2024-02-18 11:51:20.463 [, - main] DEBUG o.h.r.t.b.j.i.JdbcResourceLocalTransactionCoordinatorImpl - JDBC transaction marked for rollback-only (exception provided for stack trace)
- java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:310)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1097)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:975)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:136)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy4/jdk.proxy4.$Proxy225.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:113)
- 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.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:279)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:285)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1820)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1769)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:907)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:785)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1354)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:561)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:907)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:785)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1354)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:561)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:959)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:334)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1354)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1343)
- at com.tnmaster.ApplicationRunnerKt.main(ApplicationRunner.kt:27)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:91)
- at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:53)
- at org.springframework.boot.loader.launch.JarLauncher.main(JarLauncher.java:58)
- 2024-02-18 11:51:20.464 [, - main] DEBUG o.s.data.jpa.repository.query.NamedQuery - Did not find named query UserRoleGroup.findRlvById.count
- 2024-02-18 11:51:20.464 [, - main] DEBUG o.s.o.j.SharedEntityManagerCreator$SharedEntityManagerInvocationHandler - Creating new EntityManager for shared EntityManager invocation
- 2024-02-18 11:51:20.465 [, - main] DEBUG org.hibernate.orm.query.hql - HQL : select e.rlv from UserRoleGroup e where e.id = :id
- 2024-02-18 11:51:20.465 [, - main] DEBUG o.hibernate.orm.query.hql.reservedWordAsIdentifier - Encountered use of reserved word as identifier : =
- 2024-02-18 11:51:20.465 [, - main] DEBUG o.hibernate.orm.query.hql.reservedWordAsIdentifier - Encountered use of reserved word as identifier :
- 2024-02-18 11:51:20.466 [, - main] DEBUG org.hibernate.orm.query.sqm.creation - Applying inferable type to SqmExpression [SqmNamedParameter(id)] : null -> SqmBasicValuedSimplePath(io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e).id)
- 2024-02-18 11:51:20.466 [, - main] DEBUG org.hibernate.orm.query.sqm.ast - SqmStatement Tree :
- -> [select]
- -> [query-spec]
- -> [select]
- -> [selection]
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e).rlv`
- <- [selection]
- <- [select]
- -> [from]
- -> [root] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e)`
- <- [root] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e)`
- <- [from]
- -> [where]
- -> [EQUAL]
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(e).id`
- :id
- <- [EQUAL]
- <- [where]
- <- [query-spec]
- <- [select]
-
- 2024-02-18 11:51:20.467 [, - main] DEBUG o.s.data.jpa.repository.query.NamedQuery - Looking up named query UserRoleGroup.findByUserIdAndRoleGroupId
- 2024-02-18 11:51:20.467 [, - main] DEBUG o.h.r.t.b.j.i.JdbcResourceLocalTransactionCoordinatorImpl - JDBC transaction marked for rollback-only (exception provided for stack trace)
- java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:310)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1097)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:975)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:136)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy4/jdk.proxy4.$Proxy225.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:113)
- at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:141)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:279)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:285)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1820)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1769)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:907)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:785)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1354)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:561)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:907)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:785)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1354)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:561)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:959)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:334)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1354)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1343)
- at com.tnmaster.ApplicationRunnerKt.main(ApplicationRunner.kt:27)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:91)
- at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:53)
- at org.springframework.boot.loader.launch.JarLauncher.main(JarLauncher.java:58)
- 2024-02-18 11:51:20.467 [, - main] DEBUG o.s.data.jpa.repository.query.NamedQuery - Did not find named query UserRoleGroup.findByUserIdAndRoleGroupId
- 2024-02-18 11:51:20.467 [, - main] DEBUG o.s.o.j.SharedEntityManagerCreator$SharedEntityManagerInvocationHandler - Creating new EntityManager for shared EntityManager invocation
- 2024-02-18 11:51:20.469 [, - main] DEBUG o.s.data.jpa.repository.query.NamedQuery - Looking up named query UserRoleGroup.deleteAllByRoleGroupIdAndUserId
- 2024-02-18 11:51:20.469 [, - main] DEBUG o.h.r.t.b.j.i.JdbcResourceLocalTransactionCoordinatorImpl - JDBC transaction marked for rollback-only (exception provided for stack trace)
- java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:310)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1097)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:975)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:136)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy4/jdk.proxy4.$Proxy225.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:113)
- at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:141)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:279)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:285)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1820)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1769)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:907)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:785)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1354)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:561)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:907)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:785)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1354)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:561)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:959)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:334)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1354)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1343)
- at com.tnmaster.ApplicationRunnerKt.main(ApplicationRunner.kt:27)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:91)
- at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:53)
- at org.springframework.boot.loader.launch.JarLauncher.main(JarLauncher.java:58)
- 2024-02-18 11:51:20.469 [, - main] DEBUG o.s.data.jpa.repository.query.NamedQuery - Did not find named query UserRoleGroup.deleteAllByRoleGroupIdAndUserId
- 2024-02-18 11:51:20.469 [, - main] DEBUG o.s.o.j.SharedEntityManagerCreator$SharedEntityManagerInvocationHandler - Creating new EntityManager for shared EntityManager invocation
- 2024-02-18 11:51:20.476 [, - main] DEBUG o.s.d.r.core.support.RepositoryFactorySupport - Finished creation of repository instance for io.github.truenine.composeserver.rds.repositories.relationship.IUserRoleGroupRepo.
- 2024-02-18 11:51:20.520 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'IUsrRepo'
- 2024-02-18 11:51:20.521 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jpa.named-queries#48'
- 2024-02-18 11:51:20.524 [, - main] DEBUG o.s.b.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jpa.IUsrRepo.fragments#0'
- 2024-02-18 11:51:20.531 [, - main] DEBUG o.s.o.j.SharedEntityManagerCreator$SharedEntityManagerInvocationHandler - Creating new EntityManager for shared EntityManager invocation
- 2024-02-18 11:51:20.607 [, - main] DEBUG o.s.d.r.core.support.RepositoryFactorySupport - Initializing repository instance for io.github.truenine.composeserver.rds.repositories.IUsrRepo…
- 2024-02-18 11:51:20.608 [, - main] DEBUG o.s.o.j.SharedEntityManagerCreator$SharedEntityManagerInvocationHandler - Creating new EntityManager for shared EntityManager invocation
- 2024-02-18 11:51:20.609 [, - main] DEBUG o.s.o.j.SharedEntityManagerCreator$SharedEntityManagerInvocationHandler - Creating new EntityManager for shared EntityManager invocation
- 2024-02-18 11:51:20.847 [, - main] DEBUG o.h.r.t.b.j.i.JdbcResourceLocalTransactionCoordinatorImpl - JDBC transaction marked for rollback-only (exception provided for stack trace)
- java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:310)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1097)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:975)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:136)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy4/jdk.proxy4.$Proxy225.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:113)
- 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.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:279)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:285)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1820)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1769)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:907)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:785)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1354)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:561)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:907)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:785)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1354)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:561)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:959)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:334)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1354)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1343)
- at com.tnmaster.ApplicationRunnerKt.main(ApplicationRunner.kt:27)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:91)
- at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:53)
- at org.springframework.boot.loader.launch.JarLauncher.main(JarLauncher.java:58)
- 2024-02-18 11:51:20.847 [, - main] DEBUG o.s.data.jpa.repository.query.NamedQuery - Did not find named query Usr.findAccountByUserInfoWechatOpenid.count
- 2024-02-18 11:51:20.848 [, - main] DEBUG o.s.o.j.SharedEntityManagerCreator$SharedEntityManagerInvocationHandler - Creating new EntityManager for shared EntityManager invocation
- 2024-02-18 11:51:20.848 [, - main] DEBUG org.hibernate.orm.query.hql - HQL :
- from Usr u
- left join UserInfo i on i.userId = u.id
- where i.pri = true and i.wechatOpenid = :openid
-
- 2024-02-18 11:51:20.874 [, - main] DEBUG o.hibernate.orm.query.hql.reservedWordAsIdentifier - Encountered use of reserved word as identifier : where
- 2024-02-18 11:51:20.877 [, - main] DEBUG org.hibernate.orm.query.hql - Unable to resolve unqualified attribute [UserInfo] in local from-clause
- 2024-02-18 11:51:20.880 [, - main] DEBUG org.hibernate.orm.query.sqm.creation - Applying inferable type to SqmExpression [SqmNamedParameter(openid)] : null -> SqmBasicValuedSimplePath(io.github.truenine.composeserver.rds.entities.UserInfo(i).wechatOpenid)
- 2024-02-18 11:51:20.882 [, - main] DEBUG org.hibernate.orm.query.sqm.ast - SqmStatement Tree :
- -> [select]
- -> [query-spec]
- -> [select]
- -> [selection]
- -> [root] - `io.github.truenine.composeserver.rds.entities.Usr(u)`
- -> [joins]
- -> [entity] - `io.github.truenine.composeserver.rds.entities.UserInfo(i)`
- -> [on]
- -> [EQUAL]
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.UserInfo(i).userId`
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.Usr(u).id`
- <- [EQUAL]
- <- [on]
- <- [entity] - `io.github.truenine.composeserver.rds.entities.UserInfo(i)`
- <- [joins]
- <- [root] - `io.github.truenine.composeserver.rds.entities.Usr(u)`
- <- [selection]
- <- [select]
- -> [from]
- -> [root] - `io.github.truenine.composeserver.rds.entities.Usr(u)`
- -> [joins]
- -> [entity] - `io.github.truenine.composeserver.rds.entities.UserInfo(i)`
- -> [on]
- -> [EQUAL]
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.UserInfo(i).userId`
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.Usr(u).id`
- <- [EQUAL]
- <- [on]
- <- [entity] - `io.github.truenine.composeserver.rds.entities.UserInfo(i)`
- <- [joins]
- <- [root] - `io.github.truenine.composeserver.rds.entities.Usr(u)`
- <- [from]
- -> [where]
- -> [and]
- -> [EQUAL]
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.UserInfo(i).pri`
- <- [EQUAL]
- -> [EQUAL]
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.UserInfo(i).wechatOpenid`
- :openid
- <- [EQUAL]
- <- [and]
- <- [where]
- <- [query-spec]
- <- [select]
-
- 2024-02-18 11:51:20.883 [, - main] DEBUG o.h.r.t.b.j.i.JdbcResourceLocalTransactionCoordinatorImpl - JDBC transaction marked for rollback-only (exception provided for stack trace)
- java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:310)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1097)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:975)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:136)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy4/jdk.proxy4.$Proxy225.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:113)
- 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.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:279)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:285)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1820)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1769)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:907)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:785)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1354)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:561)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:907)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:785)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1354)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:561)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:959)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:334)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1354)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1343)
- at com.tnmaster.ApplicationRunnerKt.main(ApplicationRunner.kt:27)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:91)
- at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:53)
- at org.springframework.boot.loader.launch.JarLauncher.main(JarLauncher.java:58)
- 2024-02-18 11:51:20.883 [, - main] DEBUG o.s.data.jpa.repository.query.NamedQuery - Did not find named query Usr.findAllByNotLogicDeleted.count
- 2024-02-18 11:51:20.884 [, - main] DEBUG o.s.o.j.SharedEntityManagerCreator$SharedEntityManagerInvocationHandler - Creating new EntityManager for shared EntityManager invocation
- 2024-02-18 11:51:20.885 [, - main] DEBUG org.hibernate.orm.query.hql - HQL : from Usr e where e.ldf = false
- 2024-02-18 11:51:20.886 [, - main] DEBUG org.hibernate.orm.query.sqm.ast - SqmStatement Tree :
- -> [select]
- -> [query-spec]
- -> [select]
- -> [selection]
- -> [root] - `io.github.truenine.composeserver.rds.entities.Usr(e)`
- <- [root] - `io.github.truenine.composeserver.rds.entities.Usr(e)`
- <- [selection]
- <- [select]
- -> [from]
- -> [root] - `io.github.truenine.composeserver.rds.entities.Usr(e)`
- <- [root] - `io.github.truenine.composeserver.rds.entities.Usr(e)`
- <- [from]
- -> [where]
- -> [EQUAL]
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.Usr(e).ldf`
- <- [EQUAL]
- <- [where]
- <- [query-spec]
- <- [select]
-
- 2024-02-18 11:51:20.888 [, - main] DEBUG org.hibernate.orm.query.hql - HQL : select count(e) from Usr e where e.ldf = false
- 2024-02-18 11:51:20.888 [, - main] DEBUG o.hibernate.orm.query.hql.reservedWordAsIdentifier - Encountered use of reserved word as identifier : (
- 2024-02-18 11:51:20.889 [, - main] DEBUG org.hibernate.orm.query.sqm.ast - SqmStatement Tree :
- -> [select]
- -> [query-spec]
- -> [select]
- -> [selection]
- <- [selection]
- <- [select]
- -> [from]
- -> [root] - `io.github.truenine.composeserver.rds.entities.Usr(e)`
- <- [root] - `io.github.truenine.composeserver.rds.entities.Usr(e)`
- <- [from]
- -> [where]
- -> [EQUAL]
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.Usr(e).ldf`
- <- [EQUAL]
- <- [where]
- <- [query-spec]
- <- [select]
-
- 2024-02-18 11:51:20.894 [, - main] DEBUG o.h.r.t.b.j.i.JdbcResourceLocalTransactionCoordinatorImpl - JDBC transaction marked for rollback-only (exception provided for stack trace)
- java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:310)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1097)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:975)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:136)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy4/jdk.proxy4.$Proxy225.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:113)
- 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.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:279)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:285)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1820)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1769)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:907)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:785)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1354)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:561)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:907)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:785)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1354)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:561)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:959)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:334)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1354)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1343)
- at com.tnmaster.ApplicationRunnerKt.main(ApplicationRunner.kt:27)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:91)
- at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:53)
- at org.springframework.boot.loader.launch.JarLauncher.main(JarLauncher.java:58)
- 2024-02-18 11:51:20.894 [, - main] DEBUG o.s.data.jpa.repository.query.NamedQuery - Did not find named query Usr.existsByWechatOpenId.count
- 2024-02-18 11:51:20.894 [, - main] DEBUG o.s.o.j.SharedEntityManagerCreator$SharedEntityManagerInvocationHandler - Creating new EntityManager for shared EntityManager invocation
- 2024-02-18 11:51:20.896 [, - main] DEBUG org.hibernate.orm.query.hql - HQL :
- SELECT count(i.id) > 0
- FROM UserInfo i
- LEFT JOIN Usr u ON i.userId = u.id
- WHERE i.wechatOpenid = :openId
-
- 2024-02-18 11:51:20.907 [, - main] DEBUG o.hibernate.orm.query.hql.reservedWordAsIdentifier - Encountered use of reserved word as identifier : (
- 2024-02-18 11:51:20.908 [, - main] DEBUG o.hibernate.orm.query.hql.reservedWordAsIdentifier - Encountered use of reserved word as identifier : )
- 2024-02-18 11:51:20.908 [, - main] DEBUG o.hibernate.orm.query.hql.reservedWordAsIdentifier - Encountered use of reserved word as identifier : WHERE
- 2024-02-18 11:51:20.908 [, - main] DEBUG org.hibernate.orm.query.hql - Unable to resolve unqualified attribute [Usr] in local from-clause
- 2024-02-18 11:51:20.909 [, - main] DEBUG org.hibernate.orm.query.sqm.creation - Applying inferable type to SqmExpression [SqmNamedParameter(openId)] : null -> SqmBasicValuedSimplePath(io.github.truenine.composeserver.rds.entities.UserInfo(i).wechatOpenid)
- 2024-02-18 11:51:20.909 [, - main] DEBUG org.hibernate.orm.query.sqm.ast - SqmStatement Tree :
- -> [select]
- -> [query-spec]
- -> [select]
- -> [selection]
- -> [GREATER_THAN]
- <- [GREATER_THAN]
- <- [selection]
- <- [select]
- -> [from]
- -> [root] - `io.github.truenine.composeserver.rds.entities.UserInfo(i)`
- -> [joins]
- -> [entity] - `io.github.truenine.composeserver.rds.entities.Usr(u)`
- -> [on]
- -> [EQUAL]
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.UserInfo(i).userId`
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.Usr(u).id`
- <- [EQUAL]
- <- [on]
- <- [entity] - `io.github.truenine.composeserver.rds.entities.Usr(u)`
- <- [joins]
- <- [root] - `io.github.truenine.composeserver.rds.entities.UserInfo(i)`
- <- [from]
- -> [where]
- -> [EQUAL]
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.UserInfo(i).wechatOpenid`
- :openId
- <- [EQUAL]
- <- [where]
- <- [query-spec]
- <- [select]
-
- 2024-02-18 11:51:20.912 [, - main] DEBUG o.h.r.t.b.j.i.JdbcResourceLocalTransactionCoordinatorImpl - JDBC transaction marked for rollback-only (exception provided for stack trace)
- java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:310)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1097)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:975)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:136)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy4/jdk.proxy4.$Proxy225.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:113)
- 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.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:279)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:285)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1820)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1769)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:907)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:785)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1354)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:561)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:907)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:785)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1354)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:561)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:959)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:334)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1354)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1343)
- at com.tnmaster.ApplicationRunnerKt.main(ApplicationRunner.kt:27)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:91)
- at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:53)
- at org.springframework.boot.loader.launch.JarLauncher.main(JarLauncher.java:58)
- 2024-02-18 11:51:20.912 [, - main] DEBUG o.s.data.jpa.repository.query.NamedQuery - Did not find named query Usr.existsByIdAndNotLogicDeleted.count
- 2024-02-18 11:51:20.912 [, - main] DEBUG o.s.o.j.SharedEntityManagerCreator$SharedEntityManagerInvocationHandler - Creating new EntityManager for shared EntityManager invocation
- 2024-02-18 11:51:20.915 [, - main] DEBUG org.hibernate.orm.query.hql - HQL : select count(e.id) > 0 from Usr e where e.id = :id and (e.ldf = false or e.ldf is null)
- 2024-02-18 11:51:20.915 [, - main] DEBUG o.hibernate.orm.query.hql.reservedWordAsIdentifier - Encountered use of reserved word as identifier : (
- 2024-02-18 11:51:20.915 [, - main] DEBUG o.hibernate.orm.query.hql.reservedWordAsIdentifier - Encountered use of reserved word as identifier : )
- 2024-02-18 11:51:20.915 [, - main] DEBUG o.hibernate.orm.query.hql.reservedWordAsIdentifier - Encountered use of reserved word as identifier : =
- 2024-02-18 11:51:20.915 [, - main] DEBUG o.hibernate.orm.query.hql.reservedWordAsIdentifier - Encountered use of reserved word as identifier : and
- 2024-02-18 11:51:20.916 [, - main] DEBUG org.hibernate.orm.query.sqm.creation - Applying inferable type to SqmExpression [SqmNamedParameter(id)] : null -> SqmBasicValuedSimplePath(io.github.truenine.composeserver.rds.entities.Usr(e).id)
- 2024-02-18 11:51:20.916 [, - main] DEBUG org.hibernate.orm.query.sqm.ast - SqmStatement Tree :
- -> [select]
- -> [query-spec]
- -> [select]
- -> [selection]
- -> [GREATER_THAN]
- <- [GREATER_THAN]
- <- [selection]
- <- [select]
- -> [from]
- -> [root] - `io.github.truenine.composeserver.rds.entities.Usr(e)`
- <- [root] - `io.github.truenine.composeserver.rds.entities.Usr(e)`
- <- [from]
- -> [where]
- -> [and]
- -> [EQUAL]
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.Usr(e).id`
- :id
- <- [EQUAL]
- -> [grouped]
- -> [or]
- -> [EQUAL]
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.Usr(e).ldf`
- <- [EQUAL]
- -> [is-null]
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.Usr(e).ldf`
- <- [is-null]
- <- [or]
- <- [grouped]
- <- [and]
- <- [where]
- <- [query-spec]
- <- [select]
-
- 2024-02-18 11:51:20.918 [, - main] DEBUG o.h.r.t.b.j.i.JdbcResourceLocalTransactionCoordinatorImpl - JDBC transaction marked for rollback-only (exception provided for stack trace)
- java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:310)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1097)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:975)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:136)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy4/jdk.proxy4.$Proxy225.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:113)
- 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.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:279)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:285)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1820)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1769)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:907)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:785)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1354)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:561)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:907)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:785)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1354)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:561)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:959)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:334)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1354)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1343)
- at com.tnmaster.ApplicationRunnerKt.main(ApplicationRunner.kt:27)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:91)
- at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:53)
- at org.springframework.boot.loader.launch.JarLauncher.main(JarLauncher.java:58)
- 2024-02-18 11:51:20.918 [, - main] DEBUG o.s.data.jpa.repository.query.NamedQuery - Did not find named query Usr.findAccountByUserInfoPhone.count
- 2024-02-18 11:51:20.918 [, - main] DEBUG o.s.o.j.SharedEntityManagerCreator$SharedEntityManagerInvocationHandler - Creating new EntityManager for shared EntityManager invocation
- 2024-02-18 11:51:20.919 [, - main] DEBUG org.hibernate.orm.query.hql - HQL :
- from Usr u
- left join UserInfo i on i.userId = u.id
- where i.pri = true and i.phone = :phone
-
- 2024-02-18 11:51:20.920 [, - main] DEBUG o.hibernate.orm.query.hql.reservedWordAsIdentifier - Encountered use of reserved word as identifier : where
- 2024-02-18 11:51:20.920 [, - main] DEBUG org.hibernate.orm.query.hql - Unable to resolve unqualified attribute [UserInfo] in local from-clause
- 2024-02-18 11:51:20.920 [, - main] DEBUG org.hibernate.orm.query.sqm.creation - Applying inferable type to SqmExpression [SqmNamedParameter(phone)] : null -> SqmBasicValuedSimplePath(io.github.truenine.composeserver.rds.entities.UserInfo(i).phone)
- 2024-02-18 11:51:20.920 [, - main] DEBUG org.hibernate.orm.query.sqm.ast - SqmStatement Tree :
- -> [select]
- -> [query-spec]
- -> [select]
- -> [selection]
- -> [root] - `io.github.truenine.composeserver.rds.entities.Usr(u)`
- -> [joins]
- -> [entity] - `io.github.truenine.composeserver.rds.entities.UserInfo(i)`
- -> [on]
- -> [EQUAL]
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.UserInfo(i).userId`
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.Usr(u).id`
- <- [EQUAL]
- <- [on]
- <- [entity] - `io.github.truenine.composeserver.rds.entities.UserInfo(i)`
- <- [joins]
- <- [root] - `io.github.truenine.composeserver.rds.entities.Usr(u)`
- <- [selection]
- <- [select]
- -> [from]
- -> [root] - `io.github.truenine.composeserver.rds.entities.Usr(u)`
- -> [joins]
- -> [entity] - `io.github.truenine.composeserver.rds.entities.UserInfo(i)`
- -> [on]
- -> [EQUAL]
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.UserInfo(i).userId`
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.Usr(u).id`
- <- [EQUAL]
- <- [on]
- <- [entity] - `io.github.truenine.composeserver.rds.entities.UserInfo(i)`
- <- [joins]
- <- [root] - `io.github.truenine.composeserver.rds.entities.Usr(u)`
- <- [from]
- -> [where]
- -> [and]
- -> [EQUAL]
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.UserInfo(i).pri`
- <- [EQUAL]
- -> [EQUAL]
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.UserInfo(i).phone`
- :phone
- <- [EQUAL]
- <- [and]
- <- [where]
- <- [query-spec]
- <- [select]
-
- 2024-02-18 11:51:20.928 [, - main] DEBUG o.h.r.t.b.j.i.JdbcResourceLocalTransactionCoordinatorImpl - JDBC transaction marked for rollback-only (exception provided for stack trace)
- java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:310)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1097)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:975)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:136)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy4/jdk.proxy4.$Proxy225.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:113)
- 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.(QueryExecutorMethodInterceptor.java:88)
- at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:357)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.lambda$afterPropertiesSet$5(RepositoryFactoryBeanSupport.java:279)
- at org.springframework.data.util.Lazy.getNullable(Lazy.java:135)
- at org.springframework.data.util.Lazy.get(Lazy.java:113)
- at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:285)
- at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:132)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1820)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1769)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:907)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:785)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1354)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:561)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353)
- at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:907)
- at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:785)
- at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:237)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1354)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:561)
- at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:521)
- at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325)
- at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)
- at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:323)
- at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
- at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975)
- at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:959)
- at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624)
- at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146)
- at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754)
- at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:334)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1354)
- at org.springframework.boot.SpringApplication.run(SpringApplication.java:1343)
- at com.tnmaster.ApplicationRunnerKt.main(ApplicationRunner.kt:27)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:91)
- at org.springframework.boot.loader.launch.Launcher.launch(Launcher.java:53)
- at org.springframework.boot.loader.launch.JarLauncher.main(JarLauncher.java:58)
- 2024-02-18 11:51:20.928 [, - main] DEBUG o.s.data.jpa.repository.query.NamedQuery - Did not find named query Usr.findAllPermissionsNameByAccount.count
- 2024-02-18 11:51:20.929 [, - main] DEBUG o.s.o.j.SharedEntityManagerCreator$SharedEntityManagerInvocationHandler - Creating new EntityManager for shared EntityManager invocation
- 2024-02-18 11:51:20.933 [, - main] DEBUG org.hibernate.orm.query.hql - HQL :
- SELECT p.name
- FROM Usr u
- LEFT JOIN UserRoleGroup urg ON urg.userId = u.id
- LEFT JOIN RoleGroup rg ON rg.id = urg.roleGroupId
- LEFT JOIN RoleGroupRole rgr ON rgr.roleGroupId = rg.id
- LEFT JOIN Role r ON r.id = rgr.roleId
- LEFT JOIN RolePermissions rp ON rp.roleId = r.id
- LEFT JOIN Permissions p ON p.id = rp.permissionsId
- WHERE u.account = :account
-
- 2024-02-18 11:51:20.934 [, - main] DEBUG o.hibernate.orm.query.hql.reservedWordAsIdentifier - Encountered use of reserved word as identifier : LEFT
- 2024-02-18 11:51:20.934 [, - main] DEBUG o.hibernate.orm.query.hql.reservedWordAsIdentifier - Encountered use of reserved word as identifier : =
- 2024-02-18 11:51:20.935 [, - main] DEBUG o.hibernate.orm.query.hql.reservedWordAsIdentifier - Encountered use of reserved word as identifier : LEFT
- 2024-02-18 11:51:20.935 [, - main] DEBUG o.hibernate.orm.query.hql.reservedWordAsIdentifier - Encountered use of reserved word as identifier : =
- 2024-02-18 11:51:20.935 [, - main] DEBUG o.hibernate.orm.query.hql.reservedWordAsIdentifier - Encountered use of reserved word as identifier : LEFT
- 2024-02-18 11:51:20.935 [, - main] DEBUG o.hibernate.orm.query.hql.reservedWordAsIdentifier - Encountered use of reserved word as identifier : =
- 2024-02-18 11:51:20.935 [, - main] DEBUG org.hibernate.orm.query.hql - Unable to resolve unqualified attribute [UserRoleGroup] in local from-clause
- 2024-02-18 11:51:20.935 [, - main] DEBUG org.hibernate.orm.query.hql - Unable to resolve unqualified attribute [RoleGroup] in local from-clause
- 2024-02-18 11:51:20.935 [, - main] DEBUG org.hibernate.orm.query.hql - Unable to resolve unqualified attribute [RoleGroupRole] in local from-clause
- 2024-02-18 11:51:20.935 [, - main] DEBUG org.hibernate.orm.query.hql - Unable to resolve unqualified attribute [Role] in local from-clause
- 2024-02-18 11:51:20.936 [, - main] DEBUG org.hibernate.orm.query.hql - Unable to resolve unqualified attribute [RolePermissions] in local from-clause
- 2024-02-18 11:51:20.936 [, - main] DEBUG org.hibernate.orm.query.hql - Unable to resolve unqualified attribute [Permissions] in local from-clause
- 2024-02-18 11:51:20.941 [, - main] DEBUG org.hibernate.orm.query.sqm.creation - Applying inferable type to SqmExpression [SqmNamedParameter(account)] : null -> SqmBasicValuedSimplePath(io.github.truenine.composeserver.rds.entities.Usr(u).account)
- 2024-02-18 11:51:20.941 [, - main] DEBUG org.hibernate.orm.query.sqm.ast - SqmStatement Tree :
- -> [select]
- -> [query-spec]
- -> [select]
- -> [selection]
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.Permissions(p).name`
- <- [selection]
- <- [select]
- -> [from]
- -> [root] - `io.github.truenine.composeserver.rds.entities.Usr(u)`
- -> [joins]
- -> [entity] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(urg)`
- -> [on]
- -> [EQUAL]
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(urg).userId`
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.Usr(u).id`
- <- [EQUAL]
- <- [on]
- <- [entity] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(urg)`
- -> [entity] - `io.github.truenine.composeserver.rds.entities.RoleGroup(rg)`
- -> [on]
- -> [EQUAL]
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.RoleGroup(rg).id`
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.relationship.UserRoleGroup(urg).roleGroupId`
- <- [EQUAL]
- <- [on]
- <- [entity] - `io.github.truenine.composeserver.rds.entities.RoleGroup(rg)`
- -> [entity] - `io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole(rgr)`
- -> [on]
- -> [EQUAL]
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole(rgr).roleGroupId`
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.RoleGroup(rg).id`
- <- [EQUAL]
- <- [on]
- <- [entity] - `io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole(rgr)`
- -> [entity] - `io.github.truenine.composeserver.rds.entities.Role(r)`
- -> [on]
- -> [EQUAL]
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.Role(r).id`
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.relationship.RoleGroupRole(rgr).roleId`
- <- [EQUAL]
- <- [on]
- <- [entity] - `io.github.truenine.composeserver.rds.entities.Role(r)`
- -> [entity] - `io.github.truenine.composeserver.rds.entities.relationship.RolePermissions(rp)`
- -> [on]
- -> [EQUAL]
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.relationship.RolePermissions(rp).roleId`
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.Role(r).id`
- <- [EQUAL]
- <- [on]
- <- [entity] - `io.github.truenine.composeserver.rds.entities.relationship.RolePermissions(rp)`
- -> [entity] - `io.github.truenine.composeserver.rds.entities.Permissions(p)`
- -> [on]
- -> [EQUAL]
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.Permissions(p).id`
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.relationship.RolePermissions(rp).permissionsId`
- <- [EQUAL]
- <- [on]
- <- [entity] - `io.github.truenine.composeserver.rds.entities.Permissions(p)`
- <- [joins]
- <- [root] - `io.github.truenine.composeserver.rds.entities.Usr(u)`
- <- [from]
- -> [where]
- -> [EQUAL]
- -> [basic-path] - `io.github.truenine.composeserver.rds.entities.Usr(u).account`
- :account
- <- [EQUAL]
- <- [where]
- <- [query-spec]
- <- [select]
-
- 2024-02-18 11:51:20.942 [, - main] DEBUG o.s.data.jpa.repository.query.NamedQuery - Looking up named query Usr.findAllByNickName
- 2024-02-18 11:51:20.942 [, - main] DEBUG o.h.r.t.b.j.i.JdbcResourceLocalTransactionCoordinatorImpl - JDBC transaction marked for rollback-only (exception provided for stack trace)
- java.lang.Exception: exception just for purpose of providing stack trace
- at org.hibernate.resource.transaction.backend.jdbc.internal.JdbcResourceLocalTransactionCoordinatorImpl$TransactionDriverControlImpl.markRollbackOnly(JdbcResourceLocalTransactionCoordinatorImpl.java:310)
- at org.hibernate.internal.AbstractSharedSessionContract.buildNamedQuery(AbstractSharedSessionContract.java:1097)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:975)
- at org.hibernate.internal.AbstractSharedSessionContract.createNamedQuery(AbstractSharedSessionContract.java:136)
- at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103)
- at java.base/java.lang.reflect.Method.invoke(Method.java:580)
- at org.springframework.orm.jpa.ExtendedEntityManagerCreator$ExtendedEntityManagerInvocationHandler.invoke(ExtendedEntityManagerCreator.java:364)
- at jdk.proxy4/jdk.proxy4.$Proxy225.createNamedQuery(Unknown Source)
- at org.springframework.data.jpa.repository.query.NamedQuery.hasNamedQuery(NamedQuery.java:113)
- at org.springframework.data.jpa.repository.query.NamedQuery.lookupFrom(NamedQuery.java:141)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$DeclaredQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:180)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:252)
- at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:95)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lookupQuery(QueryExecutorMethodInterceptor.java:111)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.mapMethodsToQuery(QueryExecutorMethodInterceptor.java:99)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.lambda$new$0(QueryExecutorMethodInterceptor.java:88)
- at java.base/java.util.Optional.map(Optional.java:260)
- at org.springframework.data.repository.core.support.QueryExecutorMethodInterceptor.