+ set -e + set -o pipefail ++ dirname ./run.sh + cd . + echo 3617 + echo '1.68.4 61d95181d' 1.68.4 61d95181d + date Mon May 20 09:43:39 CEST 2019 + uptime 09:43:39 up 155 days, 23:13, 0 users, load average: 5.02, 4.83, 4.76 + ff=default + image=yegor256/rultor + rebase=false + head_branch=master + pull_title=321 + author=mgramin + directory= + head=git@github.com:sql-boot/sql-boot.git + pull_id=323 + fork=git@github.com:sql-boot/sql-boot.git + fork_branch=321 + squash=false + vars=('--env=head=git@github.com:sql-boot/sql-boot.git' '--env=pull_id=323' '--env=fork=git@github.com:sql-boot/sql-boot.git' '--env=fork_branch=321' '--env=head_branch=master' '--env=pull_title=321' '--env=author=mgramin' '--env=scripts=( '\''export '\''\'\'''\''head=git@github.com:sql-boot/sql-boot.git'\''\'\'''\'''\'' '\'';'\'' '\''export '\''\'\'''\''pull_id=323'\''\'\'''\'''\'' '\'';'\'' '\''export '\''\'\'''\''fork=git@github.com:sql-boot/sql-boot.git'\''\'\'''\'''\'' '\'';'\'' '\''export '\''\'\'''\''fork_branch=321'\''\'\'''\'''\'' '\'';'\'' '\''export '\''\'\'''\''head_branch=master'\''\'\'''\'''\'' '\'';'\'' '\''export '\''\'\'''\''pull_title=321'\''\'\'''\'''\'' '\'';'\'' '\''export '\''\'\'''\''author=mgramin'\''\'\'''\'''\'' '\'';'\'' '\''mvn clean install'\'' '\'';'\'' )') + scripts=('export '\''head=git@github.com:sql-boot/sql-boot.git'\''' ';' 'export '\''pull_id=323'\''' ';' 'export '\''fork=git@github.com:sql-boot/sql-boot.git'\''' ';' 'export '\''fork_branch=321'\''' ';' 'export '\''head_branch=master'\''' ';' 'export '\''pull_title=321'\''' ';' 'export '\''author=mgramin'\''' ';' 'mvn clean install' ';') + container=sql-boot_sql-boot_323 + as_root=false + mkdir -p /home/rultor/.ssh + echo -e 'Host github.com\n\tStrictHostKeyChecking no\n' + chmod 600 /home/rultor/.ssh/config + git clone git@github.com:sql-boot/sql-boot.git repo Cloning into 'repo'... + cd repo + git config user.email me@rultor.com + git config user.name rultor + '[' -z 'export '\''head=git@github.com:sql-boot/sql-boot.git'\''' ']' + cd .. + cat + '[' false = true ']' + cat + chmod a+x entry.sh + cat + echo 'export '\''head=git@github.com:sql-boot/sql-boot.git'\''' ';' 'export '\''pull_id=323'\''' ';' 'export '\''fork=git@github.com:sql-boot/sql-boot.git'\''' ';' 'export '\''fork_branch=321'\''' ';' 'export '\''head_branch=master'\''' ';' 'export '\''pull_title=321'\''' ';' 'export '\''author=mgramin'\''' ';' 'mvn clean install' ';' + sensitive=() + rm -rf .gpg + cd repo + git remote add fork git@github.com:sql-boot/sql-boot.git + git remote update Fetching origin Fetching fork From github.com:sql-boot/sql-boot * [new branch] 321 -> fork/321 * [new branch] master -> fork/master + args= + '[' default == default ']' + args=' --ff' + '[' default == no ']' + '[' default == only ']' + export BRANCH=__rultor + BRANCH=__rultor ++ git show-branch __rultor ++ wc -l + '[' 0 -gt 0 ']' + git checkout -B __rultor fork/321 Switched to a new branch '__rultor' Branch __rultor set up to track remote branch 321 from fork. + git checkout -B master origin/master Switched to and reset branch 'master' Branch master set up to track remote branch master from origin. Your branch is up-to-date with 'origin/master'. + '[' false == true ']' + '[' false == true ']' + git merge --ff __rultor Updating e7fd408..f3cd4c5 Fast-forward .travis.yml | 2 +- pom.xml | 12 ++--- .../sqlboot/model/connection/CheckedConnection.kt | 49 ------------------- .../connection/{DbConnection.kt => Endpoint.kt} | 9 ++-- .../{DbConnectionList.kt => EndpointList.kt} | 6 +-- .../{FakeDbConnection.kt => FakeEndpoint.kt} | 14 ++---- .../{SimpleDbConnection.kt => SimpleEndpoint.kt} | 53 ++++++++------------- .../mgramin/sqlboot/model/resourcetype/Metadata.kt | 4 +- .../model/resourcetype/impl/FsResourceType.kt | 55 +++++++++++----------- .../model/resourcetype/impl/SqlResourceType.kt | 21 ++++----- .../resourcetype/wrappers/body/BodyWrapper.kt | 1 - .../resourcetype/wrappers/header/DbNameWrapper.kt | 6 +-- .../resourcetype/wrappers/list/CacheWrapper.kt | 1 + .../sqlboot/rest/controllers/ApiController.kt | 14 +++--- .../rest/controllers/DbConnectionsController.kt | 35 +++++--------- .../sqlboot/rest/controllers/SwaggerController.kt | 21 +++------ .../sqlboot/tools/files/file/impl/MarkdownFile.kt | 2 +- src/main/resources/application.yml | 12 +++-- ...DbConnectionListTest.kt => EndpointListTest.kt} | 16 +++---- .../model/resourcetype/impl/FsResourceTypeTest.kt | 34 ++++++++----- .../model/resourcetype/impl/SqlResourceTypeTest.kt | 19 ++++---- .../wrappers/ResourceTypeWrapperTest.kt | 4 +- .../sql/select/wrappers/RestSelectQueryTest.kt | 1 + src/test/resources/application.yml | 50 ++++---------------- 24 files changed, 168 insertions(+), 273 deletions(-) delete mode 100644 src/main/kotlin/com/github/mgramin/sqlboot/model/connection/CheckedConnection.kt rename src/main/kotlin/com/github/mgramin/sqlboot/model/connection/{DbConnection.kt => Endpoint.kt} (93%) rename src/main/kotlin/com/github/mgramin/sqlboot/model/connection/{DbConnectionList.kt => EndpointList.kt} (84%) rename src/main/kotlin/com/github/mgramin/sqlboot/model/connection/{FakeDbConnection.kt => FakeEndpoint.kt} (87%) rename src/main/kotlin/com/github/mgramin/sqlboot/model/connection/{SimpleDbConnection.kt => SimpleEndpoint.kt} (59%) rename src/test/kotlin/com/github/mgramin/sqlboot/model/connection/{DbConnectionListTest.kt => EndpointListTest.kt} (78%) + docker_when_possible + true ++ uptime ++ tail -n 1 ++ sed 's/ /\n/g' + load=4.77 ++ echo 4.77 '>' 30 ++ bc + '[' 0 -eq 1 ']' + echo 'load average is 4.77, low enough to run a new Docker container' load average is 4.77, low enough to run a new Docker container + break + cd .. + '[' -n '' ']' + use_image=yegor256/rultor + docker pull yegor256/rultor Using default tag: latest latest: Pulling from yegor256/rultor Digest: sha256:89ad567752735f414ef0f6408fd08b5aeed93259147b0dfe2df279054c27a472 Status: Image is up to date for yegor256/rultor:latest + docker ps --filter=status=exited + grep --quiet '\ssql-boot_sql-boot_323\s*$' + ls -al . total 712 drwx--x--x 3 rultor rultor 4096 May 20 09:43 . drwxrwxrwt 14 root root 684032 May 20 09:43 .. -rw-rw-r-- 1 rultor rultor 444 May 20 09:43 end.sh -rwxrwxr-x 1 rultor rultor 338 May 20 09:43 entry.sh -rw-rw-r-- 1 rultor rultor 5 May 20 09:43 pid drwxrwxr-x 5 rultor rultor 4096 May 20 09:43 repo -rwxrwxr-x 1 rultor rultor 5312 May 20 09:43 run.sh -rw-rw-r-- 1 rultor rultor 379 May 20 09:43 script.sh -rw-rw-r-- 1 rultor rultor 6297 May 20 09:43 stdout ++ pwd ++ pwd + docker run -t --rm -v /tmp/rultor-Abyx:/main --env=head=git@github.com:sql-boot/sql-boot.git --env=pull_id=323 --env=fork=git@github.com:sql-boot/sql-boot.git --env=fork_branch=321 --env=head_branch=master --env=pull_title=321 --env=author=mgramin '--env=scripts=( '\''export '\''\'\'''\''head=git@github.com:sql-boot/sql-boot.git'\''\'\'''\'''\'' '\'';'\'' '\''export '\''\'\'''\''pull_id=323'\''\'\'''\'''\'' '\'';'\'' '\''export '\''\'\'''\''fork=git@github.com:sql-boot/sql-boot.git'\''\'\'''\'''\'' '\'';'\'' '\''export '\''\'\'''\''fork_branch=321'\''\'\'''\'''\'' '\'';'\'' '\''export '\''\'\'''\''head_branch=master'\''\'\'''\'''\'' '\'';'\'' '\''export '\''\'\'''\''pull_title=321'\''\'\'''\'''\'' '\'';'\'' '\''export '\''\'\'''\''author=mgramin'\''\'\'''\'''\'' '\'';'\'' '\''mvn clean install'\'' '\'';'\'' )' --hostname=docker --privileged --memory=6g --memory-swap=16g --oom-kill-disable --cidfile=/tmp/rultor-Abyx/cid -w=/main -v /var/run/docker.sock:/var/run/docker.sock --name=sql-boot_sql-boot_323 yegor256/rultor /main/entry.sh WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. + set -e + set -o pipefail + shopt -s dotglob + useradd -m -G sudo r + echo '%sudo ALL=(ALL) NOPASSWD:ALL' + cp -R /root/.bashrc /root/.composer /root/.gem /root/.gnupg /root/.m2 /root/.profile /root/texmf /root/.wget-hsts /home/r + cp -R ./cid ./end.sh ./entry.sh ./pid ./repo ./run.sh ./script.sh ./stdout /home/r + rm -rf repo + chown -R r:r /home/r + chmod a+x /home/r/script.sh + su --login r --command /home/r/script.sh mesg: change /dev/pts/0 mode failed: Operation not permitted + set -e + set -o pipefail + shopt -s expand_aliases + alias 'sudo=sudo -i' + export HOME=/home/r + HOME=/home/r + cd /home/r/repo + export head=git@github.com:sql-boot/sql-boot.git + head=git@github.com:sql-boot/sql-boot.git + export pull_id=323 + pull_id=323 + export fork=git@github.com:sql-boot/sql-boot.git + fork=git@github.com:sql-boot/sql-boot.git + export fork_branch=321 + fork_branch=321 + export head_branch=master + head_branch=master + export pull_title=321 + pull_title=321 + export author=mgramin + author=mgramin + mvn clean install [INFO] Scanning for projects... Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-parent/2.1.3.RELEASE/spring-boot-starter-parent-2.1.3.RELEASE.pom Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-parent/2.1.3.RELEASE/spring-boot-starter-parent-2.1.3.RELEASE.pom (13 KB at 98.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-dependencies/2.1.3.RELEASE/spring-boot-dependencies-2.1.3.RELEASE.pom Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-dependencies/2.1.3.RELEASE/spring-boot-dependencies-2.1.3.RELEASE.pom (140 KB at 3108.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.9.8/jackson-bom-2.9.8.pom Downloaded: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.9.8/jackson-bom-2.9.8.pom (13 KB at 504.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.9.1.2/jackson-parent-2.9.1.2.pom Downloaded: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.9.1.2/jackson-parent-2.9.1.2.pom (8 KB at 335.5 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/34/oss-parent-34.pom Downloaded: http://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/34/oss-parent-34.pom (23 KB at 923.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-bom/4.1.33.Final/netty-bom-4.1.33.Final.pom Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-bom/4.1.33.Final/netty-bom-4.1.33.Final.pom (8 KB at 321.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/projectreactor/reactor-bom/Californium-SR5/reactor-bom-Californium-SR5.pom Downloaded: http://repo.maven.apache.org/maven2/io/projectreactor/reactor-bom/Californium-SR5/reactor-bom-Californium-SR5.pom (4 KB at 161.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-bom/2.11.2/log4j-bom-2.11.2.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-bom/2.11.2/log4j-bom-2.11.2.pom (7 KB at 289.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/logging/logging-parent/1/logging-parent-1.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/logging/logging-parent/1/logging-parent-1.pom (4 KB at 134.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-bom/9.4.14.v20181114/jetty-bom-9.4.14.v20181114.pom Downloaded: http://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-bom/9.4.14.v20181114/jetty-bom-9.4.14.v20181114.pom (18 KB at 714.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/glassfish/jersey/jersey-bom/2.27/jersey-bom-2.27.pom Downloaded: http://repo.maven.apache.org/maven2/org/glassfish/jersey/jersey-bom/2.27/jersey-bom-2.27.pom (22 KB at 955.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/junit/junit-bom/5.3.2/junit-bom-5.3.2.pom Downloaded: http://repo.maven.apache.org/maven2/org/junit/junit-bom/5.3.2/junit-bom-5.3.2.pom (4 KB at 166.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-framework-bom/5.1.5.RELEASE/spring-framework-bom-5.1.5.RELEASE.pom Downloaded: http://repo.maven.apache.org/maven2/org/springframework/spring-framework-bom/5.1.5.RELEASE/spring-framework-bom-5.1.5.RELEASE.pom (6 KB at 234.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/data/spring-data-releasetrain/Lovelace-SR5/spring-data-releasetrain-Lovelace-SR5.pom Downloaded: http://repo.maven.apache.org/maven2/org/springframework/data/spring-data-releasetrain/Lovelace-SR5/spring-data-releasetrain-Lovelace-SR5.pom (5 KB at 206.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/data/build/spring-data-build/2.1.5.RELEASE/spring-data-build-2.1.5.RELEASE.pom Downloaded: http://repo.maven.apache.org/maven2/org/springframework/data/build/spring-data-build/2.1.5.RELEASE/spring-data-build-2.1.5.RELEASE.pom (7 KB at 304.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/integration/spring-integration-bom/5.1.3.RELEASE/spring-integration-bom-5.1.3.RELEASE.pom Downloaded: http://repo.maven.apache.org/maven2/org/springframework/integration/spring-integration-bom/5.1.3.RELEASE/spring-integration-bom-5.1.3.RELEASE.pom (9 KB at 368.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/security/spring-security-bom/5.1.4.RELEASE/spring-security-bom-5.1.4.RELEASE.pom Downloaded: http://repo.maven.apache.org/maven2/org/springframework/security/spring-security-bom/5.1.4.RELEASE/spring-security-bom-5.1.4.RELEASE.pom (5 KB at 223.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/session/spring-session-bom/Bean-SR3/spring-session-bom-Bean-SR3.pom Downloaded: http://repo.maven.apache.org/maven2/org/springframework/session/spring-session-bom/Bean-SR3/spring-session-bom-Bean-SR3.pom (3 KB at 131.8 KB/sec) [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building sql-boot 0.3.0-SNAPSHOT [INFO] ------------------------------------------------------------------------ Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-maven-plugin/2.1.3.RELEASE/spring-boot-maven-plugin-2.1.3.RELEASE.pom Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-maven-plugin/2.1.3.RELEASE/spring-boot-maven-plugin-2.1.3.RELEASE.pom (5 KB at 98.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-tools/2.1.3.RELEASE/spring-boot-tools-2.1.3.RELEASE.pom Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-tools/2.1.3.RELEASE/spring-boot-tools-2.1.3.RELEASE.pom (2 KB at 77.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-parent/2.1.3.RELEASE/spring-boot-parent-2.1.3.RELEASE.pom Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-parent/2.1.3.RELEASE/spring-boot-parent-2.1.3.RELEASE.pom (2 KB at 81.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-maven-plugin/2.1.3.RELEASE/spring-boot-maven-plugin-2.1.3.RELEASE.jar Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-maven-plugin/2.1.3.RELEASE/spring-boot-maven-plugin-2.1.3.RELEASE.jar (67 KB at 2208.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/jacoco/jacoco-maven-plugin/0.8.2/jacoco-maven-plugin-0.8.2.pom Downloaded: http://repo.maven.apache.org/maven2/org/jacoco/jacoco-maven-plugin/0.8.2/jacoco-maven-plugin-0.8.2.pom (5 KB at 206.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.build/0.8.2/org.jacoco.build-0.8.2.pom Downloaded: http://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.build/0.8.2/org.jacoco.build-0.8.2.pom (39 KB at 1379.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/jacoco/jacoco-maven-plugin/0.8.2/jacoco-maven-plugin-0.8.2.jar Downloaded: http://repo.maven.apache.org/maven2/org/jacoco/jacoco-maven-plugin/0.8.2/jacoco-maven-plugin-0.8.2.jar (53 KB at 2018.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-failsafe-plugin/2.22.1/maven-failsafe-plugin-2.22.1.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-failsafe-plugin/2.22.1/maven-failsafe-plugin-2.22.1.pom (12 KB at 526.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/2.22.1/surefire-2.22.1.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire/2.22.1/surefire-2.22.1.pom (26 KB at 1095.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/33/maven-parent-33.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/33/maven-parent-33.pom (44 KB at 1724.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/apache/21/apache-21.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/apache/21/apache-21.pom (17 KB at 759.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-failsafe-plugin/2.22.1/maven-failsafe-plugin-2.22.1.jar Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-failsafe-plugin/2.22.1/maven-failsafe-plugin-2.22.1.jar (288 KB at 5862.5 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/antlr/antlr4-maven-plugin/4.1/antlr4-maven-plugin-4.1.pom Downloaded: http://repo.maven.apache.org/maven2/org/antlr/antlr4-maven-plugin/4.1/antlr4-maven-plugin-4.1.pom (8 KB at 292.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/antlr/antlr4-master/4.1/antlr4-master-4.1.pom Downloaded: http://repo.maven.apache.org/maven2/org/antlr/antlr4-master/4.1/antlr4-master-4.1.pom (8 KB at 355.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/antlr/antlr4-maven-plugin/4.1/antlr4-maven-plugin-4.1.jar Downloaded: http://repo.maven.apache.org/maven2/org/antlr/antlr4-maven-plugin/4.1/antlr4-maven-plugin-4.1.jar (22 KB at 179.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/3.1.0/maven-clean-plugin-3.1.0.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/3.1.0/maven-clean-plugin-3.1.0.pom (6 KB at 229.5 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/31/maven-plugins-31.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/31/maven-plugins-31.pom (11 KB at 461.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/31/maven-parent-31.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/31/maven-parent-31.pom (43 KB at 1694.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/apache/19/apache-19.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/apache/19/apache-19.pom (16 KB at 687.5 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/3.1.0/maven-clean-plugin-3.1.0.jar Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-clean-plugin/3.1.0/maven-clean-plugin-3.1.0.jar (30 KB at 1240.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/3.1.0/maven-resources-plugin-3.1.0.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/3.1.0/maven-resources-plugin-3.1.0.pom (7 KB at 318.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/3.1.0/maven-resources-plugin-3.1.0.jar Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/3.1.0/maven-resources-plugin-3.1.0.jar (31 KB at 1340.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-maven-plugin/1.3.21/kotlin-maven-plugin-1.3.21.pom Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-maven-plugin/1.3.21/kotlin-maven-plugin-1.3.21.pom (6 KB at 269.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-project/1.3.21/kotlin-project-1.3.21.pom Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-project/1.3.21/kotlin-project-1.3.21.pom (10 KB at 427.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-maven-plugin/1.3.21/kotlin-maven-plugin-1.3.21.jar Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-maven-plugin/1.3.21/kotlin-maven-plugin-1.3.21.jar (78 KB at 2655.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.5.1/maven-compiler-plugin-3.5.1.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.5.1/maven-compiler-plugin-3.5.1.pom (10 KB at 430.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/28/maven-plugins-28.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/28/maven-plugins-28.pom (12 KB at 534.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.5.1/maven-compiler-plugin-3.5.1.jar Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.5.1/maven-compiler-plugin-3.5.1.jar (50 KB at 1961.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.22.1/maven-surefire-plugin-2.22.1.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.22.1/maven-surefire-plugin-2.22.1.pom (5 KB at 221.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.22.1/maven-surefire-plugin-2.22.1.jar Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.22.1/maven-surefire-plugin-2.22.1.jar (40 KB at 1588.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/3.1.1/maven-jar-plugin-3.1.1.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/3.1.1/maven-jar-plugin-3.1.1.pom (7 KB at 295.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/33/maven-plugins-33.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/33/maven-plugins-33.pom (11 KB at 474.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/3.1.1/maven-jar-plugin-3.1.1.jar Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-jar-plugin/3.1.1/maven-jar-plugin-3.1.1.jar (27 KB at 1148.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-assembly-plugin/2.2-beta-5/maven-assembly-plugin-2.2-beta-5.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-assembly-plugin/2.2-beta-5/maven-assembly-plugin-2.2-beta-5.pom (15 KB at 643.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/16/maven-plugins-16.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-plugins/16/maven-plugins-16.pom (13 KB at 574.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-assembly-plugin/2.2-beta-5/maven-assembly-plugin-2.2-beta-5.jar Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-assembly-plugin/2.2-beta-5/maven-assembly-plugin-2.2-beta-5.jar (204 KB at 5230.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.5.2/maven-install-plugin-2.5.2.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.5.2/maven-install-plugin-2.5.2.pom (7 KB at 272.5 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.5.2/maven-install-plugin-2.5.2.jar Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-install-plugin/2.5.2/maven-install-plugin-2.5.2.jar (33 KB at 1347.5 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/1.3.21/kotlin-stdlib-1.3.21.pom Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/1.3.21/kotlin-stdlib-1.3.21.pom (2 KB at 75.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-common/1.3.21/kotlin-stdlib-common-1.3.21.pom Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-common/1.3.21/kotlin-stdlib-common-1.3.21.pom (2 KB at 68.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/annotations/13.0/annotations-13.0.pom Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/annotations/13.0/annotations-13.0.pom (5 KB at 218.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter/2.1.3.RELEASE/spring-boot-starter-2.1.3.RELEASE.pom Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter/2.1.3.RELEASE/spring-boot-starter-2.1.3.RELEASE.pom (4 KB at 130.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starters/2.1.3.RELEASE/spring-boot-starters-2.1.3.RELEASE.pom Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starters/2.1.3.RELEASE/spring-boot-starters-2.1.3.RELEASE.pom (2 KB at 85.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot/2.1.3.RELEASE/spring-boot-2.1.3.RELEASE.pom Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot/2.1.3.RELEASE/spring-boot-2.1.3.RELEASE.pom (14 KB at 576.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-core/5.1.5.RELEASE/spring-core-5.1.5.RELEASE.pom Downloaded: http://repo.maven.apache.org/maven2/org/springframework/spring-core/5.1.5.RELEASE/spring-core-5.1.5.RELEASE.pom (4 KB at 159.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-jcl/5.1.5.RELEASE/spring-jcl-5.1.5.RELEASE.pom Downloaded: http://repo.maven.apache.org/maven2/org/springframework/spring-jcl/5.1.5.RELEASE/spring-jcl-5.1.5.RELEASE.pom (2 KB at 90.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-context/5.1.5.RELEASE/spring-context-5.1.5.RELEASE.pom Downloaded: http://repo.maven.apache.org/maven2/org/springframework/spring-context/5.1.5.RELEASE/spring-context-5.1.5.RELEASE.pom (6 KB at 253.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-aop/5.1.5.RELEASE/spring-aop-5.1.5.RELEASE.pom Downloaded: http://repo.maven.apache.org/maven2/org/springframework/spring-aop/5.1.5.RELEASE/spring-aop-5.1.5.RELEASE.pom (3 KB at 110.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-beans/5.1.5.RELEASE/spring-beans-5.1.5.RELEASE.pom Downloaded: http://repo.maven.apache.org/maven2/org/springframework/spring-beans/5.1.5.RELEASE/spring-beans-5.1.5.RELEASE.pom (3 KB at 127.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-expression/5.1.5.RELEASE/spring-expression-5.1.5.RELEASE.pom Downloaded: http://repo.maven.apache.org/maven2/org/springframework/spring-expression/5.1.5.RELEASE/spring-expression-5.1.5.RELEASE.pom (2 KB at 84.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-autoconfigure/2.1.3.RELEASE/spring-boot-autoconfigure-2.1.3.RELEASE.pom Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-autoconfigure/2.1.3.RELEASE/spring-boot-autoconfigure-2.1.3.RELEASE.pom (34 KB at 1444.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-logging/2.1.3.RELEASE/spring-boot-starter-logging-2.1.3.RELEASE.pom Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-logging/2.1.3.RELEASE/spring-boot-starter-logging-2.1.3.RELEASE.pom (3 KB at 116.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.pom Downloaded: http://repo.maven.apache.org/maven2/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.pom (13 KB at 608.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/ch/qos/logback/logback-parent/1.2.3/logback-parent-1.2.3.pom Downloaded: http://repo.maven.apache.org/maven2/ch/qos/logback/logback-parent/1.2.3/logback-parent-1.2.3.pom (18 KB at 827.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.pom Downloaded: http://repo.maven.apache.org/maven2/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.pom (5 KB at 186.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.pom Downloaded: http://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.pom (4 KB at 187.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.25/slf4j-parent-1.7.25.pom Downloaded: http://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.25/slf4j-parent-1.7.25.pom (14 KB at 628.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-to-slf4j/2.11.2/log4j-to-slf4j-2.11.2.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-to-slf4j/2.11.2/log4j-to-slf4j-2.11.2.pom (8 KB at 318.5 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j/2.11.2/log4j-2.11.2.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j/2.11.2/log4j-2.11.2.pom (61 KB at 2319.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-api/2.11.2/log4j-api-2.11.2.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-api/2.11.2/log4j-api-2.11.2.pom (13 KB at 641.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/slf4j/jul-to-slf4j/1.7.25/jul-to-slf4j-1.7.25.pom Downloaded: http://repo.maven.apache.org/maven2/org/slf4j/jul-to-slf4j/1.7.25/jul-to-slf4j-1.7.25.pom (986 B at 50.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.pom Downloaded: http://repo.maven.apache.org/maven2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.pom (15 KB at 642.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/yaml/snakeyaml/1.23/snakeyaml-1.23.pom Downloaded: http://repo.maven.apache.org/maven2/org/yaml/snakeyaml/1.23/snakeyaml-1.23.pom (37 KB at 1273.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-test/2.1.3.RELEASE/spring-boot-starter-test-2.1.3.RELEASE.pom Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-test/2.1.3.RELEASE/spring-boot-starter-test-2.1.3.RELEASE.pom (5 KB at 70.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-test/2.1.3.RELEASE/spring-boot-test-2.1.3.RELEASE.pom Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-test/2.1.3.RELEASE/spring-boot-test-2.1.3.RELEASE.pom (7 KB at 331.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-test-autoconfigure/2.1.3.RELEASE/spring-boot-test-autoconfigure-2.1.3.RELEASE.pom Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-test-autoconfigure/2.1.3.RELEASE/spring-boot-test-autoconfigure-2.1.3.RELEASE.pom (10 KB at 420.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/jayway/jsonpath/json-path/2.4.0/json-path-2.4.0.pom Downloaded: http://repo.maven.apache.org/maven2/com/jayway/jsonpath/json-path/2.4.0/json-path-2.4.0.pom (3 KB at 122.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/net/minidev/json-smart/2.3/json-smart-2.3.pom Downloaded: http://repo.maven.apache.org/maven2/net/minidev/json-smart/2.3/json-smart-2.3.pom (9 KB at 383.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/net/minidev/minidev-parent/2.3/minidev-parent-2.3.pom Downloaded: http://repo.maven.apache.org/maven2/net/minidev/minidev-parent/2.3/minidev-parent-2.3.pom (9 KB at 394.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/net/minidev/accessors-smart/1.2/accessors-smart-1.2.pom Downloaded: http://repo.maven.apache.org/maven2/net/minidev/accessors-smart/1.2/accessors-smart-1.2.pom (12 KB at 513.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm/5.0.4/asm-5.0.4.pom Downloaded: http://repo.maven.apache.org/maven2/org/ow2/asm/asm/5.0.4/asm-5.0.4.pom (2 KB at 90.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-parent/5.0.4/asm-parent-5.0.4.pom Downloaded: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-parent/5.0.4/asm-parent-5.0.4.pom (6 KB at 255.5 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.11.1/assertj-core-3.11.1.pom Downloaded: http://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.11.1/assertj-core-3.11.1.pom (14 KB at 600.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/assertj/assertj-parent-pom/2.2.1/assertj-parent-pom-2.2.1.pom Downloaded: http://repo.maven.apache.org/maven2/org/assertj/assertj-parent-pom/2.2.1/assertj-parent-pom-2.2.1.pom (15 KB at 651.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/junit/junit-bom/5.2.0/junit-bom-5.2.0.pom Downloaded: http://repo.maven.apache.org/maven2/org/junit/junit-bom/5.2.0/junit-bom-5.2.0.pom (5 KB at 193.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/mockito/mockito-core/2.23.4/mockito-core-2.23.4.pom Downloaded: http://repo.maven.apache.org/maven2/org/mockito/mockito-core/2.23.4/mockito-core-2.23.4.pom (18 KB at 746.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy/1.9.10/byte-buddy-1.9.10.pom Downloaded: http://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy/1.9.10/byte-buddy-1.9.10.pom (11 KB at 458.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-parent/1.9.10/byte-buddy-parent-1.9.10.pom Downloaded: http://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-parent/1.9.10/byte-buddy-parent-1.9.10.pom (35 KB at 1456.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-agent/1.9.10/byte-buddy-agent-1.9.10.pom Downloaded: http://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-agent/1.9.10/byte-buddy-agent-1.9.10.pom (6 KB at 267.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/objenesis/objenesis/2.6/objenesis-2.6.pom Downloaded: http://repo.maven.apache.org/maven2/org/objenesis/objenesis/2.6/objenesis-2.6.pom (3 KB at 135.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/objenesis/objenesis-parent/2.6/objenesis-parent-2.6.pom Downloaded: http://repo.maven.apache.org/maven2/org/objenesis/objenesis-parent/2.6/objenesis-parent-2.6.pom (17 KB at 701.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/skyscreamer/jsonassert/1.5.0/jsonassert-1.5.0.pom Downloaded: http://repo.maven.apache.org/maven2/org/skyscreamer/jsonassert/1.5.0/jsonassert-1.5.0.pom (6 KB at 240.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/vaadin/external/google/android-json/0.0.20131108.vaadin1/android-json-0.0.20131108.vaadin1.pom Downloaded: http://repo.maven.apache.org/maven2/com/vaadin/external/google/android-json/0.0.20131108.vaadin1/android-json-0.0.20131108.vaadin1.pom (3 KB at 129.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-test/5.1.5.RELEASE/spring-test-5.1.5.RELEASE.pom Downloaded: http://repo.maven.apache.org/maven2/org/springframework/spring-test/5.1.5.RELEASE/spring-test-5.1.5.RELEASE.pom (10 KB at 462.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/xmlunit/xmlunit-core/2.6.2/xmlunit-core-2.6.2.pom Downloaded: http://repo.maven.apache.org/maven2/org/xmlunit/xmlunit-core/2.6.2/xmlunit-core-2.6.2.pom (3 KB at 132.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/xmlunit/xmlunit-parent/2.6.2/xmlunit-parent-2.6.2.pom Downloaded: http://repo.maven.apache.org/maven2/org/xmlunit/xmlunit-parent/2.6.2/xmlunit-parent-2.6.2.pom (18 KB at 805.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-web/2.1.3.RELEASE/spring-boot-starter-web-2.1.3.RELEASE.pom Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-web/2.1.3.RELEASE/spring-boot-starter-web-2.1.3.RELEASE.pom (4 KB at 149.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-json/2.1.3.RELEASE/spring-boot-starter-json-2.1.3.RELEASE.pom Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-json/2.1.3.RELEASE/spring-boot-starter-json-2.1.3.RELEASE.pom (4 KB at 138.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-web/5.1.5.RELEASE/spring-web-5.1.5.RELEASE.pom Downloaded: http://repo.maven.apache.org/maven2/org/springframework/spring-web/5.1.5.RELEASE/spring-web-5.1.5.RELEASE.pom (12 KB at 554.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.9.8/jackson-databind-2.9.8.pom Downloaded: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.9.8/jackson-databind-2.9.8.pom (7 KB at 293.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.9.8/jackson-base-2.9.8.pom Downloaded: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.9.8/jackson-base-2.9.8.pom (6 KB at 244.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.9.0/jackson-annotations-2.9.0.pom Downloaded: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.9.0/jackson-annotations-2.9.0.pom (2 KB at 86.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.9.0/jackson-parent-2.9.0.pom Downloaded: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.9.0/jackson-parent-2.9.0.pom (8 KB at 382.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/28/oss-parent-28.pom Downloaded: http://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/28/oss-parent-28.pom (20 KB at 930.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.9.8/jackson-core-2.9.8.pom Downloaded: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.9.8/jackson-core-2.9.8.pom (4 KB at 198.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.8/jackson-datatype-jdk8-2.9.8.pom Downloaded: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.8/jackson-datatype-jdk8-2.9.8.pom (2 KB at 89.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-modules-java8/2.9.8/jackson-modules-java8-2.9.8.pom Downloaded: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-modules-java8/2.9.8/jackson-modules-java8-2.9.8.pom (3 KB at 134.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.8/jackson-datatype-jsr310-2.9.8.pom Downloaded: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.8/jackson-datatype-jsr310-2.9.8.pom (5 KB at 198.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-parameter-names/2.9.8/jackson-module-parameter-names-2.9.8.pom Downloaded: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-parameter-names/2.9.8/jackson-module-parameter-names-2.9.8.pom (4 KB at 173.5 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-tomcat/2.1.3.RELEASE/spring-boot-starter-tomcat-2.1.3.RELEASE.pom Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-tomcat/2.1.3.RELEASE/spring-boot-starter-tomcat-2.1.3.RELEASE.pom (3 KB at 132.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-core/9.0.16/tomcat-embed-core-9.0.16.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-core/9.0.16/tomcat-embed-core-9.0.16.pom (2 KB at 86.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-el/9.0.16/tomcat-embed-el-9.0.16.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-el/9.0.16/tomcat-embed-el-9.0.16.pom (2 KB at 68.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-websocket/9.0.16/tomcat-embed-websocket-9.0.16.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-websocket/9.0.16/tomcat-embed-websocket-9.0.16.pom (2 KB at 83.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/tomcat/tomcat-annotations-api/9.0.16/tomcat-annotations-api-9.0.16.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/tomcat/tomcat-annotations-api/9.0.16/tomcat-annotations-api-9.0.16.pom (2 KB at 78.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/hibernate/validator/hibernate-validator/6.0.14.Final/hibernate-validator-6.0.14.Final.pom Downloaded: http://repo.maven.apache.org/maven2/org/hibernate/validator/hibernate-validator/6.0.14.Final/hibernate-validator-6.0.14.Final.pom (15 KB at 634.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/hibernate/validator/hibernate-validator-parent/6.0.14.Final/hibernate-validator-parent-6.0.14.Final.pom Downloaded: http://repo.maven.apache.org/maven2/org/hibernate/validator/hibernate-validator-parent/6.0.14.Final/hibernate-validator-parent-6.0.14.Final.pom (59 KB at 1780.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/jboss/arquillian/arquillian-bom/1.1.11.Final/arquillian-bom-1.1.11.Final.pom Downloaded: http://repo.maven.apache.org/maven2/org/jboss/arquillian/arquillian-bom/1.1.11.Final/arquillian-bom-1.1.11.Final.pom (11 KB at 472.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.3/shrinkwrap-bom-1.2.3.pom Downloaded: http://repo.maven.apache.org/maven2/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.3/shrinkwrap-bom-1.2.3.pom (4 KB at 194.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/2.2.0/shrinkwrap-resolver-bom-2.2.0.pom Downloaded: http://repo.maven.apache.org/maven2/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/2.2.0/shrinkwrap-resolver-bom-2.2.0.pom (6 KB at 246.5 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0-alpha-8/shrinkwrap-descriptors-bom-2.0.0-alpha-8.pom Downloaded: http://repo.maven.apache.org/maven2/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0-alpha-8/shrinkwrap-descriptors-bom-2.0.0-alpha-8.pom (6 KB at 232.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/javax/validation/validation-api/2.0.1.Final/validation-api-2.0.1.Final.pom Downloaded: http://repo.maven.apache.org/maven2/javax/validation/validation-api/2.0.1.Final/validation-api-2.0.1.Final.pom (12 KB at 518.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/jboss/logging/jboss-logging/3.3.2.Final/jboss-logging-3.3.2.Final.pom Downloaded: http://repo.maven.apache.org/maven2/org/jboss/logging/jboss-logging/3.3.2.Final/jboss-logging-3.3.2.Final.pom (7 KB at 295.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/fasterxml/classmate/1.4.0/classmate-1.4.0.pom Downloaded: http://repo.maven.apache.org/maven2/com/fasterxml/classmate/1.4.0/classmate-1.4.0.pom (6 KB at 273.5 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/24/oss-parent-24.pom Downloaded: http://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/24/oss-parent-24.pom (19 KB at 862.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-webmvc/5.1.5.RELEASE/spring-webmvc-5.1.5.RELEASE.pom Downloaded: http://repo.maven.apache.org/maven2/org/springframework/spring-webmvc/5.1.5.RELEASE/spring-webmvc-5.1.5.RELEASE.pom (10 KB at 384.5 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-webflux/2.1.3.RELEASE/spring-boot-starter-webflux-2.1.3.RELEASE.pom Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-webflux/2.1.3.RELEASE/spring-boot-starter-webflux-2.1.3.RELEASE.pom (4 KB at 150.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-reactor-netty/2.1.3.RELEASE/spring-boot-starter-reactor-netty-2.1.3.RELEASE.pom Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-reactor-netty/2.1.3.RELEASE/spring-boot-starter-reactor-netty-2.1.3.RELEASE.pom (3 KB at 97.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/projectreactor/netty/reactor-netty/0.8.5.RELEASE/reactor-netty-0.8.5.RELEASE.pom Downloaded: http://repo.maven.apache.org/maven2/io/projectreactor/netty/reactor-netty/0.8.5.RELEASE/reactor-netty-0.8.5.RELEASE.pom (5 KB at 221.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-codec-http/4.1.33.Final/netty-codec-http-4.1.33.Final.pom Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-codec-http/4.1.33.Final/netty-codec-http-4.1.33.Final.pom (3 KB at 113.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-parent/4.1.33.Final/netty-parent-4.1.33.Final.pom Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-parent/4.1.33.Final/netty-parent-4.1.33.Final.pom (55 KB at 2100.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.33.Final/netty-common-4.1.33.Final.pom Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.33.Final/netty-common-4.1.33.Final.pom (9 KB at 383.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.33.Final/netty-buffer-4.1.33.Final.pom Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.33.Final/netty-buffer-4.1.33.Final.pom (2 KB at 73.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.33.Final/netty-transport-4.1.33.Final.pom Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.33.Final/netty-transport-4.1.33.Final.pom (2 KB at 85.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.33.Final/netty-resolver-4.1.33.Final.pom Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.33.Final/netty-resolver-4.1.33.Final.pom (2 KB at 49.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.33.Final/netty-codec-4.1.33.Final.pom Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.33.Final/netty-codec-4.1.33.Final.pom (4 KB at 159.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-codec-http2/4.1.33.Final/netty-codec-http2-4.1.33.Final.pom Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-codec-http2/4.1.33.Final/netty-codec-http2-4.1.33.Final.pom (3 KB at 71.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.33.Final/netty-handler-4.1.33.Final.pom Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.33.Final/netty-handler-4.1.33.Final.pom (4 KB at 146.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-handler-proxy/4.1.33.Final/netty-handler-proxy-4.1.33.Final.pom Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-handler-proxy/4.1.33.Final/netty-handler-proxy-4.1.33.Final.pom (3 KB at 136.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-codec-socks/4.1.33.Final/netty-codec-socks-4.1.33.Final.pom Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-codec-socks/4.1.33.Final/netty-codec-socks-4.1.33.Final.pom (2 KB at 96.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.33.Final/netty-transport-native-epoll-4.1.33.Final.pom Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.33.Final/netty-transport-native-epoll-4.1.33.Final.pom (15 KB at 650.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.33.Final/netty-transport-native-unix-common-4.1.33.Final.pom Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.33.Final/netty-transport-native-unix-common-4.1.33.Final.pom (16 KB at 691.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/projectreactor/reactor-core/3.2.6.RELEASE/reactor-core-3.2.6.RELEASE.pom Downloaded: http://repo.maven.apache.org/maven2/io/projectreactor/reactor-core/3.2.6.RELEASE/reactor-core-3.2.6.RELEASE.pom (3 KB at 142.5 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/reactivestreams/reactive-streams/1.0.2/reactive-streams-1.0.2.pom Downloaded: http://repo.maven.apache.org/maven2/org/reactivestreams/reactive-streams/1.0.2/reactive-streams-1.0.2.pom (2 KB at 56.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-webflux/5.1.5.RELEASE/spring-webflux-5.1.5.RELEASE.pom Downloaded: http://repo.maven.apache.org/maven2/org/springframework/spring-webflux/5.1.5.RELEASE/spring-webflux-5.1.5.RELEASE.pom (7 KB at 331.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/synchronoss/cloud/nio-multipart-parser/1.1.0/nio-multipart-parser-1.1.0.pom Downloaded: http://repo.maven.apache.org/maven2/org/synchronoss/cloud/nio-multipart-parser/1.1.0/nio-multipart-parser-1.1.0.pom (4 KB at 150.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/synchronoss/cloud/nio-multipart/1.1.0/nio-multipart-1.1.0.pom Downloaded: http://repo.maven.apache.org/maven2/org/synchronoss/cloud/nio-multipart/1.1.0/nio-multipart-1.1.0.pom (12 KB at 529.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/synchronoss/cloud/nio-stream-storage/1.1.3/nio-stream-storage-1.1.3.pom Downloaded: http://repo.maven.apache.org/maven2/org/synchronoss/cloud/nio-stream-storage/1.1.3/nio-stream-storage-1.1.3.pom (11 KB at 452.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.0.27.Final/netty-transport-native-epoll-4.0.27.Final.pom Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.0.27.Final/netty-transport-native-epoll-4.0.27.Final.pom (8 KB at 398.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-parent/4.0.27.Final/netty-parent-4.0.27.Final.pom Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-parent/4.0.27.Final/netty-parent-4.0.27.Final.pom (48 KB at 1985.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-jdbc/2.1.3.RELEASE/spring-boot-starter-jdbc-2.1.3.RELEASE.pom Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-jdbc/2.1.3.RELEASE/spring-boot-starter-jdbc-2.1.3.RELEASE.pom (3 KB at 116.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/zaxxer/HikariCP/3.2.0/HikariCP-3.2.0.pom Downloaded: http://repo.maven.apache.org/maven2/com/zaxxer/HikariCP/3.2.0/HikariCP-3.2.0.pom (19 KB at 850.5 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-jdbc/5.1.5.RELEASE/spring-jdbc-5.1.5.RELEASE.pom Downloaded: http://repo.maven.apache.org/maven2/org/springframework/spring-jdbc/5.1.5.RELEASE/spring-jdbc-5.1.5.RELEASE.pom (4 KB at 184.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-tx/5.1.5.RELEASE/spring-tx-5.1.5.RELEASE.pom Downloaded: http://repo.maven.apache.org/maven2/org/springframework/spring-tx/5.1.5.RELEASE/spring-tx-5.1.5.RELEASE.pom (4 KB at 158.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/projectreactor/reactor-test/3.2.6.RELEASE/reactor-test-3.2.6.RELEASE.pom Downloaded: http://repo.maven.apache.org/maven2/io/projectreactor/reactor-test/3.2.6.RELEASE/reactor-test-3.2.6.RELEASE.pom (3 KB at 100.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test-junit/1.3.21/kotlin-test-junit-1.3.21.pom Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test-junit/1.3.21/kotlin-test-junit-1.3.21.pom (2 KB at 81.5 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test-annotations-common/1.3.21/kotlin-test-annotations-common-1.3.21.pom Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test-annotations-common/1.3.21/kotlin-test-annotations-common-1.3.21.pom (2 KB at 79.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test/1.3.21/kotlin-test-1.3.21.pom Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test/1.3.21/kotlin-test-1.3.21.pom (2 KB at 93.5 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test-common/1.3.21/kotlin-test-common-1.3.21.pom Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test-common/1.3.21/kotlin-test-common-1.3.21.pom (2 KB at 74.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-engine/5.3.2/junit-jupiter-engine-5.3.2.pom Downloaded: http://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-engine/5.3.2/junit-jupiter-engine-5.3.2.pom (3 KB at 116.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.0.0/apiguardian-api-1.0.0.pom Downloaded: http://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.0.0/apiguardian-api-1.0.0.pom (2 KB at 57.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-engine/1.3.2/junit-platform-engine-1.3.2.pom Downloaded: http://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-engine/1.3.2/junit-platform-engine-1.3.2.pom (3 KB at 111.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.3.2/junit-platform-commons-1.3.2.pom Downloaded: http://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.3.2/junit-platform-commons-1.3.2.pom (2 KB at 94.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.1.1/opentest4j-1.1.1.pom Downloaded: http://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.1.1/opentest4j-1.1.1.pom (2 KB at 86.5 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.3.2/junit-jupiter-api-5.3.2.pom Downloaded: http://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.3.2/junit-jupiter-api-5.3.2.pom (3 KB at 116.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-params/5.3.2/junit-jupiter-params-5.3.2.pom Downloaded: http://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-params/5.3.2/junit-jupiter-params-5.3.2.pom (3 KB at 102.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/junit/vintage/junit-vintage-engine/5.3.2/junit-vintage-engine-5.3.2.pom Downloaded: http://repo.maven.apache.org/maven2/org/junit/vintage/junit-vintage-engine/5.3.2/junit-vintage-engine-5.3.2.pom (3 KB at 115.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/nhaarman/mockitokotlin2/mockito-kotlin/2.0.0/mockito-kotlin-2.0.0.pom Downloaded: http://repo.maven.apache.org/maven2/com/nhaarman/mockitokotlin2/mockito-kotlin/2.0.0/mockito-kotlin-2.0.0.pom (2 KB at 8.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/groovy/groovy-templates/2.5.6/groovy-templates-2.5.6.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/groovy/groovy-templates/2.5.6/groovy-templates-2.5.6.pom (23 KB at 957.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/groovy/groovy/2.5.6/groovy-2.5.6.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/groovy/groovy/2.5.6/groovy-2.5.6.pom (24 KB at 1079.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/groovy/groovy-xml/2.5.6/groovy-xml-2.5.6.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/groovy/groovy-xml/2.5.6/groovy-xml-2.5.6.pom (22 KB at 991.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/h2database/h2/1.4.197/h2-1.4.197.pom Downloaded: http://repo.maven.apache.org/maven2/com/h2database/h2/1.4.197/h2-1.4.197.pom (960 B at 46.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/swagger/swagger-parser/1.0.31/swagger-parser-1.0.31.pom Downloaded: http://repo.maven.apache.org/maven2/io/swagger/swagger-parser/1.0.31/swagger-parser-1.0.31.pom (4 KB at 161.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/swagger/swagger-parser-project/1.0.31/swagger-parser-project-1.0.31.pom Downloaded: http://repo.maven.apache.org/maven2/io/swagger/swagger-parser-project/1.0.31/swagger-parser-project-1.0.31.pom (10 KB at 439.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/swagger/swagger-core/1.5.15/swagger-core-1.5.15.pom Downloaded: http://repo.maven.apache.org/maven2/io/swagger/swagger-core/1.5.15/swagger-core-1.5.15.pom (7 KB at 291.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/swagger/swagger-project/1.5.15/swagger-project-1.5.15.pom Downloaded: http://repo.maven.apache.org/maven2/io/swagger/swagger-project/1.5.15/swagger-project-1.5.15.pom (22 KB at 967.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.pom (28 KB at 1296.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/47/commons-parent-47.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/47/commons-parent-47.pom (76 KB at 2805.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.9.8/jackson-dataformat-yaml-2.9.8.pom Downloaded: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.9.8/jackson-dataformat-yaml-2.9.8.pom (3 KB at 89.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.9.8/jackson-dataformats-text-2.9.8.pom Downloaded: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.9.8/jackson-dataformats-text-2.9.8.pom (3 KB at 139.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/swagger/swagger-models/1.5.15/swagger-models-1.5.15.pom Downloaded: http://repo.maven.apache.org/maven2/io/swagger/swagger-models/1.5.15/swagger-models-1.5.15.pom (5 KB at 215.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/swagger/swagger-annotations/1.5.15/swagger-annotations-1.5.15.pom Downloaded: http://repo.maven.apache.org/maven2/io/swagger/swagger-annotations/1.5.15/swagger-annotations-1.5.15.pom (7 KB at 277.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/google/guava/guava/20.0/guava-20.0.pom Downloaded: http://repo.maven.apache.org/maven2/com/google/guava/guava/20.0/guava-20.0.pom (7 KB at 317.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/google/guava/guava-parent/20.0/guava-parent-20.0.pom Downloaded: http://repo.maven.apache.org/maven2/com/google/guava/guava-parent/20.0/guava-parent-20.0.pom (10 KB at 460.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/slf4j/slf4j-ext/1.7.25/slf4j-ext-1.7.25.pom Downloaded: http://repo.maven.apache.org/maven2/org/slf4j/slf4j-ext/1.7.25/slf4j-ext-1.7.25.pom (3 KB at 117.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/abego/treelayout/org.abego.treelayout.core/1.0.1/org.abego.treelayout.core-1.0.1.pom Downloaded: http://repo.maven.apache.org/maven2/org/abego/treelayout/org.abego.treelayout.core/1.0.1/org.abego.treelayout.core-1.0.1.pom (4 KB at 137.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/atlassian/commonmark/commonmark/0.11.0/commonmark-0.11.0.pom Downloaded: http://repo.maven.apache.org/maven2/com/atlassian/commonmark/commonmark/0.11.0/commonmark-0.11.0.pom (3 KB at 127.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/atlassian/commonmark/commonmark-parent/0.11.0/commonmark-parent-0.11.0.pom Downloaded: http://repo.maven.apache.org/maven2/com/atlassian/commonmark/commonmark-parent/0.11.0/commonmark-parent-0.11.0.pom (8 KB at 350.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/atlassian/pom/central-pom/5.0.13/central-pom-5.0.13.pom Downloaded: http://repo.maven.apache.org/maven2/com/atlassian/pom/central-pom/5.0.13/central-pom-5.0.13.pom (4 KB at 148.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/atlassian/pom/base-pom/5.0.13/base-pom-5.0.13.pom Downloaded: http://repo.maven.apache.org/maven2/com/atlassian/pom/base-pom/5.0.13/base-pom-5.0.13.pom (32 KB at 1305.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/tomcat/tomcat-jdbc/9.0.16/tomcat-jdbc-9.0.16.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/tomcat/tomcat-jdbc/9.0.16/tomcat-jdbc-9.0.16.pom (2 KB at 81.5 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/tomcat/tomcat-juli/9.0.16/tomcat-juli-9.0.16.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/tomcat/tomcat-juli/9.0.16/tomcat-juli-9.0.16.pom (2 KB at 71.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/javax/cache/cache-api/1.1.0/cache-api-1.1.0.pom Downloaded: http://repo.maven.apache.org/maven2/javax/cache/cache-api/1.1.0/cache-api-1.1.0.pom (12 KB at 501.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/hazelcast/hazelcast/3.11.1/hazelcast-3.11.1.pom Downloaded: http://repo.maven.apache.org/maven2/com/hazelcast/hazelcast/3.11.1/hazelcast-3.11.1.pom (21 KB at 899.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/hazelcast/hazelcast-root/3.11.1/hazelcast-root-3.11.1.pom Downloaded: http://repo.maven.apache.org/maven2/com/hazelcast/hazelcast-root/3.11.1/hazelcast-root-3.11.1.pom (60 KB at 2365.5 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.8.5/gson-2.8.5.pom Downloaded: http://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.8.5/gson-2.8.5.pom (3 KB at 123.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/google/code/gson/gson-parent/2.8.5/gson-parent-2.8.5.pom Downloaded: http://repo.maven.apache.org/maven2/com/google/code/gson/gson-parent/2.8.5/gson-parent-2.8.5.pom (4 KB at 184.5 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-actuator/2.1.3.RELEASE/spring-boot-starter-actuator-2.1.3.RELEASE.pom Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-actuator/2.1.3.RELEASE/spring-boot-starter-actuator-2.1.3.RELEASE.pom (3 KB at 128.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-actuator-autoconfigure/2.1.3.RELEASE/spring-boot-actuator-autoconfigure-2.1.3.RELEASE.pom Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-actuator-autoconfigure/2.1.3.RELEASE/spring-boot-actuator-autoconfigure-2.1.3.RELEASE.pom (22 KB at 983.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-actuator/2.1.3.RELEASE/spring-boot-actuator-2.1.3.RELEASE.pom Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-actuator/2.1.3.RELEASE/spring-boot-actuator-2.1.3.RELEASE.pom (14 KB at 607.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/micrometer/micrometer-core/1.1.3/micrometer-core-1.1.3.pom Downloaded: http://repo.maven.apache.org/maven2/io/micrometer/micrometer-core/1.1.3/micrometer-core-1.1.3.pom (7 KB at 327.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/hdrhistogram/HdrHistogram/2.1.9/HdrHistogram-2.1.9.pom Downloaded: http://repo.maven.apache.org/maven2/org/hdrhistogram/HdrHistogram/2.1.9/HdrHistogram-2.1.9.pom (10 KB at 471.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.pom Downloaded: http://repo.maven.apache.org/maven2/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.pom (8 KB at 336.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/micrometer/micrometer-registry-prometheus/1.1.3/micrometer-registry-prometheus-1.1.3.pom Downloaded: http://repo.maven.apache.org/maven2/io/micrometer/micrometer-registry-prometheus/1.1.3/micrometer-registry-prometheus-1.1.3.pom (3 KB at 142.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/prometheus/simpleclient_common/0.5.0/simpleclient_common-0.5.0.pom Downloaded: http://repo.maven.apache.org/maven2/io/prometheus/simpleclient_common/0.5.0/simpleclient_common-0.5.0.pom (2 KB at 78.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/prometheus/parent/0.5.0/parent-0.5.0.pom Downloaded: http://repo.maven.apache.org/maven2/io/prometheus/parent/0.5.0/parent-0.5.0.pom (7 KB at 314.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/prometheus/simpleclient/0.5.0/simpleclient-0.5.0.pom Downloaded: http://repo.maven.apache.org/maven2/io/prometheus/simpleclient/0.5.0/simpleclient-0.5.0.pom (2 KB at 74.5 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/1.3.21/kotlin-stdlib-1.3.21.jar Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/annotations/13.0/annotations-13.0.jar Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-common/1.3.21/kotlin-stdlib-common-1.3.21.jar Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter/2.1.3.RELEASE/spring-boot-starter-2.1.3.RELEASE.jar Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot/2.1.3.RELEASE/spring-boot-2.1.3.RELEASE.jar Downloaded:3http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter/2.1.3.RELEASE/spring-boot-starter-2.1.3.RELEASE.jar (398 B at 9.5 KB/sec) Downloading:2http://repo.maven.apache.org/maven2/org/springframework/spring-context/5.1.5.RELEASE/spring-context-5.1.5.RELEASE.jar Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/annotations/13.0/annotations-13.0.jar (18 KB at 305.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-autoconfigure/2.1.3.RELEASE/spring-boot-autoconfigure-2.1.3.RELEASE.jar Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-common/1.3.21/kotlin-stdlib-common-1.3.21.jar (150 KB at 1289.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-logging/2.1.3.RELEASE/spring-boot-starter-logging-2.1.3.RELEASE.jar Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-logging/2.1.3.RELEASE/spring-boot-starter-logging-2.1.3.RELEASE.jar (407 B at 2.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.jar Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/1.3.21/kotlin-stdlib-1.3.21.jar (1158 KB at 5191.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.jar Downloaded: http://repo.maven.apache.org/maven2/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.jar (284 KB at 991.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-to-slf4j/2.11.2/log4j-to-slf4j-2.11.2.jar Downloaded: http://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-to-slf4j/2.11.2/log4j-to-slf4j-2.11.2.jar (18 KB at 53.5 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-api/2.11.2/log4j-api-2.11.2.jar Downloaded: http://repo.maven.apache.org/maven2/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.jar (461 KB at 1375.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/slf4j/jul-to-slf4j/1.7.25/jul-to-slf4j-1.7.25.jar Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot/2.1.3.RELEASE/spring-boot-2.1.3.RELEASE.jar (927 KB at 2749.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar Downloaded: http://repo.maven.apache.org/maven2/org/slf4j/jul-to-slf4j/1.7.25/jul-to-slf4j-1.7.25.jar (5 KB at 12.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-core/5.1.5.RELEASE/spring-core-5.1.5.RELEASE.jar Downloaded: http://repo.maven.apache.org/maven2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar (26 KB at 72.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-jcl/5.1.5.RELEASE/spring-jcl-5.1.5.RELEASE.jar Downloaded: http://repo.maven.apache.org/maven2/org/springframework/spring-jcl/5.1.5.RELEASE/spring-jcl-5.1.5.RELEASE.jar (24 KB at 59.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/yaml/snakeyaml/1.23/snakeyaml-1.23.jar Downloaded:1http://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-api/2.11.2/log4j-api-2.11.2.jar (261 KB at 601.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-test/2.1.3.RELEASE/spring-boot-starter-test-2.1.3.RELEASE.jar Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-test/2.1.3.RELEASE/spring-boot-starter-test-2.1.3.RELEASE.jar (404 B at 0.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-test/2.1.3.RELEASE/spring-boot-test-2.1.3.RELEASE.jar Downloaded: http://repo.maven.apache.org/maven2/org/yaml/snakeyaml/1.23/snakeyaml-1.23.jar (295 KB at 582.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-test-autoconfigure/2.1.3.RELEASE/spring-boot-test-autoconfigure-2.1.3.RELEASE.jar Downloaded:5http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-test/2.1.3.RELEASE/spring-boot-test-2.1.3.RELEASE.jar (192 KB at 339.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/jayway/jsonpath/json-path/2.4.0/json-path-2.4.0.jar Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-test-autoconfigure/2.1.3.RELEASE/spring-boot-test-autoconfigure-2.1.3.RELEASE.jar (169 KB at 288.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/net/minidev/json-smart/2.3/json-smart-2.3.jar Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-autoconfigure/2.1.3.RELEASE/spring-boot-autoconfigure-2.1.3.RELEASE.jar (1229 KB at 2099.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/net/minidev/accessors-smart/1.2/accessors-smart-1.2.jar Downloaded: http://repo.maven.apache.org/maven2/net/minidev/accessors-smart/1.2/accessors-smart-1.2.jar (30 KB at 47.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm/5.0.4/asm-5.0.4.jar Downloaded: http://repo.maven.apache.org/maven2/net/minidev/json-smart/2.3/json-smart-2.3.jar (118 KB at 184.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.11.1/assertj-core-3.11.1.jar Downloaded: http://repo.maven.apache.org/maven2/com/jayway/jsonpath/json-path/2.4.0/json-path-2.4.0.jar (218 KB at 341.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/skyscreamer/jsonassert/1.5.0/jsonassert-1.5.0.jar Downloaded: http://repo.maven.apache.org/maven2/org/ow2/asm/asm/5.0.4/asm-5.0.4.jar (53 KB at 80.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/vaadin/external/google/android-json/0.0.20131108.vaadin1/android-json-0.0.20131108.vaadin1.jar Downloaded:Bhttp://repo.maven.apache.org/maven2/org/skyscreamer/jsonassert/1.5.0/jsonassert-1.5.0.jar (30 KB at 44.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-test/5.1.5.RELEASE/spring-test-5.1.5.RELEASE.jar Downloaded:Bhttp://repo.maven.apache.org/maven2/com/vaadin/external/google/android-json/0.0.20131108.vaadin1/android-json-0.0.20131108.vaadin1.jar (18 KB at 26.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/xmlunit/xmlunit-core/2.6.2/xmlunit-core-2.6.2.jar Downloaded:Bhttp://repo.maven.apache.org/maven2/org/springframework/spring-core/5.1.5.RELEASE/spring-core-5.1.5.RELEASE.jar (1264 KB at 1664.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-web/2.1.3.RELEASE/spring-boot-starter-web-2.1.3.RELEASE.jar Downloaded: http://repo.maven.apache.org/maven2/org/xmlunit/xmlunit-core/2.6.2/xmlunit-core-2.6.2.jar (164 KB at 212.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-json/2.1.3.RELEASE/spring-boot-starter-json-2.1.3.RELEASE.jar Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-web/2.1.3.RELEASE/spring-boot-starter-web-2.1.3.RELEASE.jar (406 B at 0.5 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.9.8/jackson-databind-2.9.8.jar Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-json/2.1.3.RELEASE/spring-boot-starter-json-2.1.3.RELEASE.jar (405 B at 0.5 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.9.8/jackson-core-2.9.8.jar Downloaded: http://repo.maven.apache.org/maven2/org/springframework/spring-test/5.1.5.RELEASE/spring-test-5.1.5.RELEASE.jar (605 KB at 654.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.8/jackson-datatype-jdk8-2.9.8.jar Downloaded: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.9.8/jackson-core-2.9.8.jar (318 KB at 340.5 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.8/jackson-datatype-jsr310-2.9.8.jar Downloaded: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.8/jackson-datatype-jdk8-2.9.8.jar (33 KB at 34.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-parameter-names/2.9.8/jackson-module-parameter-names-2.9.8.jar Downloaded: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.8/jackson-datatype-jsr310-2.9.8.jar (99 KB at 100.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-tomcat/2.1.3.RELEASE/spring-boot-starter-tomcat-2.1.3.RELEASE.jar Downloaded: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-parameter-names/2.9.8/jackson-module-parameter-names-2.9.8.jar (9 KB at 8.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-core/9.0.16/tomcat-embed-core-9.0.16.jar Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-tomcat/2.1.3.RELEASE/spring-boot-starter-tomcat-2.1.3.RELEASE.jar (406 B at 0.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-el/9.0.16/tomcat-embed-el-9.0.16.jar Downloaded: http://repo.maven.apache.org/maven2/org/springframework/spring-context/5.1.5.RELEASE/spring-context-5.1.5.RELEASE.jar (1074 KB at 1042.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-websocket/9.0.16/tomcat-embed-websocket-9.0.16.jar Downloaded: http://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-el/9.0.16/tomcat-embed-el-9.0.16.jar (245 KB at 211.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/hibernate/validator/hibernate-validator/6.0.14.Final/hibernate-validator-6.0.14.Final.jar Downloaded:Bhttp://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-websocket/9.0.16/tomcat-embed-websocket-9.0.16.jar (260 KB at 211.5 KB/sec) Downloading: http://repo.maven.apache.org/maven2/javax/validation/validation-api/2.0.1.Final/validation-api-2.0.1.Final.jar Downloaded:Bhttp://repo.maven.apache.org/maven2/javax/validation/validation-api/2.0.1.Final/validation-api-2.0.1.Final.jar (91 KB at 70.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/jboss/logging/jboss-logging/3.3.2.Final/jboss-logging-3.3.2.Final.jar Downloaded:Bhttp://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.9.8/jackson-databind-2.9.8.jar (1316 KB at 993.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/fasterxml/classmate/1.4.0/classmate-1.4.0.jar Downloaded:Bhttp://repo.maven.apache.org/maven2/org/jboss/logging/jboss-logging/3.3.2.Final/jboss-logging-3.3.2.Final.jar (65 KB at 48.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-web/5.1.5.RELEASE/spring-web-5.1.5.RELEASE.jar Downloaded:Bhttp://repo.maven.apache.org/maven2/com/fasterxml/classmate/1.4.0/classmate-1.4.0.jar (65 KB at 47.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-beans/5.1.5.RELEASE/spring-beans-5.1.5.RELEASE.jar Downloaded:2http://repo.maven.apache.org/maven2/org/springframework/spring-beans/5.1.5.RELEASE/spring-beans-5.1.5.RELEASE.jar (657 KB at 405.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-webmvc/5.1.5.RELEASE/spring-webmvc-5.1.5.RELEASE.jar Downloaded:3http://repo.maven.apache.org/maven2/org/hibernate/validator/hibernate-validator/6.0.14.Final/hibernate-validator-6.0.14.Final.jar (1129 KB at 671.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-aop/5.1.5.RELEASE/spring-aop-5.1.5.RELEASE.jar Downloaded:2http://repo.maven.apache.org/maven2/org/assertj/assertj-core/3.11.1/assertj-core-3.11.1.jar (3990 KB at 2256.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-expression/5.1.5.RELEASE/spring-expression-5.1.5.RELEASE.jar Downloaded: http://repo.maven.apache.org/maven2/org/springframework/spring-webmvc/5.1.5.RELEASE/spring-webmvc-5.1.5.RELEASE.jar (782 KB at 424.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-webflux/2.1.3.RELEASE/spring-boot-starter-webflux-2.1.3.RELEASE.jar Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-webflux/2.1.3.RELEASE/spring-boot-starter-webflux-2.1.3.RELEASE.jar (411 B at 0.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-reactor-netty/2.1.3.RELEASE/spring-boot-starter-reactor-netty-2.1.3.RELEASE.jar Downloaded: http://repo.maven.apache.org/maven2/org/springframework/spring-expression/5.1.5.RELEASE/spring-expression-5.1.5.RELEASE.jar (274 KB at 146.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/projectreactor/netty/reactor-netty/0.8.5.RELEASE/reactor-netty-0.8.5.RELEASE.jar Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-reactor-netty/2.1.3.RELEASE/spring-boot-starter-reactor-netty-2.1.3.RELEASE.jar (414 B at 0.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-codec-http/4.1.33.Final/netty-codec-http-4.1.33.Final.jar Downloaded: http://repo.maven.apache.org/maven2/org/springframework/spring-aop/5.1.5.RELEASE/spring-aop-5.1.5.RELEASE.jar (361 KB at 185.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.33.Final/netty-codec-4.1.33.Final.jar Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-codec-http/4.1.33.Final/netty-codec-http-4.1.33.Final.jar (551 KB at 267.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-codec-http2/4.1.33.Final/netty-codec-http2-4.1.33.Final.jar Downloaded: http://repo.maven.apache.org/maven2/io/projectreactor/netty/reactor-netty/0.8.5.RELEASE/reactor-netty-0.8.5.RELEASE.jar (411 KB at 199.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.33.Final/netty-handler-4.1.33.Final.jar Downloaded:1http://repo.maven.apache.org/maven2/org/springframework/spring-web/5.1.5.RELEASE/spring-web-5.1.5.RELEASE.jar (1350 KB at 629.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-handler-proxy/4.1.33.Final/netty-handler-proxy-4.1.33.Final.jar Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.33.Final/netty-codec-4.1.33.Final.jar (310 KB at 143.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-codec-socks/4.1.33.Final/netty-codec-socks-4.1.33.Final.jar Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-handler-proxy/4.1.33.Final/netty-handler-proxy-4.1.33.Final.jar (21 KB at 9.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-webflux/5.1.5.RELEASE/spring-webflux-5.1.5.RELEASE.jar Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-codec-http2/4.1.33.Final/netty-codec-http2-4.1.33.Final.jar (398 KB at 183.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/synchronoss/cloud/nio-multipart-parser/1.1.0/nio-multipart-parser-1.1.0.jar Downloaded: http://repo.maven.apache.org/maven2/org/synchronoss/cloud/nio-multipart-parser/1.1.0/nio-multipart-parser-1.1.0.jar (55 KB at 24.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/synchronoss/cloud/nio-stream-storage/1.1.3/nio-stream-storage-1.1.3.jar Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.33.Final/netty-handler-4.1.33.Final.jar (412 KB at 184.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.0.27.Final/netty-transport-native-epoll-4.0.27.Final-linux-x86_64.jar Downloaded:4http://repo.maven.apache.org/maven2/org/synchronoss/cloud/nio-stream-storage/1.1.3/nio-stream-storage-1.1.3.jar (13 KB at 5.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.33.Final/netty-common-4.1.33.Final.jar Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-codec-socks/4.1.33.Final/netty-codec-socks-4.1.33.Final.jar (117 KB at 52.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.33.Final/netty-buffer-4.1.33.Final.jar Downloaded:1http://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.0.27.Final/netty-transport-native-epoll-4.0.27.Final-linux-x86_64.jar (111 KB at 48.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.33.Final/netty-transport-4.1.33.Final.jar Downloaded: http://repo.maven.apache.org/maven2/org/springframework/spring-webflux/5.1.5.RELEASE/spring-webflux-5.1.5.RELEASE.jar (721 KB at 302.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.33.Final/netty-resolver-4.1.33.Final.jar Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.33.Final/netty-resolver-4.1.33.Final.jar (33 KB at 13.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-jdbc/2.1.3.RELEASE/spring-boot-starter-jdbc-2.1.3.RELEASE.jar Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.33.Final/netty-buffer-4.1.33.Final.jar (273 KB at 111.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/zaxxer/HikariCP/3.2.0/HikariCP-3.2.0.jar Downloaded: http://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-core/9.0.16/tomcat-embed-core-9.0.16.jar (3211 KB at 1317.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-jdbc/5.1.5.RELEASE/spring-jdbc-5.1.5.RELEASE.jar Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-jdbc/2.1.3.RELEASE/spring-boot-starter-jdbc-2.1.3.RELEASE.jar (406 B at 0.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/spring-tx/5.1.5.RELEASE/spring-tx-5.1.5.RELEASE.jar Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.33.Final/netty-transport-4.1.33.Final.jar (453 KB at 184.5 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/projectreactor/reactor-core/3.2.6.RELEASE/reactor-core-3.2.6.RELEASE.jar Downloaded: http://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.33.Final/netty-common-4.1.33.Final.jar (574 KB at 233.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/reactivestreams/reactive-streams/1.0.2/reactive-streams-1.0.2.jar Downloaded: http://repo.maven.apache.org/maven2/org/reactivestreams/reactive-streams/1.0.2/reactive-streams-1.0.2.jar (3 KB at 0.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/projectreactor/reactor-test/3.2.6.RELEASE/reactor-test-3.2.6.RELEASE.jar Downloaded: http://repo.maven.apache.org/maven2/com/zaxxer/HikariCP/3.2.0/HikariCP-3.2.0.jar (141 KB at 55.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test-junit/1.3.21/kotlin-test-junit-1.3.21.jar Downloaded: http://repo.maven.apache.org/maven2/org/springframework/spring-tx/5.1.5.RELEASE/spring-tx-5.1.5.RELEASE.jar (251 KB at 98.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test-annotations-common/1.3.21/kotlin-test-annotations-common-1.3.21.jar Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test-junit/1.3.21/kotlin-test-junit-1.3.21.jar (5 KB at 1.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test/1.3.21/kotlin-test-1.3.21.jar Downloaded: http://repo.maven.apache.org/maven2/io/projectreactor/reactor-test/3.2.6.RELEASE/reactor-test-3.2.6.RELEASE.jar (100 KB at 38.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test-common/1.3.21/kotlin-test-common-1.3.21.jar Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test-annotations-common/1.3.21/kotlin-test-annotations-common-1.3.21.jar (2 KB at 0.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-engine/5.3.2/junit-jupiter-engine-5.3.2.jar Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test/1.3.21/kotlin-test-1.3.21.jar (29 KB at 11.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.0.0/apiguardian-api-1.0.0.jar Downloaded:4http://repo.maven.apache.org/maven2/org/springframework/spring-jdbc/5.1.5.RELEASE/spring-jdbc-5.1.5.RELEASE.jar (395 KB at 153.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-engine/1.3.2/junit-platform-engine-1.3.2.jar Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-test-common/1.3.21/kotlin-test-common-1.3.21.jar (5 KB at 1.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.3.2/junit-platform-commons-1.3.2.jar Downloaded: http://repo.maven.apache.org/maven2/org/apiguardian/apiguardian-api/1.0.0/apiguardian-api-1.0.0.jar (3 KB at 0.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.1.1/opentest4j-1.1.1.jar Downloaded: http://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.3.2/junit-platform-commons-1.3.2.jar (76 KB at 28.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.3.2/junit-jupiter-api-5.3.2.jar Downloaded: http://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-engine/1.3.2/junit-platform-engine-1.3.2.jar (136 KB at 51.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-params/5.3.2/junit-jupiter-params-5.3.2.jar Downloaded: http://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-engine/5.3.2/junit-jupiter-engine-5.3.2.jar (147 KB at 55.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/junit/vintage/junit-vintage-engine/5.3.2/junit-vintage-engine-5.3.2.jar Downloaded:3http://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-api/5.3.2/junit-jupiter-api-5.3.2.jar (113 KB at 41.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/mockito/mockito-core/2.23.4/mockito-core-2.23.4.jar Downloaded:8http://repo.maven.apache.org/maven2/org/junit/vintage/junit-vintage-engine/5.3.2/junit-vintage-engine-5.3.2.jar (61 KB at 22.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy/1.9.10/byte-buddy-1.9.10.jar Downloaded:6http://repo.maven.apache.org/maven2/org/junit/jupiter/junit-jupiter-params/5.3.2/junit-jupiter-params-5.3.2.jar (490 KB at 177.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-agent/1.9.10/byte-buddy-agent-1.9.10.jar Downloaded: http://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy-agent/1.9.10/byte-buddy-agent-1.9.10.jar (43 KB at 15.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/objenesis/objenesis/2.6/objenesis-2.6.jar Downloaded: http://repo.maven.apache.org/maven2/org/objenesis/objenesis/2.6/objenesis-2.6.jar (55 KB at 19.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/nhaarman/mockitokotlin2/mockito-kotlin/2.0.0/mockito-kotlin-2.0.0.jar Downloaded: http://repo.maven.apache.org/maven2/org/mockito/mockito-core/2.23.4/mockito-core-2.23.4.jar (552 KB at 193.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/groovy/groovy-templates/2.5.6/groovy-templates-2.5.6.jar Downloaded: http://repo.maven.apache.org/maven2/com/nhaarman/mockitokotlin2/mockito-kotlin/2.0.0/mockito-kotlin-2.0.0.jar (42 KB at 14.5 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/groovy/groovy/2.5.6/groovy-2.5.6.jar Downloaded: http://repo.maven.apache.org/maven2/io/projectreactor/reactor-core/3.2.6.RELEASE/reactor-core-3.2.6.RELEASE.jar (1434 KB at 501.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/groovy/groovy-xml/2.5.6/groovy-xml-2.5.6.jar Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/groovy/groovy-templates/2.5.6/groovy-templates-2.5.6.jar (99 KB at 34.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/h2database/h2/1.4.197/h2-1.4.197.jar Downloaded: http://repo.maven.apache.org/maven2/org/opentest4j/opentest4j/1.1.1/opentest4j-1.1.1.jar (7 KB at 2.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/swagger/swagger-parser/1.0.31/swagger-parser-1.0.31.jar Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/groovy/groovy-xml/2.5.6/groovy-xml-2.5.6.jar (217 KB at 73.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/swagger/swagger-core/1.5.15/swagger-core-1.5.15.jar Downloaded: http://repo.maven.apache.org/maven2/io/swagger/swagger-core/1.5.15/swagger-core-1.5.15.jar (110 KB at 36.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar Downloaded:Bhttp://repo.maven.apache.org/maven2/io/swagger/swagger-parser/1.0.31/swagger-parser-1.0.31.jar (70 KB at 21.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.9.0/jackson-annotations-2.9.0.jar Downloaded:Bhttp://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.9.0/jackson-annotations-2.9.0.jar (65 KB at 19.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.9.8/jackson-dataformat-yaml-2.9.8.jar Downloaded:Bhttp://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar (491 KB at 149.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/swagger/swagger-models/1.5.15/swagger-models-1.5.15.jar Downloaded:Bhttp://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.9.8/jackson-dataformat-yaml-2.9.8.jar (41 KB at 12.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/swagger/swagger-annotations/1.5.15/swagger-annotations-1.5.15.jar Downloaded:Bhttp://repo.maven.apache.org/maven2/io/swagger/swagger-annotations/1.5.15/swagger-annotations-1.5.15.jar (21 KB at 6.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/google/guava/guava/20.0/guava-20.0.jar Downloaded:Bhttp://repo.maven.apache.org/maven2/io/swagger/swagger-models/1.5.15/swagger-models-1.5.15.jar (141 KB at 40.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/slf4j/slf4j-ext/1.7.25/slf4j-ext-1.7.25.jar Downloaded:Bhttp://repo.maven.apache.org/maven2/org/slf4j/slf4j-ext/1.7.25/slf4j-ext-1.7.25.jar (42 KB at 11.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar Downloaded:Bhttp://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar (41 KB at 11.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/abego/treelayout/org.abego.treelayout.core/1.0.1/org.abego.treelayout.core-1.0.1.jar Downloaded:Bhttp://repo.maven.apache.org/maven2/org/abego/treelayout/org.abego.treelayout.core/1.0.1/org.abego.treelayout.core-1.0.1.jar (25 KB at 6.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/atlassian/commonmark/commonmark/0.11.0/commonmark-0.11.0.jar Downloaded:Bhttp://repo.maven.apache.org/maven2/com/h2database/h2/1.4.197/h2-1.4.197.jar (1883 KB at 516.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/tomcat/tomcat-jdbc/9.0.16/tomcat-jdbc-9.0.16.jar Downloaded:Bhttp://repo.maven.apache.org/maven2/com/atlassian/commonmark/commonmark/0.11.0/commonmark-0.11.0.jar (132 KB at 35.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/tomcat/tomcat-juli/9.0.16/tomcat-juli-9.0.16.jar Downloaded:Bhttp://repo.maven.apache.org/maven2/org/apache/tomcat/tomcat-jdbc/9.0.16/tomcat-jdbc-9.0.16.jar (146 KB at 38.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/javax/cache/cache-api/1.1.0/cache-api-1.1.0.jar Downloaded:Bhttp://repo.maven.apache.org/maven2/org/apache/tomcat/tomcat-juli/9.0.16/tomcat-juli-9.0.16.jar (47 KB at 12.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/hazelcast/hazelcast/3.11.1/hazelcast-3.11.1.jar Downloaded:Bhttp://repo.maven.apache.org/maven2/javax/cache/cache-api/1.1.0/cache-api-1.1.0.jar (51 KB at 13.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.8.5/gson-2.8.5.jar Downloaded:Bhttp://repo.maven.apache.org/maven2/net/bytebuddy/byte-buddy/1.9.10/byte-buddy-1.9.10.jar (3197 KB at 829.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-actuator/2.1.3.RELEASE/spring-boot-starter-actuator-2.1.3.RELEASE.jar Downloaded:Bhttp://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-actuator/2.1.3.RELEASE/spring-boot-starter-actuator-2.1.3.RELEASE.jar (408 B at 0.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-actuator-autoconfigure/2.1.3.RELEASE/spring-boot-actuator-autoconfigure-2.1.3.RELEASE.jar Downloaded:Bhttp://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.8.5/gson-2.8.5.jar (236 KB at 60.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-actuator/2.1.3.RELEASE/spring-boot-actuator-2.1.3.RELEASE.jar Downloaded:Bhttp://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-actuator-autoconfigure/2.1.3.RELEASE/spring-boot-actuator-autoconfigure-2.1.3.RELEASE.jar (427 KB at 106.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/micrometer/micrometer-core/1.1.3/micrometer-core-1.1.3.jar Downloaded:Bhttp://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-actuator/2.1.3.RELEASE/spring-boot-actuator-2.1.3.RELEASE.jar (497 KB at 122.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/hdrhistogram/HdrHistogram/2.1.9/HdrHistogram-2.1.9.jar Downloaded:Bhttp://repo.maven.apache.org/maven2/org/hdrhistogram/HdrHistogram/2.1.9/HdrHistogram-2.1.9.jar (112 KB at 27.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.jar Downloaded:Bhttp://repo.maven.apache.org/maven2/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.jar (30 KB at 7.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/micrometer/micrometer-registry-prometheus/1.1.3/micrometer-registry-prometheus-1.1.3.jar Downloaded:Bhttp://repo.maven.apache.org/maven2/io/micrometer/micrometer-core/1.1.3/micrometer-core-1.1.3.jar (413 KB at 99.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/prometheus/simpleclient_common/0.5.0/simpleclient_common-0.5.0.jar Downloaded:Bhttp://repo.maven.apache.org/maven2/io/micrometer/micrometer-registry-prometheus/1.1.3/micrometer-registry-prometheus-1.1.3.jar (26 KB at 6.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/io/prometheus/simpleclient/0.5.0/simpleclient-0.5.0.jar Downloaded:Bhttp://repo.maven.apache.org/maven2/io/prometheus/simpleclient_common/0.5.0/simpleclient_common-0.5.0.jar (6 KB at 1.4 KB/sec) Downloaded:Bhttp://repo.maven.apache.org/maven2/io/prometheus/simpleclient/0.5.0/simpleclient-0.5.0.jar (58 KB at 13.8 KB/sec) Downloaded:Bhttp://repo.maven.apache.org/maven2/com/google/guava/guava/20.0/guava-20.0.jar (2386 KB at 541.9 KB/sec) Downloaded:Bhttp://repo.maven.apache.org/maven2/org/codehaus/groovy/groovy/2.5.6/groovy-2.5.6.jar (5339 KB at 1211.3 KB/sec) Downloaded:Bhttp://repo.maven.apache.org/maven2/com/hazelcast/hazelcast/3.11.1/hazelcast-3.11.1.jar (9766 KB at 1854.9 KB/sec) [INFO] [INFO] --- maven-clean-plugin:3.1.0:clean (default-clean) @ sql-boot --- Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.7.1/plexus-component-annotations-1.7.1.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.7.1/plexus-component-annotations-1.7.1.pom (770 B at 31.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.7.1/plexus-containers-1.7.1.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.7.1/plexus-containers-1.7.1.pom (5 KB at 245.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.pom (6 KB at 275.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.7.1/plexus-component-annotations-1.7.1.jar Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.jar Downloaded:/http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-annotations/1.7.1/plexus-component-annotations-1.7.1.jar (5 KB at 126.9 KB/sec) Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.1/maven-shared-utils-3.2.1.jar (163 KB at 2756.9 KB/sec) [INFO] [INFO] --- jacoco-maven-plugin:0.8.2:prepare-agent (default) @ sql-boot --- Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/2.1/maven-reporting-impl-2.1.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/2.1/maven-reporting-impl-2.1.pom (5 KB at 220.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.10/maven-project-2.0.10.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.10/maven-project-2.0.10.pom (3 KB at 146.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.10/maven-2.0.10.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven/2.0.10/maven-2.0.10.pom (24 KB at 1129.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.10/maven-settings-2.0.10.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0.10/maven-settings-2.0.10.pom (3 KB at 104.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.10/maven-model-2.0.10.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.10/maven-model-2.0.10.pom (4 KB at 135.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.1/plexus-interpolation-1.1.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.1/plexus-interpolation-1.1.pom (2 KB at 70.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.10/maven-profile-2.0.10.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.10/maven-profile-2.0.10.pom (3 KB at 97.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.10/maven-artifact-manager-2.0.10.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.10/maven-artifact-manager-2.0.10.pom (3 KB at 125.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.10/maven-repository-metadata-2.0.10.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.10/maven-repository-metadata-2.0.10.pom (3 KB at 98.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.10/maven-artifact-2.0.10.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.10/maven-artifact-2.0.10.pom (2 KB at 75.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.10/maven-plugin-registry-2.0.10.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0.10/maven-plugin-registry-2.0.10.pom (2 KB at 98.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.10/maven-plugin-api-2.0.10.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.10/maven-plugin-api-2.0.10.pom (2 KB at 69.5 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.1.2/doxia-sink-api-1.1.2.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sink-api/1.1.2/doxia-sink-api-1.1.2.pom (2 KB at 76.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.1.2/doxia-1.1.2.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia/1.1.2/doxia-1.1.2.pom (18 KB at 709.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.1.2/doxia-logging-api-1.1.2.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-logging-api/1.1.2/doxia-logging-api-1.1.2.pom (2 KB at 70.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.1.2/doxia-core-1.1.2.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.1.2/doxia-core-1.1.2.pom (4 KB at 191.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.12/plexus-utils-1.5.12.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.12/plexus-utils-1.5.12.pom (6 KB at 262.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/xerces/xercesImpl/2.8.1/xercesImpl-2.8.1.pom Downloaded: http://repo.maven.apache.org/maven2/xerces/xercesImpl/2.8.1/xercesImpl-2.8.1.pom (3 KB at 98.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.3.03/xml-apis-1.3.03.pom Downloaded: http://repo.maven.apache.org/maven2/xml-apis/xml-apis/1.3.03/xml-apis-1.3.03.pom (738 B at 34.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/apache/1/apache-1.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/apache/1/apache-1.pom (4 KB at 158.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.pom Downloaded: http://repo.maven.apache.org/maven2/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.pom (8 KB at 344.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.2/commons-codec-1.2.pom Downloaded: http://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.2/commons-codec-1.2.pom (4 KB at 196.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.1.2/doxia-site-renderer-1.1.2.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.1.2/doxia-site-renderer-1.1.2.pom (6 KB at 298.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.1.2/doxia-sitetools-1.1.2.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-sitetools/1.1.2/doxia-sitetools-1.1.2.pom (15 KB at 678.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.1.2/doxia-decoration-model-1.1.2.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.1.2/doxia-decoration-model-1.1.2.pom (3 KB at 145.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.1.2/doxia-module-xhtml-1.1.2.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.1.2/doxia-module-xhtml-1.1.2.pom (2 KB at 78.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.1.2/doxia-modules-1.1.2.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-modules/1.1.2/doxia-modules-1.1.2.pom (3 KB at 119.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-fml/1.1.2/doxia-module-fml-1.1.2.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-fml/1.1.2/doxia-module-fml-1.1.2.pom (6 KB at 268.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom Downloaded: http://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.pom (13 KB at 550.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.agent/0.8.2/org.jacoco.agent-0.8.2.pom Downloaded: http://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.agent/0.8.2/org.jacoco.agent-0.8.2.pom (4 KB at 164.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.core/0.8.2/org.jacoco.core-0.8.2.pom Downloaded: http://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.core/0.8.2/org.jacoco.core-0.8.2.pom (3 KB at 98.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm/6.2.1/asm-6.2.1.pom Downloaded: http://repo.maven.apache.org/maven2/org/ow2/asm/asm/6.2.1/asm-6.2.1.pom (3 KB at 143.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/ow2/ow2/1.5/ow2-1.5.pom Downloaded: http://repo.maven.apache.org/maven2/org/ow2/ow2/1.5/ow2-1.5.pom (11 KB at 522.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/6.2.1/asm-commons-6.2.1.pom Downloaded: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/6.2.1/asm-commons-6.2.1.pom (4 KB at 170.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/6.2.1/asm-tree-6.2.1.pom Downloaded: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/6.2.1/asm-tree-6.2.1.pom (4 KB at 145.5 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/6.2.1/asm-analysis-6.2.1.pom Downloaded: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/6.2.1/asm-analysis-6.2.1.pom (4 KB at 154.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.report/0.8.2/org.jacoco.report-0.8.2.pom Downloaded: http://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.report/0.8.2/org.jacoco.report-0.8.2.pom (2 KB at 93.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/2.1/maven-reporting-impl-2.1.jar Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.1.2/doxia-core-1.1.2.jar Downloading: http://repo.maven.apache.org/maven2/xerces/xercesImpl/2.8.1/xercesImpl-2.8.1.jar Downloading: http://repo.maven.apache.org/maven2/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar Downloading: http://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.2/commons-codec-1.2.jar Downloaded:6http://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-impl/2.1/maven-reporting-impl-2.1.jar (17 KB at 317.5 KB/sec) Downloading:0http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.1.2/doxia-site-renderer-1.1.2.jar Downloaded:7http://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.2/commons-codec-1.2.jar (30 KB at 683.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.1.2/doxia-decoration-model-1.1.2.jar Downloaded:4http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-site-renderer/1.1.2/doxia-site-renderer-1.1.2.jar (50 KB at 674.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.1.2/doxia-module-xhtml-1.1.2.jar Downloaded:2http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-core/1.1.2/doxia-core-1.1.2.jar (155 KB at 1515.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-fml/1.1.2/doxia-module-fml-1.1.2.jar Downloaded:2http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-xhtml/1.1.2/doxia-module-xhtml-1.1.2.jar (15 KB at 185.5 KB/sec) Downloading: http://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar Downloaded:2http://repo.maven.apache.org/maven2/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar (298 KB at 2920.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.agent/0.8.2/org.jacoco.agent-0.8.2-runtime.jar Downloaded:3http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-module-fml/1.1.2/doxia-module-fml-1.1.2.jar (37 KB at 301.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.core/0.8.2/org.jacoco.core-0.8.2.jar Downloaded:2http://repo.maven.apache.org/maven2/org/apache/maven/doxia/doxia-decoration-model/1.1.2/doxia-decoration-model-1.1.2.jar (52 KB at 291.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm/6.2.1/asm-6.2.1.jar Downloaded:2http://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.agent/0.8.2/org.jacoco.agent-0.8.2-runtime.jar (264 KB at 1356.8 KB/sec) Downloading:2http://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/6.2.1/asm-commons-6.2.1.jar Downloaded:1http://repo.maven.apache.org/maven2/org/ow2/asm/asm/6.2.1/asm-6.2.1.jar (111 KB at 471.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/6.2.1/asm-analysis-6.2.1.jar Downloaded:4http://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/6.2.1/asm-commons-6.2.1.jar (78 KB at 316.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/6.2.1/asm-tree-6.2.1.jar Downloaded:4http://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.core/0.8.2/org.jacoco.core-0.8.2.jar (172 KB at 687.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.report/0.8.2/org.jacoco.report-0.8.2.jar Downloaded:4http://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/6.2.1/asm-analysis-6.2.1.jar (32 KB at 121.3 KB/sec) Downloaded: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/6.2.1/asm-tree-6.2.1.jar (50 KB at 170.8 KB/sec) Downloaded: http://repo.maven.apache.org/maven2/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar (575 KB at 1877.6 KB/sec) Downloaded: http://repo.maven.apache.org/maven2/xerces/xercesImpl/2.8.1/xercesImpl-2.8.1.jar (1185 KB at 3557.2 KB/sec) Downloaded: http://repo.maven.apache.org/maven2/org/jacoco/org.jacoco.report/0.8.2/org.jacoco.report-0.8.2.jar (125 KB at 389.9 KB/sec) [INFO] argLine set to -javaagent:/home/r/.m2/repository/org/jacoco/org.jacoco.agent/0.8.2/org.jacoco.agent-0.8.2-runtime.jar=destfile=/home/r/repo/target/jacoco.exec,excludes=**/rest/**:**/Fake*.*:**/SELECTBaseListener.*:**/SELECTBaseVisitor.*:**/SELECTLexer.*:**/SELECTListener.*:**/SELECTParser.*:**/SELECTVisitor.* [INFO] [INFO] --- antlr4-maven-plugin:4.1:antlr4 (default) @ sql-boot --- Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.2/plexus-compiler-api-2.2.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.2/plexus-compiler-api-2.2.pom (865 B at 40.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler/2.2/plexus-compiler-2.2.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler/2.2/plexus-compiler-2.2.pom (4 KB at 168.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/antlr/antlr4/4.1/antlr4-4.1.pom Downloaded: http://repo.maven.apache.org/maven2/org/antlr/antlr4/4.1/antlr4-4.1.pom (5 KB at 180.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/antlr/antlr4-runtime/4.1/antlr4-runtime-4.1.pom Downloaded: http://repo.maven.apache.org/maven2/org/antlr/antlr4-runtime/4.1/antlr4-runtime-4.1.pom (2 KB at 87.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/antlr/antlr-runtime/3.5/antlr-runtime-3.5.pom Downloaded: http://repo.maven.apache.org/maven2/org/antlr/antlr-runtime/3.5/antlr-runtime-3.5.pom (3 KB at 102.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/antlr/antlr-master/3.5/antlr-master-3.5.pom Downloaded: http://repo.maven.apache.org/maven2/org/antlr/antlr-master/3.5/antlr-master-3.5.pom (11 KB at 482.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/antlr/stringtemplate/3.2.1/stringtemplate-3.2.1.pom Downloaded: http://repo.maven.apache.org/maven2/org/antlr/stringtemplate/3.2.1/stringtemplate-3.2.1.pom (8 KB at 347.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/antlr/ST4/4.0.7/ST4-4.0.7.pom Downloaded: http://repo.maven.apache.org/maven2/org/antlr/ST4/4.0.7/ST4-4.0.7.pom (13 KB at 580.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.2/plexus-compiler-api-2.2.jar Downloading: http://repo.maven.apache.org/maven2/org/antlr/antlr4/4.1/antlr4-4.1.jar Downloading: http://repo.maven.apache.org/maven2/org/antlr/antlr4-runtime/4.1/antlr4-runtime-4.1.jar Downloading: http://repo.maven.apache.org/maven2/org/antlr/antlr-runtime/3.5/antlr-runtime-3.5.jar Downloading: http://repo.maven.apache.org/maven2/org/antlr/stringtemplate/3.2.1/stringtemplate-3.2.1.jar Downloaded:3http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.2/plexus-compiler-api-2.2.jar (25 KB at 717.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/antlr/ST4/4.0.7/ST4-4.0.7.jar Downloaded: http://repo.maven.apache.org/maven2/org/antlr/antlr4-runtime/4.1/antlr4-runtime-4.1.jar (247 KB at 2974.7 KB/sec) Downloaded: http://repo.maven.apache.org/maven2/org/antlr/antlr-runtime/3.5/antlr-runtime-3.5.jar (164 KB at 1927.1 KB/sec) Downloaded: http://repo.maven.apache.org/maven2/org/antlr/stringtemplate/3.2.1/stringtemplate-3.2.1.jar (146 KB at 1630.8 KB/sec) Downloaded: http://repo.maven.apache.org/maven2/org/antlr/ST4/4.0.7/ST4-4.0.7.jar (231 KB at 1733.8 KB/sec) Downloaded: http://repo.maven.apache.org/maven2/org/antlr/antlr4/4.1/antlr4-4.1.jar (605 KB at 2961.2 KB/sec) [INFO] ANTLR 4: Processing source directory /home/r/repo/src/main/kotlin [INFO] Processing grammar: com/github/mgramin/sqlboot/sql/select/impl/parser/SELECT.g4 [INFO] [INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ sql-boot --- Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.1.0/plexus-utils-3.1.0.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.1.0/plexus-utils-3.1.0.pom (5 KB at 216.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/3.1.1/maven-filtering-3.1.1.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/3.1.1/maven-filtering-3.1.1.pom (6 KB at 264.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.0.0/maven-shared-utils-3.0.0.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.0.0/maven-shared-utils-3.0.0.pom (6 KB at 272.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.0.24/plexus-utils-3.0.24.pom (5 KB at 191.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.22/plexus-interpolation-1.22.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.22/plexus-interpolation-1.22.pom (2 KB at 65.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.pom Downloaded: http://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.pom (4 KB at 136.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/15/spice-parent-15.pom Downloaded: http://repo.maven.apache.org/maven2/org/sonatype/spice/spice-parent/15/spice-parent-15.pom (9 KB at 354.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.24/plexus-interpolation-1.24.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.24/plexus-interpolation-1.24.pom (3 KB at 128.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.1.0/plexus-utils-3.1.0.jar Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/3.1.1/maven-filtering-3.1.1.jar Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.0.0/maven-shared-utils-3.0.0.jar Downloading: http://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.jar Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.24/plexus-interpolation-1.24.jar Downloaded:8http://repo.maven.apache.org/maven2/org/sonatype/plexus/plexus-build-api/0.0.7/plexus-build-api-0.0.7.jar (9 KB at 230.1 KB/sec) Downloaded:1http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/3.1.1/maven-filtering-3.1.1.jar (50 KB at 1272.5 KB/sec) Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.24/plexus-interpolation-1.24.jar (78 KB at 2027.0 KB/sec) Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/3.1.0/plexus-utils-3.1.0.jar (256 KB at 2870.6 KB/sec) Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.0.0/maven-shared-utils-3.0.0.jar (152 KB at 1642.2 KB/sec) [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 1 resource [INFO] Copying 6 resources [INFO] [INFO] --- kotlin-maven-plugin:1.3.21:compile (compile) @ sql-boot --- Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.4/maven-plugin-annotations-3.4.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.4/maven-plugin-annotations-3.4.pom (2 KB at 72.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-tools/3.4/maven-plugin-tools-3.4.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-tools/3.4/maven-plugin-tools-3.4.pom (14 KB at 577.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-compiler/1.3.21/kotlin-compiler-1.3.21.pom Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-compiler/1.3.21/kotlin-compiler-1.3.21.pom (2 KB at 95.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-script-runtime/1.3.21/kotlin-script-runtime-1.3.21.pom Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-script-runtime/1.3.21/kotlin-script-runtime-1.3.21.pom (2 KB at 54.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-reflect/1.3.21/kotlin-reflect-1.3.21.pom Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-reflect/1.3.21/kotlin-reflect-1.3.21.pom (2 KB at 62.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/intellij/deps/trove4j/1.0.20181211/trove4j-1.0.20181211.pom Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/intellij/deps/trove4j/1.0.20181211/trove4j-1.0.20181211.pom (2 KB at 60.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-compiler/1.3.21/kotlin-scripting-compiler-1.3.21.pom Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-compiler/1.3.21/kotlin-scripting-compiler-1.3.21.pom (2 KB at 88.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-common/1.3.21/kotlin-scripting-common-1.3.21.pom Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-common/1.3.21/kotlin-scripting-common-1.3.21.pom (2 KB at 89.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutines-core/1.0.1/kotlinx-coroutines-core-1.0.1.pom Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutines-core/1.0.1/kotlinx-coroutines-core-1.0.1.pom (2 KB at 68.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-jvm/1.3.21/kotlin-scripting-jvm-1.3.21.pom Downloaded: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-jvm/1.3.21/kotlin-scripting-jvm-1.3.21.pom (2 KB at 66.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.7/plexus-compiler-api-2.7.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.7/plexus-compiler-api-2.7.pom (891 B at 41.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler/2.7/plexus-compiler-2.7.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler/2.7/plexus-compiler-2.7.pom (5 KB at 219.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.7/plexus-compiler-manager-2.7.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.7/plexus-compiler-manager-2.7.pom (711 B at 36.5 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.7/plexus-compiler-javac-2.7.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.7/plexus-compiler-javac-2.7.pom (792 B at 35.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compilers/2.7/plexus-compilers-2.7.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compilers/2.7/plexus-compilers-2.7.pom (2 KB at 54.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.4/maven-plugin-annotations-3.4.jar Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-compiler/1.3.21/kotlin-compiler-1.3.21.jar Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-script-runtime/1.3.21/kotlin-script-runtime-1.3.21.jar Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-reflect/1.3.21/kotlin-reflect-1.3.21.jar Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/intellij/deps/trove4j/1.0.20181211/trove4j-1.0.20181211.jar Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.4/maven-plugin-annotations-3.4.jar (14 KB at 376.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-compiler/1.3.21/kotlin-scripting-compiler-1.3.21.jar Downloaded:Bhttp://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-script-runtime/1.3.21/kotlin-script-runtime-1.3.21.jar (42 KB at 1142.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-common/1.3.21/kotlin-scripting-common-1.3.21.jar Downloaded:Bhttp://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-compiler/1.3.21/kotlin-scripting-compiler-1.3.21.jar (81 KB at 806.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutines-core/1.0.1/kotlinx-coroutines-core-1.0.1.jar Downloaded:Bhttp://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-common/1.3.21/kotlin-scripting-common-1.3.21.jar (110 KB at 1030.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-jvm/1.3.21/kotlin-scripting-jvm-1.3.21.jar Downloaded:Bhttp://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-jvm/1.3.21/kotlin-scripting-jvm-1.3.21.jar (64 KB at 372.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.7/plexus-compiler-api-2.7.jar Downloaded:Bhttp://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-api/2.7/plexus-compiler-api-2.7.jar (26 KB at 121.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.7/plexus-compiler-manager-2.7.jar Downloaded:Bhttp://repo.maven.apache.org/maven2/org/jetbrains/intellij/deps/trove4j/1.0.20181211/trove4j-1.0.20181211.jar (560 KB at 2360.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.7/plexus-compiler-javac-2.7.jar Downloaded:Bhttp://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-manager/2.7/plexus-compiler-manager-2.7.jar (5 KB at 18.9 KB/sec) Downloaded:Bhttp://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-compiler-javac/2.7/plexus-compiler-javac-2.7.jar (20 KB at 69.7 KB/sec) Downloaded:Khttp://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutines-core/1.0.1/kotlinx-coroutines-core-1.0.1.jar (766 KB at 1899.4 KB/sec) Downloaded:Khttp://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-reflect/1.3.21/kotlin-reflect-1.3.21.jar (2606 KB at 3700.7 KB/sec) Downloaded:Khttp://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-compiler/1.3.21/kotlin-compiler-1.3.21.jar (31356 KB at 9894.4 KB/sec) [INFO] [INFO] --- maven-compiler-plugin:3.5.1:compile (java-compile) @ sql-boot --- [INFO] Changes detected - recompiling the module! [INFO] Compiling 6 source files to /home/r/repo/target/classes [INFO] /home/r/repo/src/main/generated-sources/com/github/mgramin/sqlboot/sql/select/impl/parser/SELECTParser.java: Some input files use or override a deprecated API. [INFO] /home/r/repo/src/main/generated-sources/com/github/mgramin/sqlboot/sql/select/impl/parser/SELECTParser.java: Recompile with -Xlint:deprecation for details. [INFO] [INFO] --- maven-resources-plugin:3.1.0:testResources (default-testResources) @ sql-boot --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 4 resources [INFO] [INFO] --- kotlin-maven-plugin:1.3.21:test-compile (test-compile) @ sql-boot --- [INFO] [INFO] --- maven-compiler-plugin:3.5.1:testCompile (java-test-compile) @ sql-boot --- [INFO] No sources to compile [INFO] [INFO] --- maven-surefire-plugin:2.22.1:test (default-test) @ sql-boot --- Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.22.1/maven-surefire-common-2.22.1.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.22.1/maven-surefire-common-2.22.1.pom (12 KB at 486.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.5.2/maven-plugin-annotations-3.5.2.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.5.2/maven-plugin-annotations-3.5.2.pom (2 KB at 79.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-tools/3.5.2/maven-plugin-tools-3.5.2.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-tools/3.5.2/maven-plugin-tools-3.5.2.pom (16 KB at 682.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.22.1/surefire-api-2.22.1.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.22.1/surefire-api-2.22.1.pom (4 KB at 128.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-logger-api/2.22.1/surefire-logger-api-2.22.1.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-logger-api/2.22.1/surefire-logger-api-2.22.1.pom (2 KB at 91.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.22.1/surefire-booter-2.22.1.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.22.1/surefire-booter-2.22.1.pom (8 KB at 363.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/0.9.10/plexus-java-0.9.10.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/0.9.10/plexus-java-0.9.10.pom (5 KB at 226.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-languages/0.9.10/plexus-languages-0.9.10.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-languages/0.9.10/plexus-languages-0.9.10.pom (5 KB at 192.5 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm/6.2/asm-6.2.pom Downloaded: http://repo.maven.apache.org/maven2/org/ow2/asm/asm/6.2/asm-6.2.pom (3 KB at 143.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0-M8/qdox-2.0-M8.pom Downloaded: http://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0-M8/qdox-2.0-M8.pom (16 KB at 736.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.22.1/maven-surefire-common-2.22.1.jar Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.5.2/maven-plugin-annotations-3.5.2.jar Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.22.1/surefire-api-2.22.1.jar Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-logger-api/2.22.1/surefire-logger-api-2.22.1.jar Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.22.1/surefire-booter-2.22.1.jar Downloaded:4http://repo.maven.apache.org/maven2/org/apache/maven/surefire/maven-surefire-common/2.22.1/maven-surefire-common-2.22.1.jar (516 KB at 7063.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/0.9.10/plexus-java-0.9.10.jar Downloaded:5http://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-logger-api/2.22.1/surefire-logger-api-2.22.1.jar (14 KB at 169.4 KB/sec) Downloading:/http://repo.maven.apache.org/maven2/org/ow2/asm/asm/6.2/asm-6.2.jar Downloaded:3http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-java/0.9.10/plexus-java-0.9.10.jar (39 KB at 409.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0-M8/qdox-2.0-M8.jar Downloaded:8http://repo.maven.apache.org/maven2/org/apache/maven/plugin-tools/maven-plugin-annotations/3.5.2/maven-plugin-annotations-3.5.2.jar (14 KB at 98.8 KB/sec) Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-api/2.22.1/surefire-api-2.22.1.jar (182 KB at 1242.2 KB/sec) Downloaded: http://repo.maven.apache.org/maven2/org/ow2/asm/asm/6.2/asm-6.2.jar (109 KB at 719.3 KB/sec) Downloaded: http://repo.maven.apache.org/maven2/com/thoughtworks/qdox/qdox/2.0-M8/qdox-2.0-M8.jar (310 KB at 2032.9 KB/sec) Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-booter/2.22.1/surefire-booter-2.22.1.jar (268 KB at 1413.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-junit-platform/2.22.1/surefire-junit-platform-2.22.1.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-junit-platform/2.22.1/surefire-junit-platform-2.22.1.pom (7 KB at 309.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-providers/2.22.1/surefire-providers-2.22.1.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-providers/2.22.1/surefire-providers-2.22.1.pom (3 KB at 115.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-launcher/1.3.1/junit-platform-launcher-1.3.1.pom Downloaded: http://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-launcher/1.3.1/junit-platform-launcher-1.3.1.pom (3 KB at 98.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-engine/1.3.1/junit-platform-engine-1.3.1.pom Downloaded: http://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-engine/1.3.1/junit-platform-engine-1.3.1.pom (3 KB at 106.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.3.1/junit-platform-commons-1.3.1.pom Downloaded: http://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.3.1/junit-platform-commons-1.3.1.pom (2 KB at 94.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-junit-platform/2.22.1/surefire-junit-platform-2.22.1.jar Downloading: http://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-engine/1.3.1/junit-platform-engine-1.3.1.jar Downloading: http://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.3.1/junit-platform-commons-1.3.1.jar Downloading: http://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-launcher/1.3.1/junit-platform-launcher-1.3.1.jar Downloaded:5http://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-commons/1.3.1/junit-platform-commons-1.3.1.jar (77 KB at 2534.4 KB/sec) Downloaded:9http://repo.maven.apache.org/maven2/org/apache/maven/surefire/surefire-junit-platform/2.22.1/surefire-junit-platform-2.22.1.jar (65 KB at 1463.0 KB/sec) Downloaded: http://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-launcher/1.3.1/junit-platform-launcher-1.3.1.jar (93 KB at 1812.3 KB/sec) Downloaded: http://repo.maven.apache.org/maven2/org/junit/platform/junit-platform-engine/1.3.1/junit-platform-engine-1.3.1.jar (132 KB at 2092.8 KB/sec) [INFO] [INFO] ------------------------------------------------------- [INFO] T E S T S [INFO] ------------------------------------------------------- [INFO] Running com.github.mgramin.sqlboot.model.connection.EndpointListTest 07:44:31.430 [main] DEBUG org.springframework.test.context.BootstrapUtils - Instantiating CacheAwareContextLoaderDelegate from class [org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate] 07:44:31.468 [main] INFO org.springframework.core.KotlinDetector - Kotlin reflection implementation not found at runtime, related features won't be available. 07:44:31.478 [main] DEBUG org.springframework.test.context.BootstrapUtils - Instantiating BootstrapContext using constructor [public org.springframework.test.context.support.DefaultBootstrapContext(java.lang.Class,org.springframework.test.context.CacheAwareContextLoaderDelegate)] 07:44:31.508 [main] DEBUG org.springframework.test.context.BootstrapUtils - Instantiating TestContextBootstrapper for test class [com.github.mgramin.sqlboot.model.connection.EndpointListTest] from class [org.springframework.test.context.support.DefaultTestContextBootstrapper] 07:44:31.576 [main] DEBUG org.springframework.test.context.support.AbstractDelegatingSmartContextLoader - Delegating to AnnotationConfigContextLoader to process context configuration [ContextConfigurationAttributes@3ed34ef5 declaringClass = 'com.github.mgramin.sqlboot.model.connection.EndpointListTest', classes = '{class com.github.mgramin.sqlboot.model.connection.EndpointList}', locations = '{}', inheritLocations = true, initializers = '{class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer}', inheritInitializers = true, name = [null], contextLoaderClass = 'org.springframework.test.context.ContextLoader']. 07:44:31.725 [main] DEBUG org.springframework.test.context.support.ActiveProfilesUtils - Could not find an 'annotation declaring class' for annotation type [org.springframework.test.context.ActiveProfiles] and class [com.github.mgramin.sqlboot.model.connection.EndpointListTest] 07:44:31.727 [main] DEBUG org.springframework.test.context.support.DefaultTestContextBootstrapper - @TestExecutionListeners is not present for class [com.github.mgramin.sqlboot.model.connection.EndpointListTest]: using defaults. 07:44:31.728 [main] INFO org.springframework.test.context.support.DefaultTestContextBootstrapper - Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 07:44:31.786 [main] INFO org.springframework.test.context.support.DefaultTestContextBootstrapper - Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@79eeff87, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@6b4fc2d1, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@8bd076a, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@1de4285e, org.springframework.test.context.support.DirtiesContextTestExecutionListener@1378eea2, org.springframework.test.context.transaction.TransactionalTestExecutionListener@634ff56, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@66522ead, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@5a484ce1, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@e91b4f4, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@2ffe243f, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@58ae402b, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@4099209b] 07:44:31.790 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test class: context [DefaultTestContext@d88f893 testClass = EndpointListTest, testInstance = [null], testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@259b85d6 testClass = EndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.EndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@48eaf42f key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.EndpointList], name=, locations=[], value=[], inheritLocations=true), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null]. 07:44:31.850 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@d88f893 testClass = EndpointListTest, testInstance = com.github.mgramin.sqlboot.model.connection.EndpointListTest@67bb4dcd, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@259b85d6 testClass = EndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.EndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@48eaf42f key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.EndpointList], name=, locations=[], value=[], inheritLocations=true), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]]. 07:44:31.852 [main] DEBUG org.springframework.test.context.support.AbstractDelegatingSmartContextLoader - Delegating to AnnotationConfigContextLoader to load context from [MergedContextConfiguration@259b85d6 testClass = EndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.EndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@48eaf42f key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.EndpointList], name=, locations=[], value=[], inheritLocations=true), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]. 07:44:31.854 [main] DEBUG org.springframework.test.context.support.AbstractGenericContextLoader - Loading ApplicationContext for merged context configuration [[MergedContextConfiguration@259b85d6 testClass = EndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.EndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@48eaf42f key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.EndpointList], name=, locations=[], value=[], inheritLocations=true), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 07:44:31.984 [main] DEBUG org.springframework.core.env.StandardEnvironment - Activating profiles [] 07:44:32.126 [main] DEBUG org.springframework.boot.env.OriginTrackedYamlLoader - Loading from YAML: class path resource [application.yml] 07:44:32.201 [main] DEBUG org.springframework.boot.env.OriginTrackedYamlLoader - Merging document (no matchers set): {conf={dialects=[{name=h2, paginationQueryTemplate=${query} offset ${uri.pageSize()*(uri.pageNumber()-1)} limit ${uri.pageSize()} }], endpoints=[{name=h2, host=127.0.0.1, properties={ "sql.dialect": "h2", "fs.base.folder": "conf/h2/md/database", "jdbc.url": "jdbc:h2:mem:;INIT=RUNSCRIPT FROM 'classpath:schema.sql';", "jdbc.driver.class.name": "org.h2.Driver", "jdbc.user": "", "jdbc.password": "", "os.query.rest.port": "8082", "visible": false, "description": "Embedded db for unit tests only" } }]}, spring={jmx={enabled=false}}} 07:44:32.201 [main] DEBUG org.springframework.boot.env.OriginTrackedYamlLoader - Loaded 1 document from YAML resource: class path resource [application.yml] 07:44:32.500 [main] DEBUG org.springframework.core.env.StandardEnvironment - Activating profiles [] 07:44:32.507 [main] DEBUG org.springframework.test.context.support.AnnotationConfigContextLoader - Registering annotated classes: {class com.github.mgramin.sqlboot.model.connection.EndpointList} 07:44:32.642 [main] DEBUG org.springframework.context.support.GenericApplicationContext - Refreshing org.springframework.context.support.GenericApplicationContext@552cede7 07:44:32.712 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' 07:44:33.410 [main] DEBUG org.springframework.core.env.PropertySourcesPropertyResolver - Found key 'spring.jmx.enabled' in PropertySource 'applicationConfig: [classpath:/application.yml]' with value of type Boolean 07:44:33.519 [main] DEBUG org.springframework.core.env.PropertySourcesPropertyResolver - Found key 'spring.jmx.enabled' in PropertySource 'applicationConfig: [classpath:/application.yml]' with value of type Boolean 07:44:33.662 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry' 07:44:34.117 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.test.context.ImportsContextCustomizer$ImportsCleanupPostProcessor' 07:44:34.696 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer' 07:44:34.720 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.test.mock.mockito.MockitoPostProcessor' 07:44:34.766 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor' 07:44:34.769 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationBeanFactoryMetadata' 07:44:34.771 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory' 07:44:34.772 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory' 07:44:34.795 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' 07:44:34.796 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' 07:44:34.802 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.test.mock.mockito.MockitoPostProcessor$SpyPostProcessor' 07:44:34.803 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor' 07:44:34.809 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'methodValidationPostProcessor' 07:44:34.842 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment' 07:44:34.907 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'dataSourceInitializerPostProcessor' 07:44:34.915 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor' 07:44:34.916 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment' 07:44:34.924 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator' 07:44:34.961 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'meterRegistryPostProcessor' 07:44:34.982 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor' 07:44:34.983 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' 07:44:34.999 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$bbd46c9b] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) 07:44:35.039 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'transactionAttributeSource' 07:44:35.046 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'transactionInterceptor' 07:44:35.122 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'endpointList' 07:44:35.123 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class com.github.mgramin.sqlboot.model.connection.EndpointList$$EnhancerBySpringCGLIB$$4a724bed] - unable to determine constructor/method parameter names 07:44:35.223 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages' 07:44:35.226 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration' 07:44:35.233 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' 07:44:35.243 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer' 07:44:35.246 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' 07:44:35.261 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'org.springframework.context.support.GenericApplicationContext@552cede7' 07:44:35.261 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' 07:44:35.285 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' 07:44:35.285 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration$$EnhancerBySpringCGLIB$$c9b4ae45] - unable to determine constructor/method parameter names 07:44:35.286 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' via constructor to bean named 'org.springframework.context.support.GenericApplicationContext@552cede7' 07:44:35.291 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jacksonObjectMapperBuilder' 07:44:35.293 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer' 07:44:35.375 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'parameterNamesModule' 07:44:35.375 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' 07:44:35.431 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jsonComponentModule' 07:44:35.431 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' 07:44:35.479 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' 07:44:35.483 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jacksonObjectMapper' 07:44:35.484 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder' 07:44:35.883 [main] WARN org.springframework.http.converter.json.Jackson2ObjectMapperBuilder - For Jackson Kotlin classes support please add "com.fasterxml.jackson.module:jackson-module-kotlin" to the classpath 07:44:35.924 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration$LoggingCodecConfiguration' 07:44:35.927 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'loggingCodecCustomizer' 07:44:35.928 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.http-org.springframework.boot.autoconfigure.http.HttpProperties' 07:44:35.930 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'loggingCodecCustomizer' via factory method to bean named 'spring.http-org.springframework.boot.autoconfigure.http.HttpProperties' 07:44:35.939 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration$JacksonCodecConfiguration' 07:44:35.942 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jacksonCodecCustomizer' 07:44:35.943 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'jacksonCodecCustomizer' via factory method to bean named 'jacksonObjectMapper' 07:44:35.950 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration' 07:44:35.953 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration' 07:44:35.955 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'defaultValidator' 07:44:36.063 [main] DEBUG org.jboss.logging - Logging Provider: org.jboss.logging.Log4j2LoggerProvider 07:44:36.065 [main] INFO org.hibernate.validator.internal.util.Version - HV000001: Hibernate Validator 6.0.14.Final 07:44:36.079 [main] DEBUG org.hibernate.validator.internal.engine.resolver.TraversableResolvers - Cannot find javax.persistence.Persistence on classpath. Assuming non JPA 2 environment. All properties will per default be traversable. 07:44:36.103 [main] DEBUG org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator - Loaded expression factory via original TCCL 07:44:36.116 [main] DEBUG org.hibernate.validator.internal.engine.resolver.TraversableResolvers - Cannot find javax.persistence.Persistence on classpath. Assuming non JPA 2 environment. All properties will per default be traversable. 07:44:36.122 [main] DEBUG org.hibernate.validator.internal.engine.ConfigurationImpl - Setting custom MessageInterpolator of type org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator 07:44:36.126 [main] DEBUG org.hibernate.validator.internal.engine.ConfigurationImpl - Setting custom ConstraintValidatorFactory of type org.springframework.validation.beanvalidation.SpringConstraintValidatorFactory 07:44:36.127 [main] DEBUG org.hibernate.validator.internal.engine.ConfigurationImpl - Setting custom ParameterNameProvider of type org.springframework.validation.beanvalidation.LocalValidatorFactoryBean$1 07:44:36.131 [main] DEBUG org.hibernate.validator.internal.xml.config.ValidationXmlParser - Trying to load META-INF/validation.xml for XML based Validator configuration. 07:44:36.132 [main] DEBUG org.hibernate.validator.internal.xml.config.ResourceLoaderHelper - Trying to load META-INF/validation.xml via user class loader 07:44:36.133 [main] DEBUG org.hibernate.validator.internal.xml.config.ResourceLoaderHelper - Trying to load META-INF/validation.xml via TCCL 07:44:36.133 [main] DEBUG org.hibernate.validator.internal.xml.config.ResourceLoaderHelper - Trying to load META-INF/validation.xml via Hibernate Validator's class loader 07:44:36.134 [main] DEBUG org.hibernate.validator.internal.xml.config.ValidationXmlParser - No META-INF/validation.xml found. Using annotation based configuration only. 07:44:36.519 [main] DEBUG org.hibernate.validator.internal.engine.ValidatorFactoryImpl - HV000234: Using org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator as ValidatorFactory-scoped message interpolator. 07:44:36.520 [main] DEBUG org.hibernate.validator.internal.engine.ValidatorFactoryImpl - HV000234: Using org.hibernate.validator.internal.engine.resolver.TraverseAllTraversableResolver as ValidatorFactory-scoped traversable resolver. 07:44:36.520 [main] DEBUG org.hibernate.validator.internal.engine.ValidatorFactoryImpl - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. 07:44:36.520 [main] DEBUG org.hibernate.validator.internal.engine.ValidatorFactoryImpl - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. 07:44:36.520 [main] DEBUG org.hibernate.validator.internal.engine.ValidatorFactoryImpl - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. 07:44:36.605 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration' 07:44:36.605 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration$$EnhancerBySpringCGLIB$$47740571] - unable to determine constructor/method parameter names 07:44:36.607 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' 07:44:36.611 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration' via constructor to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' 07:44:36.615 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'taskExecutorBuilder' 07:44:36.627 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.audit.AuditAutoConfiguration$AuditEventRepositoryConfiguration' 07:44:36.631 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'auditEventRepository' 07:44:36.653 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.audit.AuditAutoConfiguration' 07:44:36.654 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class org.springframework.boot.actuate.autoconfigure.audit.AuditAutoConfiguration$$EnhancerBySpringCGLIB$$5d89750a] - unable to determine constructor/method parameter names 07:44:36.659 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'auditListener' 07:44:36.673 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.audit.AuditEventsEndpointAutoConfiguration' 07:44:36.676 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'auditEventsEndpoint' 07:44:36.677 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'auditEventsEndpoint' via factory method to bean named 'auditEventRepository' 07:44:36.689 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.beans.BeansEndpointAutoConfiguration' 07:44:36.694 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'beansEndpoint' 07:44:36.695 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'beansEndpoint' via factory method to bean named 'org.springframework.context.support.GenericApplicationContext@552cede7' 07:44:36.704 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.hazelcast.HazelcastServerConfiguration' 07:44:36.719 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.hazelcast.HazelcastAutoConfiguration' 07:44:36.722 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.hazelcast-org.springframework.boot.autoconfigure.hazelcast.HazelcastProperties' 07:44:36.724 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari' 07:44:36.729 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'dataSource' 07:44:36.730 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' 07:44:36.739 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'dataSource' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' 07:44:36.771 [main] DEBUG com.zaxxer.hikari.HikariConfig - Driver class org.h2.Driver found in Thread context class loader sun.misc.Launcher$AppClassLoader@18b4aac2 07:44:36.802 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceInitializerInvoker' 07:44:36.805 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceInitializerInvoker' via constructor to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' 07:44:36.805 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceInitializerInvoker' via constructor to bean named 'org.springframework.context.support.GenericApplicationContext@552cede7' 07:44:36.850 [main] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource 07:44:36.851 [main] DEBUG com.zaxxer.hikari.HikariConfig - HikariPool-1 - configuration: 07:44:36.855 [main] DEBUG com.zaxxer.hikari.HikariConfig - allowPoolSuspension.............false 07:44:36.855 [main] DEBUG com.zaxxer.hikari.HikariConfig - autoCommit......................true 07:44:36.856 [main] DEBUG com.zaxxer.hikari.HikariConfig - catalog.........................none 07:44:36.856 [main] DEBUG com.zaxxer.hikari.HikariConfig - connectionInitSql...............none 07:44:36.856 [main] DEBUG com.zaxxer.hikari.HikariConfig - connectionTestQuery.............none 07:44:36.856 [main] DEBUG com.zaxxer.hikari.HikariConfig - connectionTimeout...............30000 07:44:36.856 [main] DEBUG com.zaxxer.hikari.HikariConfig - dataSource......................none 07:44:36.856 [main] DEBUG com.zaxxer.hikari.HikariConfig - dataSourceClassName.............none 07:44:36.856 [main] DEBUG com.zaxxer.hikari.HikariConfig - dataSourceJNDI..................none 07:44:36.857 [main] DEBUG com.zaxxer.hikari.HikariConfig - dataSourceProperties............{password=<masked>} 07:44:36.857 [main] DEBUG com.zaxxer.hikari.HikariConfig - driverClassName................."org.h2.Driver" 07:44:36.857 [main] DEBUG com.zaxxer.hikari.HikariConfig - healthCheckProperties...........{} 07:44:36.857 [main] DEBUG com.zaxxer.hikari.HikariConfig - healthCheckRegistry.............none 07:44:36.857 [main] DEBUG com.zaxxer.hikari.HikariConfig - idleTimeout.....................600000 07:44:36.858 [main] DEBUG com.zaxxer.hikari.HikariConfig - initializationFailTimeout.......1 07:44:36.858 [main] DEBUG com.zaxxer.hikari.HikariConfig - isolateInternalQueries..........false 07:44:36.858 [main] DEBUG com.zaxxer.hikari.HikariConfig - jdbcUrl.........................jdbc:h2:mem:testdb;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE 07:44:36.858 [main] DEBUG com.zaxxer.hikari.HikariConfig - leakDetectionThreshold..........0 07:44:36.858 [main] DEBUG com.zaxxer.hikari.HikariConfig - maxLifetime.....................1800000 07:44:36.858 [main] DEBUG com.zaxxer.hikari.HikariConfig - maximumPoolSize.................10 07:44:36.858 [main] DEBUG com.zaxxer.hikari.HikariConfig - metricRegistry..................none 07:44:36.859 [main] DEBUG com.zaxxer.hikari.HikariConfig - metricsTrackerFactory...........none 07:44:36.859 [main] DEBUG com.zaxxer.hikari.HikariConfig - minimumIdle.....................10 07:44:36.859 [main] DEBUG com.zaxxer.hikari.HikariConfig - password........................<masked> 07:44:36.859 [main] DEBUG com.zaxxer.hikari.HikariConfig - poolName........................"HikariPool-1" 07:44:36.859 [main] DEBUG com.zaxxer.hikari.HikariConfig - readOnly........................false 07:44:36.859 [main] DEBUG com.zaxxer.hikari.HikariConfig - registerMbeans..................false 07:44:36.859 [main] DEBUG com.zaxxer.hikari.HikariConfig - scheduledExecutor...............none 07:44:36.859 [main] DEBUG com.zaxxer.hikari.HikariConfig - schema..........................none 07:44:36.860 [main] DEBUG com.zaxxer.hikari.HikariConfig - threadFactory...................internal 07:44:36.860 [main] DEBUG com.zaxxer.hikari.HikariConfig - transactionIsolation............default 07:44:36.860 [main] DEBUG com.zaxxer.hikari.HikariConfig - username........................"sa" 07:44:36.860 [main] DEBUG com.zaxxer.hikari.HikariConfig - validationTimeout...............5000 07:44:36.860 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting... 07:44:37.445 [main] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection conn0: url=jdbc:h2:mem:testdb user=SA 07:44:37.448 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed. 07:44:37.477 [main] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource 07:44:37.481 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - Executing SQL script from URL [file:/home/r/repo/target/classes/schema.sql] 07:44:37.495 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: drop schema hr if exists cascade 07:44:37.496 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create schema hr 07:44:37.507 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create table hr.users ( id integer, first_name varchar(30), last_name varchar(31), email varchar(50), constraint users_pk primary key (id, first_name) ) 07:44:37.509 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: comment on table hr.users is 'all system users' 07:44:37.510 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create index hr.users_email_idx on hr.users (email, last_name) 07:44:37.523 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create view hr.users_view_materialized as select * from hr.users 07:44:37.525 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create table hr.jobs ( id integer primary key, name varchar(30), description varchar(100), constraint jobs_pk primary key (id) ) 07:44:37.526 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: comment on table hr.jobs is 'all jobs' 07:44:37.527 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create table hr.persons ( id integer primary key, id_job integer, id_user integer, constraint persons_pk primary key (id) ) 07:44:37.527 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: comment on table hr.persons is 'all persons' 07:44:37.543 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: alter table hr.persons add constraint person_to_jobs_fk foreign key (id_job) references hr.jobs (id) 07:44:37.547 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: alter table hr.persons add constraint person_to_users_fk foreign key (id_user) references hr.users (id) 07:44:37.548 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create view hr.persons_view_materialized as select * from hr.persons 07:44:37.548 [HikariPool-1 housekeeper] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Pool stats (total=1, active=1, idle=0, waiting=0) 07:44:37.557 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create table hr.countries ( id integer primary key, name varchar(50), population integer, constraint countries_pk primary key (id) ) 07:44:37.559 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create table hr.cities ( id integer primary key, name varchar(50), id_country integer, constraint cities_pk primary key (id) ) 07:44:37.560 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection conn1: url=jdbc:h2:mem:testdb user=SA 07:44:37.561 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create table hr.cities_2 ( id integer primary key, name varchar(50), id_country integer, constraint cities_2_pk primary key (id) ) 07:44:37.561 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: drop schema bookings if exists cascade 07:44:37.561 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection conn2: url=jdbc:h2:mem:testdb user=SA 07:44:37.561 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create schema bookings 07:44:37.564 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create table bookings.aircrafts ( aircraft_code character(3) not null, model text not null, range integer not null, constraint aircrafts_range_check check ((range > 0)) ) 07:44:37.564 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection conn3: url=jdbc:h2:mem:testdb user=SA 07:44:37.565 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create table bookings.airports ( airport_code character(3) not null, airport_name text not null, city text not null, longitude double precision not null, latitude double precision not null, timezone text not null ) 07:44:37.565 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection conn4: url=jdbc:h2:mem:testdb user=SA 07:44:37.565 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create table bookings.boarding_passes ( ticket_no character(13) not null, flight_id integer not null, boarding_no integer not null, seat_no character varying(4) not null ) 07:44:37.566 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection conn5: url=jdbc:h2:mem:testdb user=SA 07:44:37.566 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create table bookings.bookings ( book_ref character(6) not null, book_date timestamp not null, total_amount numeric(10, 2) not null ) 07:44:37.567 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection conn6: url=jdbc:h2:mem:testdb user=SA 07:44:37.568 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection conn7: url=jdbc:h2:mem:testdb user=SA 07:44:37.568 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection conn8: url=jdbc:h2:mem:testdb user=SA 07:44:37.569 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection conn9: url=jdbc:h2:mem:testdb user=SA 07:44:37.569 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - After adding stats (total=10, active=1, idle=9, waiting=0) 07:44:37.573 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create table bookings.flights ( flight_id integer not null, flight_no character(6) not null, scheduled_departure timestamp not null, scheduled_arrival timestamp not null, departure_airport character(3) not null, arrival_airport character(3) not null, status character varying(20) not null, aircraft_code character(3) not null, actual_departure timestamp, actual_arrival timestamp ) 07:44:37.573 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - Executed SQL script from URL [file:/home/r/repo/target/classes/schema.sql] in 92 ms. 07:44:37.578 [main] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource 07:44:37.578 [main] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource 07:44:37.578 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - Executing SQL script from URL [file:/home/r/repo/target/classes/data.sql] 07:44:37.582 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 1 returned as update count for SQL: insert into hr.users (id, first_name, email) values (1, 'mkyong', 'mkyong@gmail.com') 07:44:37.583 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 1 returned as update count for SQL: insert into hr.users (id, first_name, email) values (2, 'alex', 'alex@yahoo.com') 07:44:37.584 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 1 returned as update count for SQL: insert into hr.users (id, first_name, email) values (4, 'joel', 'joel@gmail.com') 07:44:37.584 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 1 returned as update count for SQL: insert into hr.jobs (id, name, description) values (1, 'driver', 'driver') 07:44:37.585 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - Executed SQL script from URL [file:/home/r/repo/target/classes/data.sql] in 7 ms. 07:44:37.585 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$PooledDataSourceConfiguration' 07:44:37.590 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration' 07:44:37.595 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'hikariPoolDataSourceMetadataProvider' 07:44:37.612 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$TomcatDataSourcePoolMetadataProviderConfiguration' 07:44:37.616 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'tomcatPoolDataSourceMetadataProvider' 07:44:37.626 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration' 07:44:37.629 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceInitializationConfiguration' 07:44:37.633 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration' 07:44:37.637 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.cache.CachesEndpointAutoConfiguration' 07:44:37.642 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'cachesEndpoint' 07:44:37.664 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'cachesEndpointWebExtension' 07:44:37.666 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'cachesEndpointWebExtension' via factory method to bean named 'cachesEndpoint' 07:44:37.670 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorAutoConfiguration' 07:44:37.671 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorAutoConfiguration$$EnhancerBySpringCGLIB$$2ab8be21] - unable to determine constructor/method parameter names 07:44:37.671 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorAutoConfiguration' via constructor to bean named 'dataSource' 07:44:37.682 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'healthAggregator' 07:44:37.683 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthIndicatorAutoConfiguration' 07:44:37.683 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class org.springframework.boot.actuate.autoconfigure.health.HealthIndicatorAutoConfiguration$$EnhancerBySpringCGLIB$$c556885b] - unable to determine constructor/method parameter names 07:44:37.684 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'management.health.status-org.springframework.boot.actuate.autoconfigure.health.HealthIndicatorProperties' 07:44:37.688 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.health.HealthIndicatorAutoConfiguration' via constructor to bean named 'management.health.status-org.springframework.boot.actuate.autoconfigure.health.HealthIndicatorProperties' 07:44:37.708 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'dbHealthIndicator' 07:44:37.723 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorAutoConfiguration' 07:44:37.727 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'diskSpaceHealthIndicator' 07:44:37.728 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'diskSpaceHealthIndicatorProperties' 07:44:37.738 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'diskSpaceHealthIndicator' via factory method to bean named 'diskSpaceHealthIndicatorProperties' 07:44:37.741 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthIndicatorAutoConfiguration$ReactiveHealthIndicatorConfiguration' 07:44:37.745 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'reactiveHealthIndicatorRegistry' 07:44:37.748 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'reactiveHealthIndicatorRegistry' via factory method to bean named 'dbHealthIndicator' 07:44:37.748 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'reactiveHealthIndicatorRegistry' via factory method to bean named 'diskSpaceHealthIndicator' 07:44:37.769 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'healthIndicatorRegistry' 07:44:37.769 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'healthIndicatorRegistry' via factory method to bean named 'org.springframework.context.support.GenericApplicationContext@552cede7' 07:44:37.780 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointConfiguration' 07:44:37.784 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'healthEndpoint' 07:44:37.785 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthAggregator' 07:44:37.786 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthIndicatorRegistry' 07:44:37.793 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointWebExtensionConfiguration' 07:44:37.797 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'createHealthStatusHttpMapper' 07:44:37.797 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'createHealthStatusHttpMapper' via factory method to bean named 'management.health.status-org.springframework.boot.actuate.autoconfigure.health.HealthIndicatorProperties' 07:44:37.805 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'healthWebEndpointResponseMapper' 07:44:37.807 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' 07:44:37.810 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'healthWebEndpointResponseMapper' via factory method to bean named 'createHealthStatusHttpMapper' 07:44:37.810 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'healthWebEndpointResponseMapper' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' 07:44:37.814 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointAutoConfiguration' 07:44:37.818 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpointAutoConfiguration' 07:44:37.821 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'conditionsReportEndpoint' 07:44:37.821 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'conditionsReportEndpoint' via factory method to bean named 'org.springframework.context.support.GenericApplicationContext@552cede7' 07:44:37.830 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointAutoConfiguration' 07:44:37.831 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointAutoConfiguration$$EnhancerBySpringCGLIB$$185725a6] - unable to determine constructor/method parameter names 07:44:37.832 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' 07:44:37.835 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointAutoConfiguration' via constructor to bean named 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' 07:44:37.839 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'configurationPropertiesReportEndpoint' 07:44:37.866 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration' 07:44:37.869 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'endpointOperationParameterMapper' 07:44:37.882 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'endpointCachingOperationInvokerAdvisor' 07:44:37.884 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'endpointCachingOperationInvokerAdvisor' via factory method to bean named 'environment' 07:44:37.890 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' 07:44:37.890 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration$$EnhancerBySpringCGLIB$$6c9e5a84] - unable to determine constructor/method parameter names 07:44:37.891 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' 07:44:37.892 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' via constructor to bean named 'environment' 07:44:37.895 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'org.springframework.context.support.GenericApplicationContext@552cede7' 07:44:37.895 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' 07:44:37.899 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jmxAnnotationEndpointDiscoverer' 07:44:37.900 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'jmxAnnotationEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' 07:44:37.911 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jmxIncludeExcludePropertyEndpointFilter' 07:44:37.924 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointAutoConfiguration' 07:44:37.925 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointAutoConfiguration$$EnhancerBySpringCGLIB$$c812bf4b] - unable to determine constructor/method parameter names 07:44:37.926 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' 07:44:37.928 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointAutoConfiguration' via constructor to bean named 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' 07:44:37.930 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'environmentEndpoint' 07:44:37.931 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'environment' 07:44:37.943 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'environmentEndpointWebExtension' 07:44:37.944 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'environmentEndpointWebExtension' via factory method to bean named 'environmentEndpoint' 07:44:37.946 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' 07:44:37.946 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration$$EnhancerBySpringCGLIB$$f7ce79b4] - unable to determine constructor/method parameter names 07:44:37.947 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' 07:44:37.950 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' via constructor to bean named 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' 07:44:37.953 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration' 07:44:37.954 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration$$EnhancerBySpringCGLIB$$e239bf0f] - unable to determine constructor/method parameter names 07:44:37.955 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'management.info-org.springframework.boot.actuate.autoconfigure.info.InfoContributorProperties' 07:44:37.958 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration' via constructor to bean named 'management.info-org.springframework.boot.actuate.autoconfigure.info.InfoContributorProperties' 07:44:37.961 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'envInfoContributor' 07:44:37.962 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'envInfoContributor' via factory method to bean named 'environment' 07:44:37.971 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoEndpointAutoConfiguration' 07:44:37.974 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'infoEndpoint' 07:44:37.981 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointAutoConfiguration' 07:44:37.982 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointAutoConfiguration$$EnhancerBySpringCGLIB$$b5c0f524] - unable to determine constructor/method parameter names 07:44:37.982 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'management.endpoint.logfile-org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointProperties' 07:44:37.985 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointAutoConfiguration' via constructor to bean named 'management.endpoint.logfile-org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointProperties' 07:44:37.988 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LoggersEndpointAutoConfiguration' 07:44:37.991 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.HeapDumpWebEndpointAutoConfiguration' 07:44:37.994 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'heapDumpWebEndpoint' 07:44:38.003 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.ThreadDumpEndpointAutoConfiguration' 07:44:38.005 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'dumpEndpoint' 07:44:38.013 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' 07:44:38.015 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'micrometerClock' 07:44:38.025 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'propertiesMeterFilter' 07:44:38.025 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' 07:44:38.029 [main] DEBUG org.springframework.beans.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' 07:44:38.040 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusMetricsExportAutoConfiguration$PrometheusScrapeEndpointConfiguration' 07:44:38.044 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'prometheusEndpoint' 07:44:38.045 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'collectorRegistry' 07:44:38.045 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusMetricsExportAutoConfiguration' 07:44:38.059 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'prometheusEndpoint' via factory method to bean named 'collectorRegistry' 07:44:38.068 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'prometheusConfig' 07:44:38.070 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'management.metrics.export.prometheus-org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusProperties' 07:44:38.073 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'prometheusConfig' via factory method to bean named 'management.metrics.export.prometheus-org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusProperties' 07:44:38.080 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'prometheusMeterRegistry' 07:44:38.082 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'prometheusMeterRegistry' via factory method to bean named 'prometheusConfig' 07:44:38.082 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'prometheusMeterRegistry' via factory method to bean named 'collectorRegistry' 07:44:38.082 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'prometheusMeterRegistry' via factory method to bean named 'micrometerClock' 07:44:38.129 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'metricsHttpClientUriTagFilter' 07:44:38.130 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.client.HttpClientMetricsAutoConfiguration' 07:44:38.130 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class org.springframework.boot.actuate.autoconfigure.metrics.web.client.HttpClientMetricsAutoConfiguration$$EnhancerBySpringCGLIB$$fcab5c0a] - unable to determine constructor/method parameter names 07:44:38.130 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.web.client.HttpClientMetricsAutoConfiguration' via constructor to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' 07:44:38.151 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jvmGcMetrics' 07:44:38.152 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.JvmMetricsAutoConfiguration' 07:44:38.171 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jvmMemoryMetrics' 07:44:38.174 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jvmThreadMetrics' 07:44:38.177 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'classLoaderMetrics' 07:44:38.179 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'logbackMetrics' 07:44:38.180 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.LogbackMetricsAutoConfiguration' 07:44:38.197 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'uptimeMetrics' 07:44:38.197 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.SystemMetricsAutoConfiguration' 07:44:38.213 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'processorMetrics' 07:44:38.219 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'fileDescriptorMetrics' 07:44:38.274 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.CompositeMeterRegistryAutoConfiguration' 07:44:38.277 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsEndpointAutoConfiguration' 07:44:38.279 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'metricsEndpoint' 07:44:38.280 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'metricsEndpoint' via factory method to bean named 'prometheusMeterRegistry' 07:44:38.289 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration' 07:44:38.289 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration$$EnhancerBySpringCGLIB$$24cab48] - unable to determine constructor/method parameter names 07:44:38.289 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration' via constructor to bean named 'prometheusMeterRegistry' 07:44:38.319 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration' 07:44:38.319 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration$$EnhancerBySpringCGLIB$$a79146c5] - unable to determine constructor/method parameter names 07:44:38.320 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration' via constructor to bean named 'prometheusMeterRegistry' 07:44:38.320 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration' via constructor to bean named 'hikariPoolDataSourceMetadataProvider' 07:44:38.320 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration' via constructor to bean named 'tomcatPoolDataSourceMetadataProvider' 07:44:38.330 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration' 07:44:38.332 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.client.RestTemplateMetricsConfiguration' 07:44:38.333 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class org.springframework.boot.actuate.autoconfigure.metrics.web.client.RestTemplateMetricsConfiguration$$EnhancerBySpringCGLIB$$71942bf4] - unable to determine constructor/method parameter names 07:44:38.333 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.web.client.RestTemplateMetricsConfiguration' via constructor to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' 07:44:38.336 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'restTemplateTagConfigurer' 07:44:38.345 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'metricsRestTemplateCustomizer' 07:44:38.346 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'metricsRestTemplateCustomizer' via factory method to bean named 'prometheusMeterRegistry' 07:44:38.346 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'metricsRestTemplateCustomizer' via factory method to bean named 'restTemplateTagConfigurer' 07:44:38.351 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.client.WebClientMetricsConfiguration' 07:44:38.353 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'defaultWebClientExchangeTagsProvider' 07:44:38.363 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'metricsWebClientCustomizer' 07:44:38.364 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'metricsWebClientCustomizer' via factory method to bean named 'prometheusMeterRegistry' 07:44:38.364 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'metricsWebClientCustomizer' via factory method to bean named 'defaultWebClientExchangeTagsProvider' 07:44:38.364 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'metricsWebClientCustomizer' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' 07:44:38.369 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksEndpointAutoConfiguration' 07:44:38.372 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'scheduledTasksEndpoint' 07:44:38.382 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.trace.http.HttpTraceEndpointAutoConfiguration' 07:44:38.384 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration' 07:44:38.387 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'mappingsEndpoint' 07:44:38.388 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'mappingsEndpoint' via factory method to bean named 'org.springframework.context.support.GenericApplicationContext@552cede7' 07:44:38.397 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration' 07:44:38.399 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration' 07:44:38.402 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.groovy.template.GroovyTemplateAutoConfiguration$GroovyMarkupConfiguration' 07:44:38.403 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.groovy.template.GroovyTemplateAutoConfiguration$GroovyMarkupConfiguration$$EnhancerBySpringCGLIB$$a326a29b] - unable to determine constructor/method parameter names 07:44:38.404 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.groovy.template-org.springframework.boot.autoconfigure.groovy.template.GroovyTemplateProperties' 07:44:38.415 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.groovy.template.GroovyTemplateAutoConfiguration$GroovyMarkupConfiguration' via constructor to bean named 'org.springframework.context.support.GenericApplicationContext@552cede7' 07:44:38.415 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.groovy.template.GroovyTemplateAutoConfiguration$GroovyMarkupConfiguration' via constructor to bean named 'spring.groovy.template-org.springframework.boot.autoconfigure.groovy.template.GroovyTemplateProperties' 07:44:38.419 [main] WARN org.springframework.boot.autoconfigure.groovy.template.GroovyTemplateAutoConfiguration - Cannot find template location: classpath:/templates/ (please add some templates, check your Groovy configuration, or set spring.groovy.template.check-template-location=false) 07:44:38.419 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'groovyMarkupConfigurer' 07:44:39.706 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.groovy.template.GroovyTemplateAutoConfiguration' 07:44:39.709 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.gson.GsonAutoConfiguration' 07:44:39.712 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'gsonBuilder' 07:44:39.713 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'standardGsonBuilderCustomizer' 07:44:39.714 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.gson-org.springframework.boot.autoconfigure.gson.GsonProperties' 07:44:39.717 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'standardGsonBuilderCustomizer' via factory method to bean named 'spring.gson-org.springframework.boot.autoconfigure.gson.GsonProperties' 07:44:39.726 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'gsonBuilder' via factory method to bean named 'standardGsonBuilderCustomizer' 07:44:39.748 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'gson' 07:44:39.749 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'gson' via factory method to bean named 'gsonBuilder' 07:44:39.808 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' 07:44:39.809 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration$$EnhancerBySpringCGLIB$$915fecf] - unable to determine constructor/method parameter names 07:44:39.809 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' via constructor to bean named 'spring.http-org.springframework.boot.autoconfigure.http.HttpProperties' 07:44:39.813 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'stringHttpMessageConverter' 07:44:39.839 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' 07:44:39.842 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'mappingJackson2HttpMessageConverter' 07:44:39.843 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'mappingJackson2HttpMessageConverter' via factory method to bean named 'jacksonObjectMapper' 07:44:39.857 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration' 07:44:39.860 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.GsonHttpMessageConvertersConfiguration' 07:44:39.863 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' 07:44:39.863 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$$EnhancerBySpringCGLIB$$d608382f] - unable to determine constructor/method parameter names 07:44:39.868 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'messageConverters' 07:44:39.913 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration$JdbcTemplateConfiguration' 07:44:39.913 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration$JdbcTemplateConfiguration$$EnhancerBySpringCGLIB$$d45f9b08] - unable to determine constructor/method parameter names 07:44:39.914 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' 07:44:39.916 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration$JdbcTemplateConfiguration' via constructor to bean named 'dataSource' 07:44:39.916 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration$JdbcTemplateConfiguration' via constructor to bean named 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' 07:44:39.919 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jdbcTemplate' 07:44:39.940 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration$NamedParameterJdbcTemplateConfiguration' 07:44:39.944 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'namedParameterJdbcTemplate' 07:44:39.945 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'namedParameterJdbcTemplate' via factory method to bean named 'jdbcTemplate' 07:44:39.963 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration' 07:44:39.967 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.reactor.core.ReactorCoreAutoConfiguration' 07:44:39.972 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.reactor-org.springframework.boot.autoconfigure.reactor.core.ReactorCoreProperties' 07:44:39.976 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration' 07:44:39.984 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'taskSchedulerBuilder' 07:44:39.985 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' 07:44:39.988 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'taskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' 07:44:39.999 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$DataSourceTransactionManagerConfiguration' 07:44:39.999 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$DataSourceTransactionManagerConfiguration$$EnhancerBySpringCGLIB$$68d5050a] - unable to determine constructor/method parameter names 07:44:39.999 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$DataSourceTransactionManagerConfiguration' via constructor to bean named 'dataSource' 07:44:40.001 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'platformTransactionManagerCustomizers' 07:44:40.001 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration' 07:44:40.011 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties' 07:44:40.021 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'transactionManager' 07:44:40.022 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'transactionManager' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' 07:44:40.045 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration' 07:44:40.048 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration$CglibAutoProxyConfiguration' 07:44:40.051 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration' 07:44:40.055 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration' 07:44:40.056 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration$$EnhancerBySpringCGLIB$$ba5ec9dd] - unable to determine constructor/method parameter names 07:44:40.057 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration' via constructor to bean named 'transactionManager' 07:44:40.061 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'transactionTemplate' 07:44:40.078 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration' 07:44:40.079 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration$$EnhancerBySpringCGLIB$$56ea661c] - unable to determine constructor/method parameter names 07:44:40.082 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'restTemplateBuilder' 07:44:40.099 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.reactive.function.client.ClientHttpConnectorConfiguration$ReactorNetty' 07:44:40.103 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'reactorClientResourceFactory' 07:44:40.122 [main] DEBUG reactor.util.Loggers$LoggerFactory - Using Slf4j logging framework 07:44:40.168 [main] DEBUG io.netty.util.internal.logging.InternalLoggerFactory - Using SLF4J as the default logging framework 07:44:40.174 [main] DEBUG io.netty.util.internal.PlatformDependent0 - -Dio.netty.noUnsafe: false 07:44:40.174 [main] DEBUG io.netty.util.internal.PlatformDependent0 - Java version: 8 07:44:40.176 [main] DEBUG io.netty.util.internal.PlatformDependent0 - sun.misc.Unsafe.theUnsafe: available 07:44:40.178 [main] DEBUG io.netty.util.internal.PlatformDependent0 - sun.misc.Unsafe.copyMemory: available 07:44:40.178 [main] DEBUG io.netty.util.internal.PlatformDependent0 - java.nio.Buffer.address: available 07:44:40.179 [main] DEBUG io.netty.util.internal.PlatformDependent0 - direct buffer constructor: available 07:44:40.181 [main] DEBUG io.netty.util.internal.PlatformDependent0 - java.nio.Bits.unaligned: available, true 07:44:40.181 [main] DEBUG io.netty.util.internal.PlatformDependent0 - jdk.internal.misc.Unsafe.allocateUninitializedArray(int): unavailable prior to Java9 07:44:40.181 [main] DEBUG io.netty.util.internal.PlatformDependent0 - java.nio.DirectByteBuffer.<init>(long, int): available 07:44:40.181 [main] DEBUG io.netty.util.internal.PlatformDependent - sun.misc.Unsafe: available 07:44:40.182 [main] DEBUG io.netty.util.internal.PlatformDependent - -Dio.netty.tmpdir: /tmp (java.io.tmpdir) 07:44:40.182 [main] DEBUG io.netty.util.internal.PlatformDependent - -Dio.netty.bitMode: 64 (sun.arch.data.model) 07:44:40.184 [main] DEBUG io.netty.util.internal.PlatformDependent - -Dio.netty.maxDirectMemory: 1431830528 bytes 07:44:40.185 [main] DEBUG io.netty.util.internal.PlatformDependent - -Dio.netty.uninitializedArrayAllocationThreshold: -1 07:44:40.187 [main] DEBUG io.netty.util.internal.CleanerJava6 - java.nio.ByteBuffer.cleaner(): available 07:44:40.187 [main] DEBUG io.netty.util.internal.PlatformDependent - -Dio.netty.noPreferDirect: false 07:44:40.191 [main] DEBUG reactor.netty.tcp.TcpResources - [http] resources will use the default LoopResources: DefaultLoopResources {prefix=reactor-http, daemon=true, selectCount=12, workerCount=12} 07:44:40.191 [main] DEBUG reactor.netty.tcp.TcpResources - [http] resources will use the default ConnectionProvider: PooledConnectionProvider {name=http, poolFactory=reactor.netty.resources.ConnectionProvider$$Lambda$594/1424505968@279dc9a0} 07:44:40.192 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'reactorClientHttpConnector' 07:44:40.193 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'reactorClientHttpConnector' via factory method to bean named 'reactorClientResourceFactory' 07:44:40.252 [main] DEBUG io.netty.util.ResourceLeakDetector - -Dio.netty.leakDetection.level: simple 07:44:40.252 [main] DEBUG io.netty.util.ResourceLeakDetector - -Dio.netty.leakDetection.targetRecords: 4 07:44:40.258 [main] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.numHeapArenas: 14 07:44:40.258 [main] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.numDirectArenas: 14 07:44:40.258 [main] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.pageSize: 8192 07:44:40.258 [main] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.maxOrder: 11 07:44:40.258 [main] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.chunkSize: 16777216 07:44:40.258 [main] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.tinyCacheSize: 512 07:44:40.258 [main] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.smallCacheSize: 256 07:44:40.258 [main] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.normalCacheSize: 64 07:44:40.259 [main] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.maxCachedBufferCapacity: 32768 07:44:40.259 [main] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.cacheTrimInterval: 8192 07:44:40.259 [main] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.useCacheForAllThreads: true 07:44:40.259 [main] DEBUG io.netty.buffer.PooledByteBufAllocator - -Dio.netty.allocator.maxCachedByteBuffersPerChunk: 1023 07:44:40.266 [main] DEBUG io.netty.util.internal.InternalThreadLocalMap - -Dio.netty.threadLocalMap.stringBuilder.initialSize: 1024 07:44:40.266 [main] DEBUG io.netty.util.internal.InternalThreadLocalMap - -Dio.netty.threadLocalMap.stringBuilder.maxSize: 4096 07:44:40.282 [main] DEBUG io.netty.util.NetUtil - -Djava.net.preferIPv4Stack: false 07:44:40.282 [main] DEBUG io.netty.util.NetUtil - -Djava.net.preferIPv6Addresses: false 07:44:40.285 [main] DEBUG io.netty.util.NetUtil - Loopback interface: [lo, lo, 127.0.0.1] ([lo, lo, 127.0.0.1], {}) 07:44:40.285 [main] DEBUG io.netty.util.NetUtil - /proc/sys/net/core/somaxconn: 128 07:44:40.329 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.reactive.function.client.ClientHttpConnectorAutoConfiguration' 07:44:40.332 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'clientConnectorCustomizer' 07:44:40.333 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'clientConnectorCustomizer' via factory method to bean named 'reactorClientHttpConnector' 07:44:40.340 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.reactive.function.client.WebClientAutoConfiguration$WebClientCodecsConfiguration' 07:44:40.345 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'exchangeStrategiesCustomizer' 07:44:40.346 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'exchangeStrategiesCustomizer' via factory method to bean named 'loggingCodecCustomizer' 07:44:40.346 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'exchangeStrategiesCustomizer' via factory method to bean named 'jacksonCodecCustomizer' 07:44:40.355 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.reactive.function.client.WebClientAutoConfiguration' 07:44:40.356 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.web.reactive.function.client.WebClientAutoConfiguration$$EnhancerBySpringCGLIB$$c0b21d84] - unable to determine constructor/method parameter names 07:44:40.432 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration' 07:44:40.435 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' 07:44:40.437 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'management.server-org.springframework.boot.actuate.autoconfigure.web.server.ManagementServerProperties' 07:44:40.477 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Storing ApplicationContext in cache under key [[MergedContextConfiguration@259b85d6 testClass = EndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.EndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@48eaf42f key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.EndpointList], name=, locations=[], value=[], inheritLocations=true), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:40.477 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 0, missCount = 1] 07:44:40.489 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@d88f893 testClass = EndpointListTest, testInstance = com.github.mgramin.sqlboot.model.connection.EndpointListTest@67bb4dcd, testMethod = getConnectionByName@EndpointListTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@259b85d6 testClass = EndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.EndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@48eaf42f key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.EndpointList], name=, locations=[], value=[], inheritLocations=true), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:40.493 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@259b85d6 testClass = EndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.EndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@48eaf42f key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.EndpointList], name=, locations=[], value=[], inheritLocations=true), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:40.494 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 1, missCount = 1] 07:44:40.916 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@259b85d6 testClass = EndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.EndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@48eaf42f key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.EndpointList], name=, locations=[], value=[], inheritLocations=true), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:40.917 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 2, missCount = 1] 07:44:40.917 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@259b85d6 testClass = EndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.EndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@48eaf42f key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.EndpointList], name=, locations=[], value=[], inheritLocations=true), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:40.917 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 3, missCount = 1] 07:44:40.919 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@259b85d6 testClass = EndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.EndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@48eaf42f key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.EndpointList], name=, locations=[], value=[], inheritLocations=true), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:40.919 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 4, missCount = 1] 07:44:40.920 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@d88f893 testClass = EndpointListTest, testInstance = com.github.mgramin.sqlboot.model.connection.EndpointListTest@67bb4dcd, testMethod = getConnectionByName@EndpointListTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@259b85d6 testClass = EndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.EndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@48eaf42f key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.EndpointList], name=, locations=[], value=[], inheritLocations=true), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:40.932 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@d88f893 testClass = EndpointListTest, testInstance = com.github.mgramin.sqlboot.model.connection.EndpointListTest@b9c597e, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@259b85d6 testClass = EndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.EndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@48eaf42f key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.EndpointList], name=, locations=[], value=[], inheritLocations=true), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]]. 07:44:40.932 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@259b85d6 testClass = EndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.EndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@48eaf42f key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.EndpointList], name=, locations=[], value=[], inheritLocations=true), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:40.932 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 5, missCount = 1] 07:44:40.934 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@d88f893 testClass = EndpointListTest, testInstance = com.github.mgramin.sqlboot.model.connection.EndpointListTest@b9c597e, testMethod = getConnectionsByMask@EndpointListTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@259b85d6 testClass = EndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.EndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@48eaf42f key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.EndpointList], name=, locations=[], value=[], inheritLocations=true), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:40.935 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@259b85d6 testClass = EndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.EndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@48eaf42f key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.EndpointList], name=, locations=[], value=[], inheritLocations=true), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:40.935 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 6, missCount = 1] 07:44:40.964 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@259b85d6 testClass = EndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.EndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@48eaf42f key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.EndpointList], name=, locations=[], value=[], inheritLocations=true), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:40.964 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 7, missCount = 1] 07:44:40.964 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@259b85d6 testClass = EndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.EndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@48eaf42f key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.EndpointList], name=, locations=[], value=[], inheritLocations=true), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:40.964 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 8, missCount = 1] 07:44:40.966 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@259b85d6 testClass = EndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.EndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@48eaf42f key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.EndpointList], name=, locations=[], value=[], inheritLocations=true), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:40.966 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 9, missCount = 1] 07:44:40.967 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@d88f893 testClass = EndpointListTest, testInstance = com.github.mgramin.sqlboot.model.connection.EndpointListTest@b9c597e, testMethod = getConnectionsByMask@EndpointListTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@259b85d6 testClass = EndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.EndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@48eaf42f key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.EndpointList], name=, locations=[], value=[], inheritLocations=true), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:40.968 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@d88f893 testClass = EndpointListTest, testInstance = com.github.mgramin.sqlboot.model.connection.EndpointListTest@7f4ccc7d, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@259b85d6 testClass = EndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.EndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@48eaf42f key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.EndpointList], name=, locations=[], value=[], inheritLocations=true), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]]. 07:44:40.969 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@259b85d6 testClass = EndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.EndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@48eaf42f key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.EndpointList], name=, locations=[], value=[], inheritLocations=true), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:40.969 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 10, missCount = 1] 07:44:40.971 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@d88f893 testClass = EndpointListTest, testInstance = com.github.mgramin.sqlboot.model.connection.EndpointListTest@7f4ccc7d, testMethod = getConnections@EndpointListTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@259b85d6 testClass = EndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.EndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@48eaf42f key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.EndpointList], name=, locations=[], value=[], inheritLocations=true), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:40.971 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@259b85d6 testClass = EndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.EndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@48eaf42f key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.EndpointList], name=, locations=[], value=[], inheritLocations=true), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:40.971 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 11, missCount = 1] 07:44:40.973 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@259b85d6 testClass = EndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.EndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@48eaf42f key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.EndpointList], name=, locations=[], value=[], inheritLocations=true), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:40.973 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 12, missCount = 1] 07:44:40.973 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@259b85d6 testClass = EndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.EndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@48eaf42f key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.EndpointList], name=, locations=[], value=[], inheritLocations=true), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:40.974 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 13, missCount = 1] 07:44:40.975 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@259b85d6 testClass = EndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.EndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@48eaf42f key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.EndpointList], name=, locations=[], value=[], inheritLocations=true), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:40.975 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 1, maxSize = 32, parentContextCount = 0, hitCount = 14, missCount = 1] 07:44:40.976 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@d88f893 testClass = EndpointListTest, testInstance = com.github.mgramin.sqlboot.model.connection.EndpointListTest@7f4ccc7d, testMethod = getConnections@EndpointListTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@259b85d6 testClass = EndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.EndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@48eaf42f key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.EndpointList], name=, locations=[], value=[], inheritLocations=true), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:40.978 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test class: context [DefaultTestContext@d88f893 testClass = EndpointListTest, testInstance = [null], testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@259b85d6 testClass = EndpointListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.connection.EndpointList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@48eaf42f key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.connection.EndpointList], name=, locations=[], value=[], inheritLocations=true), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null]. [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 9.677 s - in com.github.mgramin.sqlboot.model.connection.EndpointListTest [INFO] Running com.github.mgramin.sqlboot.model.dialect.DbDialectListTest 07:44:40.980 [main] DEBUG org.springframework.test.context.BootstrapUtils - Instantiating CacheAwareContextLoaderDelegate from class [org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate] 07:44:40.980 [main] DEBUG org.springframework.test.context.BootstrapUtils - Instantiating BootstrapContext using constructor [public org.springframework.test.context.support.DefaultBootstrapContext(java.lang.Class,org.springframework.test.context.CacheAwareContextLoaderDelegate)] 07:44:40.980 [main] DEBUG org.springframework.test.context.BootstrapUtils - Instantiating TestContextBootstrapper for test class [com.github.mgramin.sqlboot.model.dialect.DbDialectListTest] from class [org.springframework.test.context.support.DefaultTestContextBootstrapper] 07:44:40.981 [main] DEBUG org.springframework.test.context.support.AbstractDelegatingSmartContextLoader - Delegating to AnnotationConfigContextLoader to process context configuration [ContextConfigurationAttributes@52ac8f5f declaringClass = 'com.github.mgramin.sqlboot.model.dialect.DbDialectListTest', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', locations = '{}', inheritLocations = true, initializers = '{class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer}', inheritInitializers = true, name = [null], contextLoaderClass = 'org.springframework.test.context.ContextLoader']. 07:44:40.984 [main] DEBUG org.springframework.test.context.support.ActiveProfilesUtils - Could not find an 'annotation declaring class' for annotation type [org.springframework.test.context.ActiveProfiles] and class [com.github.mgramin.sqlboot.model.dialect.DbDialectListTest] 07:44:40.985 [main] DEBUG org.springframework.test.context.support.DefaultTestContextBootstrapper - @TestExecutionListeners is not present for class [com.github.mgramin.sqlboot.model.dialect.DbDialectListTest]: using defaults. 07:44:40.985 [main] INFO org.springframework.test.context.support.DefaultTestContextBootstrapper - Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 07:44:40.985 [main] INFO org.springframework.test.context.support.DefaultTestContextBootstrapper - Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@1de982b2, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@1c635efe, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@345abd22, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@2ba1a81, org.springframework.test.context.support.DirtiesContextTestExecutionListener@5397f476, org.springframework.test.context.transaction.TransactionalTestExecutionListener@5585d454, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@34d7c06b, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@666baa62, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@a33d69d, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@716f84fb, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@7bb1c625, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@40b24b8b] 07:44:40.985 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test class: context [DefaultTestContext@54a1fa3e testClass = DbDialectListTest, testInstance = [null], testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@59e4f40d testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@2c9181fa key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null]. 07:44:40.986 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@54a1fa3e testClass = DbDialectListTest, testInstance = com.github.mgramin.sqlboot.model.dialect.DbDialectListTest@7ead79f0, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@59e4f40d testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@2c9181fa key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]]. 07:44:40.986 [main] DEBUG org.springframework.test.context.support.AbstractDelegatingSmartContextLoader - Delegating to AnnotationConfigContextLoader to load context from [MergedContextConfiguration@59e4f40d testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@2c9181fa key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]. 07:44:40.987 [main] DEBUG org.springframework.test.context.support.AbstractGenericContextLoader - Loading ApplicationContext for merged context configuration [[MergedContextConfiguration@59e4f40d testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@2c9181fa key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 07:44:40.987 [main] DEBUG org.springframework.core.env.StandardEnvironment - Activating profiles [] 07:44:40.990 [main] DEBUG org.springframework.boot.env.OriginTrackedYamlLoader - Loading from YAML: class path resource [application.yml] 07:44:40.994 [main] DEBUG org.springframework.boot.env.OriginTrackedYamlLoader - Merging document (no matchers set): {conf={dialects=[{name=h2, paginationQueryTemplate=${query} offset ${uri.pageSize()*(uri.pageNumber()-1)} limit ${uri.pageSize()} }], endpoints=[{name=h2, host=127.0.0.1, properties={ "sql.dialect": "h2", "fs.base.folder": "conf/h2/md/database", "jdbc.url": "jdbc:h2:mem:;INIT=RUNSCRIPT FROM 'classpath:schema.sql';", "jdbc.driver.class.name": "org.h2.Driver", "jdbc.user": "", "jdbc.password": "", "os.query.rest.port": "8082", "visible": false, "description": "Embedded db for unit tests only" } }]}, spring={jmx={enabled=false}}} 07:44:40.994 [main] DEBUG org.springframework.boot.env.OriginTrackedYamlLoader - Loaded 1 document from YAML resource: class path resource [application.yml] 07:44:41.004 [main] DEBUG org.springframework.core.env.StandardEnvironment - Activating profiles [] 07:44:41.007 [main] DEBUG org.springframework.test.context.support.AnnotationConfigContextLoader - Registering annotated classes: {class com.github.mgramin.sqlboot.model.dialect.DbDialectList} 07:44:41.009 [main] DEBUG org.springframework.context.support.GenericApplicationContext - Refreshing org.springframework.context.support.GenericApplicationContext@25061c11 07:44:41.010 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' 07:44:41.122 [main] DEBUG org.springframework.core.env.PropertySourcesPropertyResolver - Found key 'spring.jmx.enabled' in PropertySource 'applicationConfig: [classpath:/application.yml]' with value of type Boolean 07:44:41.163 [main] DEBUG org.springframework.core.env.PropertySourcesPropertyResolver - Found key 'spring.jmx.enabled' in PropertySource 'applicationConfig: [classpath:/application.yml]' with value of type Boolean 07:44:41.230 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry' 07:44:41.315 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.test.context.ImportsContextCustomizer$ImportsCleanupPostProcessor' 07:44:41.325 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer' 07:44:41.327 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.test.mock.mockito.MockitoPostProcessor' 07:44:41.335 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor' 07:44:41.335 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationBeanFactoryMetadata' 07:44:41.336 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory' 07:44:41.336 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionalEventListenerFactory' 07:44:41.339 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' 07:44:41.340 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' 07:44:41.340 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.test.mock.mockito.MockitoPostProcessor$SpyPostProcessor' 07:44:41.341 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor' 07:44:41.342 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'methodValidationPostProcessor' 07:44:41.343 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'methodValidationPostProcessor' via factory method to bean named 'environment' 07:44:41.344 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'dataSourceInitializerPostProcessor' 07:44:41.345 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'persistenceExceptionTranslationPostProcessor' 07:44:41.346 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'persistenceExceptionTranslationPostProcessor' via factory method to bean named 'environment' 07:44:41.347 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.aop.config.internalAutoProxyCreator' 07:44:41.349 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'meterRegistryPostProcessor' 07:44:41.350 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor' 07:44:41.350 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' 07:44:41.352 [main] INFO org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker - Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$bbd46c9b] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) 07:44:41.353 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'transactionAttributeSource' 07:44:41.353 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'transactionInterceptor' 07:44:41.356 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'dbDialectList' 07:44:41.357 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class com.github.mgramin.sqlboot.model.dialect.DbDialectList$$EnhancerBySpringCGLIB$$ecf46068] - unable to determine constructor/method parameter names 07:44:41.368 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages' 07:44:41.368 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration' 07:44:41.369 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' 07:44:41.370 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer' 07:44:41.371 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' 07:44:41.374 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'org.springframework.context.support.GenericApplicationContext@25061c11' 07:44:41.374 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' 07:44:41.375 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' 07:44:41.376 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration$$EnhancerBySpringCGLIB$$c9b4ae45] - unable to determine constructor/method parameter names 07:44:41.376 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' via constructor to bean named 'org.springframework.context.support.GenericApplicationContext@25061c11' 07:44:41.377 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jacksonObjectMapperBuilder' 07:44:41.378 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer' 07:44:41.379 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'parameterNamesModule' 07:44:41.379 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' 07:44:41.382 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jsonComponentModule' 07:44:41.382 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' 07:44:41.387 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' 07:44:41.388 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jacksonObjectMapper' 07:44:41.389 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder' 07:44:41.399 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration$LoggingCodecConfiguration' 07:44:41.400 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'loggingCodecCustomizer' 07:44:41.401 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.http-org.springframework.boot.autoconfigure.http.HttpProperties' 07:44:41.402 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'loggingCodecCustomizer' via factory method to bean named 'spring.http-org.springframework.boot.autoconfigure.http.HttpProperties' 07:44:41.403 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration$JacksonCodecConfiguration' 07:44:41.404 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jacksonCodecCustomizer' 07:44:41.404 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'jacksonCodecCustomizer' via factory method to bean named 'jacksonObjectMapper' 07:44:41.405 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration' 07:44:41.406 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration' 07:44:41.407 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'defaultValidator' 07:44:41.408 [main] DEBUG org.hibernate.validator.internal.engine.resolver.TraversableResolvers - Cannot find javax.persistence.Persistence on classpath. Assuming non JPA 2 environment. All properties will per default be traversable. 07:44:41.408 [main] DEBUG org.hibernate.validator.messageinterpolation.ResourceBundleMessageInterpolator - Loaded expression factory via original TCCL 07:44:41.410 [main] DEBUG org.hibernate.validator.internal.engine.resolver.TraversableResolvers - Cannot find javax.persistence.Persistence on classpath. Assuming non JPA 2 environment. All properties will per default be traversable. 07:44:41.410 [main] DEBUG org.hibernate.validator.internal.engine.ConfigurationImpl - Setting custom MessageInterpolator of type org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator 07:44:41.410 [main] DEBUG org.hibernate.validator.internal.engine.ConfigurationImpl - Setting custom ConstraintValidatorFactory of type org.springframework.validation.beanvalidation.SpringConstraintValidatorFactory 07:44:41.410 [main] DEBUG org.hibernate.validator.internal.engine.ConfigurationImpl - Setting custom ParameterNameProvider of type org.springframework.validation.beanvalidation.LocalValidatorFactoryBean$1 07:44:41.410 [main] DEBUG org.hibernate.validator.internal.xml.config.ValidationXmlParser - Trying to load META-INF/validation.xml for XML based Validator configuration. 07:44:41.411 [main] DEBUG org.hibernate.validator.internal.xml.config.ResourceLoaderHelper - Trying to load META-INF/validation.xml via user class loader 07:44:41.411 [main] DEBUG org.hibernate.validator.internal.xml.config.ResourceLoaderHelper - Trying to load META-INF/validation.xml via TCCL 07:44:41.411 [main] DEBUG org.hibernate.validator.internal.xml.config.ResourceLoaderHelper - Trying to load META-INF/validation.xml via Hibernate Validator's class loader 07:44:41.411 [main] DEBUG org.hibernate.validator.internal.xml.config.ValidationXmlParser - No META-INF/validation.xml found. Using annotation based configuration only. 07:44:41.417 [main] DEBUG org.hibernate.validator.internal.engine.ValidatorFactoryImpl - HV000234: Using org.springframework.validation.beanvalidation.LocaleContextMessageInterpolator as ValidatorFactory-scoped message interpolator. 07:44:41.417 [main] DEBUG org.hibernate.validator.internal.engine.ValidatorFactoryImpl - HV000234: Using org.hibernate.validator.internal.engine.resolver.TraverseAllTraversableResolver as ValidatorFactory-scoped traversable resolver. 07:44:41.417 [main] DEBUG org.hibernate.validator.internal.engine.ValidatorFactoryImpl - HV000234: Using org.hibernate.validator.internal.util.ExecutableParameterNameProvider as ValidatorFactory-scoped parameter name provider. 07:44:41.417 [main] DEBUG org.hibernate.validator.internal.engine.ValidatorFactoryImpl - HV000234: Using org.hibernate.validator.internal.engine.DefaultClockProvider as ValidatorFactory-scoped clock provider. 07:44:41.417 [main] DEBUG org.hibernate.validator.internal.engine.ValidatorFactoryImpl - HV000234: Using org.hibernate.validator.internal.engine.scripting.DefaultScriptEvaluatorFactory as ValidatorFactory-scoped script evaluator factory. 07:44:41.419 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration' 07:44:41.420 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration$$EnhancerBySpringCGLIB$$47740571] - unable to determine constructor/method parameter names 07:44:41.421 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' 07:44:41.422 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration' via constructor to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' 07:44:41.423 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'taskExecutorBuilder' 07:44:41.424 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.audit.AuditAutoConfiguration$AuditEventRepositoryConfiguration' 07:44:41.425 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'auditEventRepository' 07:44:41.426 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.audit.AuditAutoConfiguration' 07:44:41.426 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class org.springframework.boot.actuate.autoconfigure.audit.AuditAutoConfiguration$$EnhancerBySpringCGLIB$$5d89750a] - unable to determine constructor/method parameter names 07:44:41.428 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'auditListener' 07:44:41.429 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.audit.AuditEventsEndpointAutoConfiguration' 07:44:41.429 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'auditEventsEndpoint' 07:44:41.430 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'auditEventsEndpoint' via factory method to bean named 'auditEventRepository' 07:44:41.430 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.beans.BeansEndpointAutoConfiguration' 07:44:41.431 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'beansEndpoint' 07:44:41.432 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'beansEndpoint' via factory method to bean named 'org.springframework.context.support.GenericApplicationContext@25061c11' 07:44:41.433 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.hazelcast.HazelcastServerConfiguration' 07:44:41.434 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.hazelcast.HazelcastAutoConfiguration' 07:44:41.434 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.hazelcast-org.springframework.boot.autoconfigure.hazelcast.HazelcastProperties' 07:44:41.435 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari' 07:44:41.436 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'dataSource' 07:44:41.437 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' 07:44:41.439 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'dataSource' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' 07:44:41.444 [main] DEBUG com.zaxxer.hikari.HikariConfig - Driver class org.h2.Driver found in Thread context class loader sun.misc.Launcher$AppClassLoader@18b4aac2 07:44:41.449 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceInitializerInvoker' 07:44:41.450 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceInitializerInvoker' via constructor to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' 07:44:41.450 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceInitializerInvoker' via constructor to bean named 'org.springframework.context.support.GenericApplicationContext@25061c11' 07:44:41.452 [main] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource 07:44:41.452 [main] DEBUG com.zaxxer.hikari.HikariConfig - HikariPool-2 - configuration: 07:44:41.453 [main] DEBUG com.zaxxer.hikari.HikariConfig - allowPoolSuspension.............false 07:44:41.453 [main] DEBUG com.zaxxer.hikari.HikariConfig - autoCommit......................true 07:44:41.453 [main] DEBUG com.zaxxer.hikari.HikariConfig - catalog.........................none 07:44:41.453 [main] DEBUG com.zaxxer.hikari.HikariConfig - connectionInitSql...............none 07:44:41.453 [main] DEBUG com.zaxxer.hikari.HikariConfig - connectionTestQuery.............none 07:44:41.453 [main] DEBUG com.zaxxer.hikari.HikariConfig - connectionTimeout...............30000 07:44:41.453 [main] DEBUG com.zaxxer.hikari.HikariConfig - dataSource......................none 07:44:41.453 [main] DEBUG com.zaxxer.hikari.HikariConfig - dataSourceClassName.............none 07:44:41.453 [main] DEBUG com.zaxxer.hikari.HikariConfig - dataSourceJNDI..................none 07:44:41.454 [main] DEBUG com.zaxxer.hikari.HikariConfig - dataSourceProperties............{password=<masked>} 07:44:41.454 [main] DEBUG com.zaxxer.hikari.HikariConfig - driverClassName................."org.h2.Driver" 07:44:41.454 [main] DEBUG com.zaxxer.hikari.HikariConfig - healthCheckProperties...........{} 07:44:41.454 [main] DEBUG com.zaxxer.hikari.HikariConfig - healthCheckRegistry.............none 07:44:41.454 [main] DEBUG com.zaxxer.hikari.HikariConfig - idleTimeout.....................600000 07:44:41.454 [main] DEBUG com.zaxxer.hikari.HikariConfig - initializationFailTimeout.......1 07:44:41.454 [main] DEBUG com.zaxxer.hikari.HikariConfig - isolateInternalQueries..........false 07:44:41.454 [main] DEBUG com.zaxxer.hikari.HikariConfig - jdbcUrl.........................jdbc:h2:mem:testdb;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE 07:44:41.454 [main] DEBUG com.zaxxer.hikari.HikariConfig - leakDetectionThreshold..........0 07:44:41.454 [main] DEBUG com.zaxxer.hikari.HikariConfig - maxLifetime.....................1800000 07:44:41.455 [main] DEBUG com.zaxxer.hikari.HikariConfig - maximumPoolSize.................10 07:44:41.455 [main] DEBUG com.zaxxer.hikari.HikariConfig - metricRegistry..................none 07:44:41.455 [main] DEBUG com.zaxxer.hikari.HikariConfig - metricsTrackerFactory...........none 07:44:41.455 [main] DEBUG com.zaxxer.hikari.HikariConfig - minimumIdle.....................10 07:44:41.455 [main] DEBUG com.zaxxer.hikari.HikariConfig - password........................<masked> 07:44:41.455 [main] DEBUG com.zaxxer.hikari.HikariConfig - poolName........................"HikariPool-2" 07:44:41.455 [main] DEBUG com.zaxxer.hikari.HikariConfig - readOnly........................false 07:44:41.455 [main] DEBUG com.zaxxer.hikari.HikariConfig - registerMbeans..................false 07:44:41.455 [main] DEBUG com.zaxxer.hikari.HikariConfig - scheduledExecutor...............none 07:44:41.456 [main] DEBUG com.zaxxer.hikari.HikariConfig - schema..........................none 07:44:41.456 [main] DEBUG com.zaxxer.hikari.HikariConfig - threadFactory...................internal 07:44:41.456 [main] DEBUG com.zaxxer.hikari.HikariConfig - transactionIsolation............default 07:44:41.456 [main] DEBUG com.zaxxer.hikari.HikariConfig - username........................"sa" 07:44:41.456 [main] DEBUG com.zaxxer.hikari.HikariConfig - validationTimeout...............5000 07:44:41.456 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-2 - Starting... 07:44:41.458 [main] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-2 - Added connection conn10: url=jdbc:h2:mem:testdb user=SA 07:44:41.458 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-2 - Start completed. 07:44:41.458 [main] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource 07:44:41.458 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - Executing SQL script from URL [file:/home/r/repo/target/classes/schema.sql] 07:44:41.468 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: drop schema hr if exists cascade 07:44:41.469 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create schema hr 07:44:41.470 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create table hr.users ( id integer, first_name varchar(30), last_name varchar(31), email varchar(50), constraint users_pk primary key (id, first_name) ) 07:44:41.470 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: comment on table hr.users is 'all system users' 07:44:41.471 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create index hr.users_email_idx on hr.users (email, last_name) 07:44:41.472 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create view hr.users_view_materialized as select * from hr.users 07:44:41.472 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create table hr.jobs ( id integer primary key, name varchar(30), description varchar(100), constraint jobs_pk primary key (id) ) 07:44:41.473 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: comment on table hr.jobs is 'all jobs' 07:44:41.474 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create table hr.persons ( id integer primary key, id_job integer, id_user integer, constraint persons_pk primary key (id) ) 07:44:41.474 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: comment on table hr.persons is 'all persons' 07:44:41.476 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: alter table hr.persons add constraint person_to_jobs_fk foreign key (id_job) references hr.jobs (id) 07:44:41.478 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: alter table hr.persons add constraint person_to_users_fk foreign key (id_user) references hr.users (id) 07:44:41.479 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create view hr.persons_view_materialized as select * from hr.persons 07:44:41.480 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create table hr.countries ( id integer primary key, name varchar(50), population integer, constraint countries_pk primary key (id) ) 07:44:41.481 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create table hr.cities ( id integer primary key, name varchar(50), id_country integer, constraint cities_pk primary key (id) ) 07:44:41.481 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create table hr.cities_2 ( id integer primary key, name varchar(50), id_country integer, constraint cities_2_pk primary key (id) ) 07:44:41.486 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: drop schema bookings if exists cascade 07:44:41.486 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create schema bookings 07:44:41.488 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create table bookings.aircrafts ( aircraft_code character(3) not null, model text not null, range integer not null, constraint aircrafts_range_check check ((range > 0)) ) 07:44:41.489 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create table bookings.airports ( airport_code character(3) not null, airport_name text not null, city text not null, longitude double precision not null, latitude double precision not null, timezone text not null ) 07:44:41.489 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create table bookings.boarding_passes ( ticket_no character(13) not null, flight_id integer not null, boarding_no integer not null, seat_no character varying(4) not null ) 07:44:41.490 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create table bookings.bookings ( book_ref character(6) not null, book_date timestamp not null, total_amount numeric(10, 2) not null ) 07:44:41.491 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create table bookings.flights ( flight_id integer not null, flight_no character(6) not null, scheduled_departure timestamp not null, scheduled_arrival timestamp not null, departure_airport character(3) not null, arrival_airport character(3) not null, status character varying(20) not null, aircraft_code character(3) not null, actual_departure timestamp, actual_arrival timestamp ) 07:44:41.491 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - Executed SQL script from URL [file:/home/r/repo/target/classes/schema.sql] in 33 ms. 07:44:41.492 [main] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource 07:44:41.493 [main] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource 07:44:41.493 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - Executing SQL script from URL [file:/home/r/repo/target/classes/data.sql] 07:44:41.494 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 1 returned as update count for SQL: insert into hr.users (id, first_name, email) values (1, 'mkyong', 'mkyong@gmail.com') 07:44:41.495 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 1 returned as update count for SQL: insert into hr.users (id, first_name, email) values (2, 'alex', 'alex@yahoo.com') 07:44:41.496 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 1 returned as update count for SQL: insert into hr.users (id, first_name, email) values (4, 'joel', 'joel@gmail.com') 07:44:41.497 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 1 returned as update count for SQL: insert into hr.jobs (id, name, description) values (1, 'driver', 'driver') 07:44:41.497 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - Executed SQL script from URL [file:/home/r/repo/target/classes/data.sql] in 4 ms. 07:44:41.498 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration$PooledDataSourceConfiguration' 07:44:41.500 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration' 07:44:41.501 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'hikariPoolDataSourceMetadataProvider' 07:44:41.502 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$TomcatDataSourcePoolMetadataProviderConfiguration' 07:44:41.503 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'tomcatPoolDataSourceMetadataProvider' 07:44:41.504 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration' 07:44:41.505 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceInitializationConfiguration' 07:44:41.506 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration' 07:44:41.507 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.cache.CachesEndpointAutoConfiguration' 07:44:41.508 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'cachesEndpoint' 07:44:41.512 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'cachesEndpointWebExtension' 07:44:41.513 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'cachesEndpointWebExtension' via factory method to bean named 'cachesEndpoint' 07:44:41.514 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorAutoConfiguration' 07:44:41.514 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorAutoConfiguration$$EnhancerBySpringCGLIB$$2ab8be21] - unable to determine constructor/method parameter names 07:44:41.515 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorAutoConfiguration' via constructor to bean named 'dataSource' 07:44:41.517 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'healthAggregator' 07:44:41.518 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthIndicatorAutoConfiguration' 07:44:41.518 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class org.springframework.boot.actuate.autoconfigure.health.HealthIndicatorAutoConfiguration$$EnhancerBySpringCGLIB$$c556885b] - unable to determine constructor/method parameter names 07:44:41.519 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'management.health.status-org.springframework.boot.actuate.autoconfigure.health.HealthIndicatorProperties' 07:44:41.520 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.health.HealthIndicatorAutoConfiguration' via constructor to bean named 'management.health.status-org.springframework.boot.actuate.autoconfigure.health.HealthIndicatorProperties' 07:44:41.523 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'dbHealthIndicator' 07:44:41.524 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorAutoConfiguration' 07:44:41.525 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'diskSpaceHealthIndicator' 07:44:41.527 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'diskSpaceHealthIndicatorProperties' 07:44:41.528 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'diskSpaceHealthIndicator' via factory method to bean named 'diskSpaceHealthIndicatorProperties' 07:44:41.529 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthIndicatorAutoConfiguration$ReactiveHealthIndicatorConfiguration' 07:44:41.530 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'reactiveHealthIndicatorRegistry' 07:44:41.533 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'reactiveHealthIndicatorRegistry' via factory method to bean named 'dbHealthIndicator' 07:44:41.533 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'reactiveHealthIndicatorRegistry' via factory method to bean named 'diskSpaceHealthIndicator' 07:44:41.535 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'healthIndicatorRegistry' 07:44:41.535 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'healthIndicatorRegistry' via factory method to bean named 'org.springframework.context.support.GenericApplicationContext@25061c11' 07:44:41.536 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointConfiguration' 07:44:41.537 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'healthEndpoint' 07:44:41.538 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthAggregator' 07:44:41.538 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'healthEndpoint' via factory method to bean named 'healthIndicatorRegistry' 07:44:41.538 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointWebExtensionConfiguration' 07:44:41.539 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'createHealthStatusHttpMapper' 07:44:41.539 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'createHealthStatusHttpMapper' via factory method to bean named 'management.health.status-org.springframework.boot.actuate.autoconfigure.health.HealthIndicatorProperties' 07:44:41.540 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'healthWebEndpointResponseMapper' 07:44:41.541 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' 07:44:41.543 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'healthWebEndpointResponseMapper' via factory method to bean named 'createHealthStatusHttpMapper' 07:44:41.543 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'healthWebEndpointResponseMapper' via factory method to bean named 'management.endpoint.health-org.springframework.boot.actuate.autoconfigure.health.HealthEndpointProperties' 07:44:41.544 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.health.HealthEndpointAutoConfiguration' 07:44:41.545 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.condition.ConditionsReportEndpointAutoConfiguration' 07:44:41.546 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'conditionsReportEndpoint' 07:44:41.546 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'conditionsReportEndpoint' via factory method to bean named 'org.springframework.context.support.GenericApplicationContext@25061c11' 07:44:41.547 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointAutoConfiguration' 07:44:41.548 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointAutoConfiguration$$EnhancerBySpringCGLIB$$185725a6] - unable to determine constructor/method parameter names 07:44:41.548 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' 07:44:41.550 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointAutoConfiguration' via constructor to bean named 'management.endpoint.configprops-org.springframework.boot.actuate.autoconfigure.context.properties.ConfigurationPropertiesReportEndpointProperties' 07:44:41.551 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'configurationPropertiesReportEndpoint' 07:44:41.552 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration' 07:44:41.553 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'endpointOperationParameterMapper' 07:44:41.554 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'endpointCachingOperationInvokerAdvisor' 07:44:41.555 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'endpointCachingOperationInvokerAdvisor' via factory method to bean named 'environment' 07:44:41.556 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' 07:44:41.556 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration$$EnhancerBySpringCGLIB$$6c9e5a84] - unable to determine constructor/method parameter names 07:44:41.557 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' 07:44:41.557 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' via constructor to bean named 'environment' 07:44:41.558 [HikariPool-2 housekeeper] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-2 - Pool stats (total=1, active=0, idle=1, waiting=0) 07:44:41.559 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'org.springframework.context.support.GenericApplicationContext@25061c11' 07:44:41.559 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointAutoConfiguration' via constructor to bean named 'management.endpoints.jmx-org.springframework.boot.actuate.autoconfigure.endpoint.jmx.JmxEndpointProperties' 07:44:41.559 [HikariPool-2 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-2 - Added connection conn11: url=jdbc:h2:mem:testdb user=SA 07:44:41.560 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jmxAnnotationEndpointDiscoverer' 07:44:41.560 [HikariPool-2 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-2 - Added connection conn12: url=jdbc:h2:mem:testdb user=SA 07:44:41.561 [HikariPool-2 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-2 - Added connection conn13: url=jdbc:h2:mem:testdb user=SA 07:44:41.561 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'jmxAnnotationEndpointDiscoverer' via factory method to bean named 'endpointOperationParameterMapper' 07:44:41.561 [HikariPool-2 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-2 - Added connection conn14: url=jdbc:h2:mem:testdb user=SA 07:44:41.562 [HikariPool-2 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-2 - Added connection conn15: url=jdbc:h2:mem:testdb user=SA 07:44:41.563 [HikariPool-2 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-2 - Added connection conn16: url=jdbc:h2:mem:testdb user=SA 07:44:41.563 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jmxIncludeExcludePropertyEndpointFilter' 07:44:41.563 [HikariPool-2 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-2 - Added connection conn17: url=jdbc:h2:mem:testdb user=SA 07:44:41.564 [HikariPool-2 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-2 - Added connection conn18: url=jdbc:h2:mem:testdb user=SA 07:44:41.564 [HikariPool-2 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-2 - Added connection conn19: url=jdbc:h2:mem:testdb user=SA 07:44:41.565 [HikariPool-2 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-2 - After adding stats (total=10, active=0, idle=10, waiting=0) 07:44:41.565 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointAutoConfiguration' 07:44:41.566 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointAutoConfiguration$$EnhancerBySpringCGLIB$$c812bf4b] - unable to determine constructor/method parameter names 07:44:41.567 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' 07:44:41.568 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointAutoConfiguration' via constructor to bean named 'management.endpoint.env-org.springframework.boot.actuate.autoconfigure.env.EnvironmentEndpointProperties' 07:44:41.569 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'environmentEndpoint' 07:44:41.570 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'environmentEndpoint' via factory method to bean named 'environment' 07:44:41.571 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'environmentEndpointWebExtension' 07:44:41.572 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'environmentEndpointWebExtension' via factory method to bean named 'environmentEndpoint' 07:44:41.572 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' 07:44:41.573 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration$$EnhancerBySpringCGLIB$$f7ce79b4] - unable to determine constructor/method parameter names 07:44:41.574 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' 07:44:41.575 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' via constructor to bean named 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' 07:44:41.577 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration' 07:44:41.577 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration$$EnhancerBySpringCGLIB$$e239bf0f] - unable to determine constructor/method parameter names 07:44:41.578 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'management.info-org.springframework.boot.actuate.autoconfigure.info.InfoContributorProperties' 07:44:41.580 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.info.InfoContributorAutoConfiguration' via constructor to bean named 'management.info-org.springframework.boot.actuate.autoconfigure.info.InfoContributorProperties' 07:44:41.581 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'envInfoContributor' 07:44:41.582 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'envInfoContributor' via factory method to bean named 'environment' 07:44:41.583 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.info.InfoEndpointAutoConfiguration' 07:44:41.584 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'infoEndpoint' 07:44:41.586 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointAutoConfiguration' 07:44:41.587 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointAutoConfiguration$$EnhancerBySpringCGLIB$$b5c0f524] - unable to determine constructor/method parameter names 07:44:41.588 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'management.endpoint.logfile-org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointProperties' 07:44:41.589 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointAutoConfiguration' via constructor to bean named 'management.endpoint.logfile-org.springframework.boot.actuate.autoconfigure.logging.LogFileWebEndpointProperties' 07:44:41.590 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.logging.LoggersEndpointAutoConfiguration' 07:44:41.592 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.HeapDumpWebEndpointAutoConfiguration' 07:44:41.593 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'heapDumpWebEndpoint' 07:44:41.594 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.management.ThreadDumpEndpointAutoConfiguration' 07:44:41.595 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'dumpEndpoint' 07:44:41.595 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' 07:44:41.596 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'micrometerClock' 07:44:41.597 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'propertiesMeterFilter' 07:44:41.597 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' 07:44:41.598 [main] DEBUG org.springframework.beans.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' 07:44:41.600 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusMetricsExportAutoConfiguration$PrometheusScrapeEndpointConfiguration' 07:44:41.601 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'prometheusEndpoint' 07:44:41.602 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'collectorRegistry' 07:44:41.602 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusMetricsExportAutoConfiguration' 07:44:41.604 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'prometheusEndpoint' via factory method to bean named 'collectorRegistry' 07:44:41.605 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'prometheusConfig' 07:44:41.606 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'management.metrics.export.prometheus-org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusProperties' 07:44:41.607 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'prometheusConfig' via factory method to bean named 'management.metrics.export.prometheus-org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusProperties' 07:44:41.608 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'prometheusMeterRegistry' 07:44:41.610 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'prometheusMeterRegistry' via factory method to bean named 'prometheusConfig' 07:44:41.610 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'prometheusMeterRegistry' via factory method to bean named 'collectorRegistry' 07:44:41.610 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'prometheusMeterRegistry' via factory method to bean named 'micrometerClock' 07:44:41.614 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'metricsHttpClientUriTagFilter' 07:44:41.614 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.client.HttpClientMetricsAutoConfiguration' 07:44:41.614 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class org.springframework.boot.actuate.autoconfigure.metrics.web.client.HttpClientMetricsAutoConfiguration$$EnhancerBySpringCGLIB$$fcab5c0a] - unable to determine constructor/method parameter names 07:44:41.615 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.web.client.HttpClientMetricsAutoConfiguration' via constructor to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' 07:44:41.619 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jvmGcMetrics' 07:44:41.619 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.JvmMetricsAutoConfiguration' 07:44:41.621 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jvmMemoryMetrics' 07:44:41.622 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jvmThreadMetrics' 07:44:41.623 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'classLoaderMetrics' 07:44:41.624 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'logbackMetrics' 07:44:41.624 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.LogbackMetricsAutoConfiguration' 07:44:41.626 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'uptimeMetrics' 07:44:41.626 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.SystemMetricsAutoConfiguration' 07:44:41.628 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'processorMetrics' 07:44:41.628 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'fileDescriptorMetrics' 07:44:41.639 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.CompositeMeterRegistryAutoConfiguration' 07:44:41.640 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsEndpointAutoConfiguration' 07:44:41.641 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'metricsEndpoint' 07:44:41.642 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'metricsEndpoint' via factory method to bean named 'prometheusMeterRegistry' 07:44:41.642 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration' 07:44:41.643 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration$$EnhancerBySpringCGLIB$$24cab48] - unable to determine constructor/method parameter names 07:44:41.643 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$HikariDataSourceMetricsConfiguration' via constructor to bean named 'prometheusMeterRegistry' 07:44:41.647 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration' 07:44:41.648 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration$$EnhancerBySpringCGLIB$$a79146c5] - unable to determine constructor/method parameter names 07:44:41.649 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration' via constructor to bean named 'prometheusMeterRegistry' 07:44:41.649 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration' via constructor to bean named 'hikariPoolDataSourceMetadataProvider' 07:44:41.649 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration' via constructor to bean named 'tomcatPoolDataSourceMetadataProvider' 07:44:41.651 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.jdbc.DataSourcePoolMetricsAutoConfiguration' 07:44:41.651 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.client.RestTemplateMetricsConfiguration' 07:44:41.652 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class org.springframework.boot.actuate.autoconfigure.metrics.web.client.RestTemplateMetricsConfiguration$$EnhancerBySpringCGLIB$$71942bf4] - unable to determine constructor/method parameter names 07:44:41.652 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.actuate.autoconfigure.metrics.web.client.RestTemplateMetricsConfiguration' via constructor to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' 07:44:41.653 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'restTemplateTagConfigurer' 07:44:41.654 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'metricsRestTemplateCustomizer' 07:44:41.654 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'metricsRestTemplateCustomizer' via factory method to bean named 'prometheusMeterRegistry' 07:44:41.654 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'metricsRestTemplateCustomizer' via factory method to bean named 'restTemplateTagConfigurer' 07:44:41.655 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.metrics.web.client.WebClientMetricsConfiguration' 07:44:41.656 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'defaultWebClientExchangeTagsProvider' 07:44:41.656 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'metricsWebClientCustomizer' 07:44:41.657 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'metricsWebClientCustomizer' via factory method to bean named 'prometheusMeterRegistry' 07:44:41.657 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'metricsWebClientCustomizer' via factory method to bean named 'defaultWebClientExchangeTagsProvider' 07:44:41.657 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'metricsWebClientCustomizer' via factory method to bean named 'management.metrics-org.springframework.boot.actuate.autoconfigure.metrics.MetricsProperties' 07:44:41.657 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.scheduling.ScheduledTasksEndpointAutoConfiguration' 07:44:41.658 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'scheduledTasksEndpoint' 07:44:41.659 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.trace.http.HttpTraceEndpointAutoConfiguration' 07:44:41.660 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.mappings.MappingsEndpointAutoConfiguration' 07:44:41.660 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'mappingsEndpoint' 07:44:41.661 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'mappingsEndpoint' via factory method to bean named 'org.springframework.context.support.GenericApplicationContext@25061c11' 07:44:41.661 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration' 07:44:41.662 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration' 07:44:41.663 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.groovy.template.GroovyTemplateAutoConfiguration$GroovyMarkupConfiguration' 07:44:41.663 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.groovy.template.GroovyTemplateAutoConfiguration$GroovyMarkupConfiguration$$EnhancerBySpringCGLIB$$a326a29b] - unable to determine constructor/method parameter names 07:44:41.664 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.groovy.template-org.springframework.boot.autoconfigure.groovy.template.GroovyTemplateProperties' 07:44:41.668 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.groovy.template.GroovyTemplateAutoConfiguration$GroovyMarkupConfiguration' via constructor to bean named 'org.springframework.context.support.GenericApplicationContext@25061c11' 07:44:41.668 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.groovy.template.GroovyTemplateAutoConfiguration$GroovyMarkupConfiguration' via constructor to bean named 'spring.groovy.template-org.springframework.boot.autoconfigure.groovy.template.GroovyTemplateProperties' 07:44:41.669 [main] WARN org.springframework.boot.autoconfigure.groovy.template.GroovyTemplateAutoConfiguration - Cannot find template location: classpath:/templates/ (please add some templates, check your Groovy configuration, or set spring.groovy.template.check-template-location=false) 07:44:41.670 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'groovyMarkupConfigurer' 07:44:41.674 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.groovy.template.GroovyTemplateAutoConfiguration' 07:44:41.675 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.gson.GsonAutoConfiguration' 07:44:41.676 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'gsonBuilder' 07:44:41.677 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'standardGsonBuilderCustomizer' 07:44:41.678 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.gson-org.springframework.boot.autoconfigure.gson.GsonProperties' 07:44:41.680 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'standardGsonBuilderCustomizer' via factory method to bean named 'spring.gson-org.springframework.boot.autoconfigure.gson.GsonProperties' 07:44:41.681 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'gsonBuilder' via factory method to bean named 'standardGsonBuilderCustomizer' 07:44:41.681 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'gson' 07:44:41.682 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'gson' via factory method to bean named 'gsonBuilder' 07:44:41.683 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' 07:44:41.683 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration$$EnhancerBySpringCGLIB$$915fecf] - unable to determine constructor/method parameter names 07:44:41.683 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' via constructor to bean named 'spring.http-org.springframework.boot.autoconfigure.http.HttpProperties' 07:44:41.684 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'stringHttpMessageConverter' 07:44:41.685 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' 07:44:41.686 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'mappingJackson2HttpMessageConverter' 07:44:41.686 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'mappingJackson2HttpMessageConverter' via factory method to bean named 'jacksonObjectMapper' 07:44:41.688 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration' 07:44:41.689 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.GsonHttpMessageConvertersConfiguration' 07:44:41.690 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' 07:44:41.690 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$$EnhancerBySpringCGLIB$$d608382f] - unable to determine constructor/method parameter names 07:44:41.693 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'messageConverters' 07:44:41.699 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration$JdbcTemplateConfiguration' 07:44:41.699 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration$JdbcTemplateConfiguration$$EnhancerBySpringCGLIB$$d45f9b08] - unable to determine constructor/method parameter names 07:44:41.700 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' 07:44:41.701 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration$JdbcTemplateConfiguration' via constructor to bean named 'dataSource' 07:44:41.702 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration$JdbcTemplateConfiguration' via constructor to bean named 'spring.jdbc-org.springframework.boot.autoconfigure.jdbc.JdbcProperties' 07:44:41.702 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jdbcTemplate' 07:44:41.706 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration$NamedParameterJdbcTemplateConfiguration' 07:44:41.707 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'namedParameterJdbcTemplate' 07:44:41.708 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'namedParameterJdbcTemplate' via factory method to bean named 'jdbcTemplate' 07:44:41.710 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration' 07:44:41.711 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.reactor.core.ReactorCoreAutoConfiguration' 07:44:41.713 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.reactor-org.springframework.boot.autoconfigure.reactor.core.ReactorCoreProperties' 07:44:41.714 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration' 07:44:41.715 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'taskSchedulerBuilder' 07:44:41.716 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' 07:44:41.717 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'taskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' 07:44:41.718 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$DataSourceTransactionManagerConfiguration' 07:44:41.719 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$DataSourceTransactionManagerConfiguration$$EnhancerBySpringCGLIB$$68d5050a] - unable to determine constructor/method parameter names 07:44:41.719 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$DataSourceTransactionManagerConfiguration' via constructor to bean named 'dataSource' 07:44:41.719 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'platformTransactionManagerCustomizers' 07:44:41.720 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration' 07:44:41.721 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties' 07:44:41.724 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'transactionManager' 07:44:41.725 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'transactionManager' via factory method to bean named 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties' 07:44:41.726 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration' 07:44:41.727 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration$CglibAutoProxyConfiguration' 07:44:41.727 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$EnableTransactionManagementConfiguration' 07:44:41.729 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration' 07:44:41.729 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration$$EnhancerBySpringCGLIB$$ba5ec9dd] - unable to determine constructor/method parameter names 07:44:41.730 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration$TransactionTemplateConfiguration' via constructor to bean named 'transactionManager' 07:44:41.731 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'transactionTemplate' 07:44:41.733 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration' 07:44:41.733 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration$$EnhancerBySpringCGLIB$$56ea661c] - unable to determine constructor/method parameter names 07:44:41.734 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'restTemplateBuilder' 07:44:41.737 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.reactive.function.client.ClientHttpConnectorConfiguration$ReactorNetty' 07:44:41.738 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'reactorClientResourceFactory' 07:44:41.739 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'reactorClientHttpConnector' 07:44:41.739 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'reactorClientHttpConnector' via factory method to bean named 'reactorClientResourceFactory' 07:44:41.740 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.reactive.function.client.ClientHttpConnectorAutoConfiguration' 07:44:41.741 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'clientConnectorCustomizer' 07:44:41.742 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'clientConnectorCustomizer' via factory method to bean named 'reactorClientHttpConnector' 07:44:41.742 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.reactive.function.client.WebClientAutoConfiguration$WebClientCodecsConfiguration' 07:44:41.743 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'exchangeStrategiesCustomizer' 07:44:41.744 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'exchangeStrategiesCustomizer' via factory method to bean named 'loggingCodecCustomizer' 07:44:41.744 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Autowiring by type from bean name 'exchangeStrategiesCustomizer' via factory method to bean named 'jacksonCodecCustomizer' 07:44:41.745 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.reactive.function.client.WebClientAutoConfiguration' 07:44:41.746 [main] DEBUG org.springframework.core.LocalVariableTableParameterNameDiscoverer - Cannot find '.class' file for class [class org.springframework.boot.autoconfigure.web.reactive.function.client.WebClientAutoConfiguration$$EnhancerBySpringCGLIB$$c0b21d84] - unable to determine constructor/method parameter names 07:44:41.750 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration' 07:44:41.750 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'management.endpoints.web-org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointProperties' 07:44:41.752 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'management.server-org.springframework.boot.actuate.autoconfigure.web.server.ManagementServerProperties' 07:44:41.770 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Storing ApplicationContext in cache under key [[MergedContextConfiguration@59e4f40d testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@2c9181fa key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:41.770 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 2, maxSize = 32, parentContextCount = 0, hitCount = 14, missCount = 2] 07:44:41.774 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@54a1fa3e testClass = DbDialectListTest, testInstance = com.github.mgramin.sqlboot.model.dialect.DbDialectListTest@7ead79f0, testMethod = paginationQueryTemplate@DbDialectListTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@59e4f40d testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@2c9181fa key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:41.775 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@59e4f40d testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@2c9181fa key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:41.775 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 2, maxSize = 32, parentContextCount = 0, hitCount = 15, missCount = 2] 07:44:41.776 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@59e4f40d testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@2c9181fa key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:41.776 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 2, maxSize = 32, parentContextCount = 0, hitCount = 16, missCount = 2] 07:44:41.777 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@59e4f40d testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@2c9181fa key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:41.777 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 2, maxSize = 32, parentContextCount = 0, hitCount = 17, missCount = 2] 07:44:41.778 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@59e4f40d testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@2c9181fa key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:41.778 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 2, maxSize = 32, parentContextCount = 0, hitCount = 18, missCount = 2] 07:44:41.779 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@54a1fa3e testClass = DbDialectListTest, testInstance = com.github.mgramin.sqlboot.model.dialect.DbDialectListTest@7ead79f0, testMethod = paginationQueryTemplate@DbDialectListTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@59e4f40d testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@2c9181fa key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:41.779 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@54a1fa3e testClass = DbDialectListTest, testInstance = com.github.mgramin.sqlboot.model.dialect.DbDialectListTest@2136feee, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@59e4f40d testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@2c9181fa key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]]. 07:44:41.780 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@59e4f40d testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@2c9181fa key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:41.780 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 2, maxSize = 32, parentContextCount = 0, hitCount = 19, missCount = 2] 07:44:41.781 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@54a1fa3e testClass = DbDialectListTest, testInstance = com.github.mgramin.sqlboot.model.dialect.DbDialectListTest@2136feee, testMethod = dialect@DbDialectListTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@59e4f40d testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@2c9181fa key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:41.786 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@59e4f40d testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@2c9181fa key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:41.786 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 2, maxSize = 32, parentContextCount = 0, hitCount = 20, missCount = 2] 07:44:41.795 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@59e4f40d testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@2c9181fa key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:41.795 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 2, maxSize = 32, parentContextCount = 0, hitCount = 21, missCount = 2] 07:44:41.795 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@59e4f40d testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@2c9181fa key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:41.795 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 2, maxSize = 32, parentContextCount = 0, hitCount = 22, missCount = 2] 07:44:41.796 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@59e4f40d testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@2c9181fa key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:41.796 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 2, maxSize = 32, parentContextCount = 0, hitCount = 23, missCount = 2] 07:44:41.797 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@54a1fa3e testClass = DbDialectListTest, testInstance = com.github.mgramin.sqlboot.model.dialect.DbDialectListTest@2136feee, testMethod = dialect@DbDialectListTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@59e4f40d testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@2c9181fa key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:41.797 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test class: context [DefaultTestContext@54a1fa3e testClass = DbDialectListTest, testInstance = [null], testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@59e4f40d testClass = DbDialectListTest, locations = '{}', classes = '{class com.github.mgramin.sqlboot.model.dialect.DbDialectList}', contextInitializerClasses = '[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[[ImportsContextCustomizer@2c9181fa key = [@org.springframework.boot.autoconfigure.AutoConfigurationPackage(), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationPackages$Registrar]), @org.apiguardian.api.API(consumers=[*], since=5.0, status=STABLE), @org.springframework.boot.autoconfigure.EnableAutoConfiguration(excludeName=[], exclude=[]), @org.springframework.test.context.ContextConfiguration(inheritInitializers=true, initializers=[class org.springframework.boot.test.context.ConfigFileApplicationContextInitializer], loader=interface org.springframework.test.context.ContextLoader, classes=[class com.github.mgramin.sqlboot.model.dialect.DbDialectList], name=, locations=[], value=[], inheritLocations=true), @org.springframework.context.annotation.Import(value=[class org.springframework.boot.autoconfigure.AutoConfigurationImportSelector]), @org.junit.jupiter.api.extension.ExtendWith(value=[class org.springframework.test.context.junit.jupiter.SpringExtension])]], org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null]. [INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.756 s - in com.github.mgramin.sqlboot.model.dialect.DbDialectListTest [INFO] Running com.github.mgramin.sqlboot.model.resourcetype.impl.FsResourceTypeTest 07:44:41.800 [main] DEBUG org.springframework.test.context.BootstrapUtils - Instantiating CacheAwareContextLoaderDelegate from class [org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate] 07:44:41.800 [main] DEBUG org.springframework.test.context.BootstrapUtils - Instantiating BootstrapContext using constructor [public org.springframework.test.context.support.DefaultBootstrapContext(java.lang.Class,org.springframework.test.context.CacheAwareContextLoaderDelegate)] 07:44:41.800 [main] DEBUG org.springframework.test.context.BootstrapUtils - Instantiating TestContextBootstrapper for test class [com.github.mgramin.sqlboot.model.resourcetype.impl.FsResourceTypeTest] from class [org.springframework.test.context.support.DefaultTestContextBootstrapper] 07:44:41.800 [main] DEBUG org.springframework.test.context.support.AbstractDelegatingSmartContextLoader - Delegating to GenericGroovyXmlContextLoader to process context configuration [ContextConfigurationAttributes@418c455f declaringClass = 'com.github.mgramin.sqlboot.model.resourcetype.impl.FsResourceTypeTest', classes = '{}', locations = '{/test_config.xml}', inheritLocations = true, initializers = '{}', inheritInitializers = true, name = [null], contextLoaderClass = 'org.springframework.test.context.ContextLoader']. 07:44:41.803 [main] DEBUG org.springframework.test.context.support.ActiveProfilesUtils - Could not find an 'annotation declaring class' for annotation type [org.springframework.test.context.ActiveProfiles] and class [com.github.mgramin.sqlboot.model.resourcetype.impl.FsResourceTypeTest] 07:44:41.803 [main] DEBUG org.springframework.test.context.support.DefaultTestContextBootstrapper - @TestExecutionListeners is not present for class [com.github.mgramin.sqlboot.model.resourcetype.impl.FsResourceTypeTest]: using defaults. 07:44:41.803 [main] INFO org.springframework.test.context.support.DefaultTestContextBootstrapper - Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 07:44:41.803 [main] INFO org.springframework.test.context.support.DefaultTestContextBootstrapper - Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@5c2ab2bc, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@23ac203d, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@3db2c9c8, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@41ec256b, org.springframework.test.context.support.DirtiesContextTestExecutionListener@485ad0b8, org.springframework.test.context.transaction.TransactionalTestExecutionListener@a35ac46, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@21e2d841, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@185666b, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@1f44b9f3, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@38b461c1, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@fa39646, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@25bf1fe7] 07:44:41.804 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test class: context [DefaultTestContext@1f8ea182 testClass = FsResourceTypeTest, testInstance = [null], testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null]. 07:44:42.088 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@1f8ea182 testClass = FsResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.FsResourceTypeTest@5c9ba06a, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]]. 07:44:42.088 [main] DEBUG org.springframework.test.context.support.AbstractDelegatingSmartContextLoader - Delegating to GenericGroovyXmlContextLoader to load context from [MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]. 07:44:42.088 [main] DEBUG org.springframework.test.context.support.AbstractGenericContextLoader - Loading ApplicationContext for merged context configuration [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]]. 07:44:42.088 [main] DEBUG org.springframework.core.env.StandardEnvironment - Activating profiles [] 07:44:42.347 [main] DEBUG org.springframework.beans.factory.xml.XmlBeanDefinitionReader - Loaded 6 bean definitions from class path resource [test_config.xml] 07:44:42.348 [main] DEBUG org.springframework.context.support.GenericApplicationContext - Refreshing org.springframework.context.support.GenericApplicationContext@3e729ea7 07:44:42.349 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' 07:44:42.352 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.test.mock.mockito.MockitoPostProcessor' 07:44:42.352 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor' 07:44:42.352 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory' 07:44:42.353 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' 07:44:42.353 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' 07:44:42.354 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.test.mock.mockito.MockitoPostProcessor$SpyPostProcessor' 07:44:42.355 [main] DEBUG org.springframework.beans.factory.support.DefaultListableBeanFactory - Creating shared instance of singleton bean 'dataSource' 07:44:42.414 [main] INFO org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseFactory - Starting embedded database: url='jdbc:h2:mem:dataSource;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=false', username='sa' 07:44:42.414 [main] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource 07:44:42.414 [main] DEBUG org.springframework.jdbc.datasource.SimpleDriverDataSource - Creating new JDBC Driver Connection to [jdbc:h2:mem:dataSource;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=false] 07:44:42.416 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - Executing SQL script from class path resource [db/sql/create-test-db.sql] 07:44:42.417 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create schema main_schema 07:44:42.417 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create table main_schema.city ( id integer primary key, country varchar(50), city varchar(50) ) 07:44:42.418 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create table main_schema.users ( id integer primary key, name varchar(30), email varchar(50), id_city integer ) 07:44:42.418 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create index main_schema.users_name_idx on main_schema.users (name) 07:44:42.419 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create index main_schema.users_email_idx on main_schema.users (email) 07:44:42.421 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: alter table main_schema.users add constraint main_schema.users_city_fk foreign key (id_city) references main_schema.city (id) 07:44:42.421 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create view main_schema.city_vw as select * from main_schema.city 07:44:42.422 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: create view main_schema.users_vw as select * from main_schema.users 07:44:42.431 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 0 returned as update count for SQL: CREATE ALIAS getVersion FOR "org.h2.engine.Constants.getVersion" 07:44:42.431 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - Executed SQL script from class path resource [db/sql/create-test-db.sql] in 15 ms. 07:44:42.431 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - Executing SQL script from class path resource [db/sql/init-test-data.sql] 07:44:42.432 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 1 returned as update count for SQL: insert into main_schema.users (id, name, email) values (1, 'mkyong', 'mkyong@gmail.com') 07:44:42.432 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 1 returned as update count for SQL: insert into main_schema.users (id, name, email) values (2, 'alex', 'alex@yahoo.com') 07:44:42.433 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - 1 returned as update count for SQL: insert into main_schema.users (id, name, email) values (4, 'joel', 'joel@gmail.com') 07:44:42.433 [main] DEBUG org.springframework.jdbc.datasource.init.ScriptUtils - Executed SQL script from class path resource [db/sql/init-test-data.sql] in 2 ms. 07:44:42.435 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Storing ApplicationContext in cache under key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:42.436 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 23, missCount = 3] 07:44:42.439 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@1f8ea182 testClass = FsResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.FsResourceTypeTest@5c9ba06a, testMethod = metaData@FsResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:42.440 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:42.440 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 24, missCount = 3] line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 7:7 no viable alternative at input '(' 07:44:43.652 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:43.652 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 25, missCount = 3] 07:44:43.652 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:43.652 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 26, missCount = 3] 07:44:43.653 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:43.653 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 27, missCount = 3] 07:44:43.653 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@1f8ea182 testClass = FsResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.FsResourceTypeTest@5c9ba06a, testMethod = metaData@FsResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:43.655 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@1f8ea182 testClass = FsResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.FsResourceTypeTest@6f601deb, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]]. 07:44:43.656 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:43.656 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 28, missCount = 3] 07:44:43.657 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@1f8ea182 testClass = FsResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.FsResourceTypeTest@6f601deb, testMethod = metaData@FsResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:43.657 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:43.658 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 29, missCount = 3] line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 9:7 no viable alternative at input '(' line 10:17 token recognition error at: '*\n' 07:44:43.894 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:43.894 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 30, missCount = 3] 07:44:43.894 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:43.895 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 31, missCount = 3] 07:44:43.895 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:43.895 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 32, missCount = 3] 07:44:43.896 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@1f8ea182 testClass = FsResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.FsResourceTypeTest@6f601deb, testMethod = metaData@FsResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:43.898 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@1f8ea182 testClass = FsResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.FsResourceTypeTest@6f655db4, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]]. 07:44:43.898 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:43.898 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 33, missCount = 3] 07:44:43.899 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@1f8ea182 testClass = FsResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.FsResourceTypeTest@6f655db4, testMethod = metaData@FsResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:43.899 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:43.899 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 34, missCount = 3] line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 9:7 no viable alternative at input '(' line 10:17 token recognition error at: '*\n' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 7:7 no viable alternative at input '(' 07:44:44.095 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:44.095 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 35, missCount = 3] 07:44:44.096 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:44.096 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 36, missCount = 3] 07:44:44.097 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:44.097 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 37, missCount = 3] 07:44:44.097 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@1f8ea182 testClass = FsResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.FsResourceTypeTest@6f655db4, testMethod = metaData@FsResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:44.100 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@1f8ea182 testClass = FsResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.FsResourceTypeTest@1027847b, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]]. 07:44:44.100 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:44.100 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 38, missCount = 3] 07:44:44.101 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@1f8ea182 testClass = FsResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.FsResourceTypeTest@1027847b, testMethod = metaData@FsResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:44.101 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:44.102 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 39, missCount = 3] line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' 07:44:44.274 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:44.274 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 40, missCount = 3] 07:44:44.274 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:44.274 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 41, missCount = 3] 07:44:44.275 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:44.275 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 42, missCount = 3] 07:44:44.275 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@1f8ea182 testClass = FsResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.FsResourceTypeTest@1027847b, testMethod = metaData@FsResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:44.277 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@1f8ea182 testClass = FsResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.FsResourceTypeTest@5cbb8595, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]]. 07:44:44.277 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:44.277 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 43, missCount = 3] 07:44:44.278 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@1f8ea182 testClass = FsResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.FsResourceTypeTest@5cbb8595, testMethod = metaData@FsResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:44.278 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:44.278 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 44, missCount = 3] line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' 07:44:44.414 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:44.414 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 45, missCount = 3] 07:44:44.414 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:44.414 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 46, missCount = 3] 07:44:44.415 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:44.415 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 47, missCount = 3] 07:44:44.415 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@1f8ea182 testClass = FsResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.FsResourceTypeTest@5cbb8595, testMethod = metaData@FsResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:44.416 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@1f8ea182 testClass = FsResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.FsResourceTypeTest@60c7cc84, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]]. 07:44:44.417 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:44.417 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 48, missCount = 3] 07:44:44.418 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@1f8ea182 testClass = FsResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.FsResourceTypeTest@60c7cc84, testMethod = metaData@FsResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:44.418 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:44.418 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 49, missCount = 3] line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' 07:44:44.552 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:44.552 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 50, missCount = 3] 07:44:44.552 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:44.552 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 51, missCount = 3] 07:44:44.552 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:44.552 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 52, missCount = 3] 07:44:44.553 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@1f8ea182 testClass = FsResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.FsResourceTypeTest@60c7cc84, testMethod = metaData@FsResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:44.555 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@1f8ea182 testClass = FsResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.FsResourceTypeTest@3431c21b, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]]. 07:44:44.556 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:44.556 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 53, missCount = 3] 07:44:44.556 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@1f8ea182 testClass = FsResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.FsResourceTypeTest@3431c21b, testMethod = read@FsResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:44.557 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:44.557 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 54, missCount = 3] line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 7:7 no viable alternative at input '(' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 7:7 no viable alternative at input '(' 07:44:44.758 [main] INFO com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQuery - select "@id" /* { "label": "id", "description": "ID", "visible": true } */ , USER_NAME /* { "label": "user", "description": "User name", "visible": true } */ , session_start /* { "label": "session start", "description": "Session start", "visible": true } */ , STATEMENT , STATEMENT_START , CONTAINS_UNCOMMITTED from (select ID as "@id" , USER_NAME , session_start , STATEMENT , STATEMENT_START , CONTAINS_UNCOMMITTED from information_schema.sessions) 07:44:45.006 [parallel-1] INFO com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQuery - Thread[parallel-1,5,main] 07:44:45.008 [parallel-1] DEBUG org.springframework.jdbc.core.JdbcTemplate - Executing SQL query [select "@id" /* { "label": "id", "description": "ID", "visible": true } */ , USER_NAME /* { "label": "user", "description": "User name", "visible": true } */ , session_start /* { "label": "session start", "description": "Session start", "visible": true } */ , STATEMENT , STATEMENT_START , CONTAINS_UNCOMMITTED from (select ID as "@id" , USER_NAME , session_start , STATEMENT , STATEMENT_START , CONTAINS_UNCOMMITTED from information_schema.sessions)] 07:44:45.010 [parallel-1] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 7:7 no viable alternative at input '(' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 7:7 no viable alternative at input '(' 07:44:45.546 [main] INFO com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQuery - select "@id" /* { "label": "id", "description": "ID", "visible": true } */ , USER_NAME /* { "label": "user", "description": "User name", "visible": true } */ , session_start /* { "label": "session start", "description": "Session start", "visible": true } */ , STATEMENT , STATEMENT_START , CONTAINS_UNCOMMITTED from (select ID as "@id" , USER_NAME , session_start , STATEMENT , STATEMENT_START , CONTAINS_UNCOMMITTED from information_schema.sessions) 07:44:45.547 [parallel-2] INFO com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQuery - Thread[parallel-2,5,main] 07:44:45.547 [parallel-2] DEBUG org.springframework.jdbc.core.JdbcTemplate - Executing SQL query [select "@id" /* { "label": "id", "description": "ID", "visible": true } */ , USER_NAME /* { "label": "user", "description": "User name", "visible": true } */ , session_start /* { "label": "session start", "description": "Session start", "visible": true } */ , STATEMENT , STATEMENT_START , CONTAINS_UNCOMMITTED from (select ID as "@id" , USER_NAME , session_start , STATEMENT , STATEMENT_START , CONTAINS_UNCOMMITTED from information_schema.sessions) ] 07:44:45.547 [parallel-2] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource 07:44:45.675 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:45.676 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 55, missCount = 3] 07:44:45.676 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:45.676 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 56, missCount = 3] 07:44:45.677 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:45.677 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 57, missCount = 3] 07:44:45.677 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@1f8ea182 testClass = FsResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.FsResourceTypeTest@3431c21b, testMethod = read@FsResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:45.679 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@1f8ea182 testClass = FsResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.FsResourceTypeTest@5e0f75fd, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]]. 07:44:45.679 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:45.679 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 58, missCount = 3] 07:44:45.681 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@1f8ea182 testClass = FsResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.FsResourceTypeTest@5e0f75fd, testMethod = read@FsResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:45.681 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:45.681 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 59, missCount = 3] line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 9:7 no viable alternative at input '(' line 10:17 token recognition error at: '*\n' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 9:7 no viable alternative at input '(' line 10:17 token recognition error at: '*\n' 07:44:46.006 [main] INFO com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQuery - select "@schema" /* { "label": "schema", "description": "Schema", "visible": true } */ , CATALOG_NAME /* { "label": "catalog", "description": "Catalog" } */ , SCHEMA_OWNER /* { "label": "owner", "description": "Schema owner" } */ , DEFAULT_CHARACTER_SET_NAME /* { "label": "character set", "description": "DEFAULT CHARACTER SET NAME" } */ , DEFAULT_COLLATION_NAME /* { "label": "collation", "description": "DEFAULT COLLATION NAME" } */ , IS_DEFAULT /* { "label": "default", "description": "Is default" } */ , REMARKS /* { "label": "remarks", "description": "Remarks" } */ , ID /* { "label": "id", "description": "ID" } */ from (select s.SCHEMA_NAME as "@schema" , s.* from information_schema.SCHEMATA s) 07:44:46.007 [parallel-3] INFO com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQuery - Thread[parallel-3,5,main] 07:44:46.007 [parallel-3] DEBUG org.springframework.jdbc.core.JdbcTemplate - Executing SQL query [select "@schema" /* { "label": "schema", "description": "Schema", "visible": true } */ , CATALOG_NAME /* { "label": "catalog", "description": "Catalog" } */ , SCHEMA_OWNER /* { "label": "owner", "description": "Schema owner" } */ , DEFAULT_CHARACTER_SET_NAME /* { "label": "character set", "description": "DEFAULT CHARACTER SET NAME" } */ , DEFAULT_COLLATION_NAME /* { "label": "collation", "description": "DEFAULT COLLATION NAME" } */ , IS_DEFAULT /* { "label": "default", "description": "Is default" } */ , REMARKS /* { "label": "remarks", "description": "Remarks" } */ , ID /* { "label": "id", "description": "ID" } */ from (select s.SCHEMA_NAME as "@schema" , s.* from information_schema.SCHEMATA s)] 07:44:46.007 [parallel-3] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 9:7 no viable alternative at input '(' line 10:17 token recognition error at: '*\n' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 9:7 no viable alternative at input '(' line 10:17 token recognition error at: '*\n' 07:44:46.336 [main] INFO com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQuery - select "@schema" /* { "label": "schema", "description": "Schema", "visible": true } */ , CATALOG_NAME /* { "label": "catalog", "description": "Catalog" } */ , SCHEMA_OWNER /* { "label": "owner", "description": "Schema owner" } */ , DEFAULT_CHARACTER_SET_NAME /* { "label": "character set", "description": "DEFAULT CHARACTER SET NAME" } */ , DEFAULT_COLLATION_NAME /* { "label": "collation", "description": "DEFAULT COLLATION NAME" } */ , IS_DEFAULT /* { "label": "default", "description": "Is default" } */ , REMARKS /* { "label": "remarks", "description": "Remarks" } */ , ID /* { "label": "id", "description": "ID" } */ from (select s.SCHEMA_NAME as "@schema" , s.* from information_schema.SCHEMATA s) 07:44:46.337 [parallel-4] INFO com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQuery - Thread[parallel-4,5,main] 07:44:46.337 [parallel-4] DEBUG org.springframework.jdbc.core.JdbcTemplate - Executing SQL query [select "@schema" /* { "label": "schema", "description": "Schema", "visible": true } */ , CATALOG_NAME /* { "label": "catalog", "description": "Catalog" } */ , SCHEMA_OWNER /* { "label": "owner", "description": "Schema owner" } */ , DEFAULT_CHARACTER_SET_NAME /* { "label": "character set", "description": "DEFAULT CHARACTER SET NAME" } */ , DEFAULT_COLLATION_NAME /* { "label": "collation", "description": "DEFAULT COLLATION NAME" } */ , IS_DEFAULT /* { "label": "default", "description": "Is default" } */ , REMARKS /* { "label": "remarks", "description": "Remarks" } */ , ID /* { "label": "id", "description": "ID" } */ from (select s.SCHEMA_NAME as "@schema" , s.* from information_schema.SCHEMATA s) ] 07:44:46.337 [parallel-4] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource 07:44:46.446 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:46.446 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 60, missCount = 3] 07:44:46.446 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:46.446 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 61, missCount = 3] 07:44:46.447 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:46.447 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 62, missCount = 3] 07:44:46.448 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@1f8ea182 testClass = FsResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.FsResourceTypeTest@5e0f75fd, testMethod = read@FsResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:46.450 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@1f8ea182 testClass = FsResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.FsResourceTypeTest@582f9bee, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]]. 07:44:46.450 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:46.450 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 63, missCount = 3] 07:44:46.451 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@1f8ea182 testClass = FsResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.FsResourceTypeTest@582f9bee, testMethod = read@FsResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:46.451 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:46.451 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 64, missCount = 3] line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 9:7 no viable alternative at input '(' line 10:17 token recognition error at: '*\n' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 9:7 no viable alternative at input '(' line 10:17 token recognition error at: '*\n' 07:44:46.616 [main] INFO com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQuery - select "@schema" /* { "label": "schema", "description": "Schema", "visible": true } */ , CATALOG_NAME /* { "label": "catalog", "description": "Catalog" } */ , SCHEMA_OWNER /* { "label": "owner", "description": "Schema owner" } */ , DEFAULT_CHARACTER_SET_NAME /* { "label": "character set", "description": "DEFAULT CHARACTER SET NAME" } */ , DEFAULT_COLLATION_NAME /* { "label": "collation", "description": "DEFAULT COLLATION NAME" } */ , IS_DEFAULT /* { "label": "default", "description": "Is default" } */ , REMARKS /* { "label": "remarks", "description": "Remarks" } */ , ID /* { "label": "id", "description": "ID" } */ from (select s.SCHEMA_NAME as "@schema" , s.* from information_schema.SCHEMATA s) line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 7:7 no viable alternative at input '(' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 7:7 no viable alternative at input '(' 07:44:46.631 [main] INFO com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQuery - select "@id" /* { "label": "id", "description": "ID", "visible": true } */ , USER_NAME /* { "label": "user", "description": "User name", "visible": true } */ , session_start /* { "label": "session start", "description": "Session start", "visible": true } */ , STATEMENT , STATEMENT_START , CONTAINS_UNCOMMITTED from (select ID as "@id" , USER_NAME , session_start , STATEMENT , STATEMENT_START , CONTAINS_UNCOMMITTED from information_schema.sessions) 07:44:46.631 [parallel-5] INFO com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQuery - Thread[parallel-5,5,main] 07:44:46.631 [parallel-5] DEBUG org.springframework.jdbc.core.JdbcTemplate - Executing SQL query [select "@schema" /* { "label": "schema", "description": "Schema", "visible": true } */ , CATALOG_NAME /* { "label": "catalog", "description": "Catalog" } */ , SCHEMA_OWNER /* { "label": "owner", "description": "Schema owner" } */ , DEFAULT_CHARACTER_SET_NAME /* { "label": "character set", "description": "DEFAULT CHARACTER SET NAME" } */ , DEFAULT_COLLATION_NAME /* { "label": "collation", "description": "DEFAULT COLLATION NAME" } */ , IS_DEFAULT /* { "label": "default", "description": "Is default" } */ , REMARKS /* { "label": "remarks", "description": "Remarks" } */ , ID /* { "label": "id", "description": "ID" } */ from (select s.SCHEMA_NAME as "@schema" , s.* from information_schema.SCHEMATA s)] 07:44:46.631 [parallel-5] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource 07:44:46.631 [parallel-6] INFO com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQuery - Thread[parallel-6,5,main] 07:44:46.632 [parallel-6] DEBUG org.springframework.jdbc.core.JdbcTemplate - Executing SQL query [select "@id" /* { "label": "id", "description": "ID", "visible": true } */ , USER_NAME /* { "label": "user", "description": "User name", "visible": true } */ , session_start /* { "label": "session start", "description": "Session start", "visible": true } */ , STATEMENT , STATEMENT_START , CONTAINS_UNCOMMITTED from (select ID as "@id" , USER_NAME , session_start , STATEMENT , STATEMENT_START , CONTAINS_UNCOMMITTED from information_schema.sessions)] 07:44:46.632 [parallel-6] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 9:7 no viable alternative at input '(' line 10:17 token recognition error at: '*\n' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 9:7 no viable alternative at input '(' line 10:17 token recognition error at: '*\n' 07:44:46.874 [main] INFO com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQuery - select "@schema" /* { "label": "schema", "description": "Schema", "visible": true } */ , CATALOG_NAME /* { "label": "catalog", "description": "Catalog" } */ , SCHEMA_OWNER /* { "label": "owner", "description": "Schema owner" } */ , DEFAULT_CHARACTER_SET_NAME /* { "label": "character set", "description": "DEFAULT CHARACTER SET NAME" } */ , DEFAULT_COLLATION_NAME /* { "label": "collation", "description": "DEFAULT COLLATION NAME" } */ , IS_DEFAULT /* { "label": "default", "description": "Is default" } */ , REMARKS /* { "label": "remarks", "description": "Remarks" } */ , ID /* { "label": "id", "description": "ID" } */ from (select s.SCHEMA_NAME as "@schema" , s.* from information_schema.SCHEMATA s) line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 7:7 no viable alternative at input '(' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 7:7 no viable alternative at input '(' 07:44:46.884 [main] INFO com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQuery - select "@id" /* { "label": "id", "description": "ID", "visible": true } */ , USER_NAME /* { "label": "user", "description": "User name", "visible": true } */ , session_start /* { "label": "session start", "description": "Session start", "visible": true } */ , STATEMENT , STATEMENT_START , CONTAINS_UNCOMMITTED from (select ID as "@id" , USER_NAME , session_start , STATEMENT , STATEMENT_START , CONTAINS_UNCOMMITTED from information_schema.sessions) 07:44:46.885 [parallel-7] INFO com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQuery - Thread[parallel-7,5,main] 07:44:46.885 [parallel-7] DEBUG org.springframework.jdbc.core.JdbcTemplate - Executing SQL query [select "@schema" /* { "label": "schema", "description": "Schema", "visible": true } */ , CATALOG_NAME /* { "label": "catalog", "description": "Catalog" } */ , SCHEMA_OWNER /* { "label": "owner", "description": "Schema owner" } */ , DEFAULT_CHARACTER_SET_NAME /* { "label": "character set", "description": "DEFAULT CHARACTER SET NAME" } */ , DEFAULT_COLLATION_NAME /* { "label": "collation", "description": "DEFAULT COLLATION NAME" } */ , IS_DEFAULT /* { "label": "default", "description": "Is default" } */ , REMARKS /* { "label": "remarks", "description": "Remarks" } */ , ID /* { "label": "id", "description": "ID" } */ from (select s.SCHEMA_NAME as "@schema" , s.* from information_schema.SCHEMATA s) ] 07:44:46.885 [parallel-7] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource 07:44:46.885 [parallel-8] INFO com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQuery - Thread[parallel-8,5,main] 07:44:46.885 [parallel-8] DEBUG org.springframework.jdbc.core.JdbcTemplate - Executing SQL query [select "@id" /* { "label": "id", "description": "ID", "visible": true } */ , USER_NAME /* { "label": "user", "description": "User name", "visible": true } */ , session_start /* { "label": "session start", "description": "Session start", "visible": true } */ , STATEMENT , STATEMENT_START , CONTAINS_UNCOMMITTED from (select ID as "@id" , USER_NAME , session_start , STATEMENT , STATEMENT_START , CONTAINS_UNCOMMITTED from information_schema.sessions) ] 07:44:46.885 [parallel-8] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource 07:44:46.960 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:46.960 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 65, missCount = 3] 07:44:46.960 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:46.960 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 66, missCount = 3] 07:44:46.961 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:46.961 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 67, missCount = 3] 07:44:46.961 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@1f8ea182 testClass = FsResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.FsResourceTypeTest@582f9bee, testMethod = read@FsResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:46.963 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@1f8ea182 testClass = FsResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.FsResourceTypeTest@1750a91f, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]]. 07:44:46.963 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:46.963 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 68, missCount = 3] 07:44:46.964 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@1f8ea182 testClass = FsResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.FsResourceTypeTest@1750a91f, testMethod = read@FsResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:46.964 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:46.964 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 69, missCount = 3] line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' 07:44:47.136 [main] INFO com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQuery - select "@schema" /* { "label": "owner", "description": "Owner of the table", "visible": true } */ , "@table" /* { "label": "table name", "description": "Name of the table", "visible": true } */ , remarks properties , last_modification /* { "label": "last modification", "description": "Last modification" } */ , table_type /* { "label": "table type", "description": "Typical types", "visible": true, "values": ['TABLE', 'VIEW', 'SYSTEM TABLE', 'GLOBAL TEMPORARY', 'LOCAL TEMPORARY', 'ALIAS', 'SYNONYM'] } */ from (select t.table_schema as "@schema" , t.table_name as "@table" , t.* from information_schema.tables t where lower(t.table_schema) like lower('bookings') and lower(t.table_name) like lower('%')) order by "@schema", "@table" 07:44:47.137 [parallel-9] INFO com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQuery - Thread[parallel-9,5,main] 07:44:47.137 [parallel-9] DEBUG org.springframework.jdbc.core.JdbcTemplate - Executing SQL query [select "@schema" /* { "label": "owner", "description": "Owner of the table", "visible": true } */ , "@table" /* { "label": "table name", "description": "Name of the table", "visible": true } */ , remarks properties , last_modification /* { "label": "last modification", "description": "Last modification" } */ , table_type /* { "label": "table type", "description": "Typical types", "visible": true, "values": ['TABLE', 'VIEW', 'SYSTEM TABLE', 'GLOBAL TEMPORARY', 'LOCAL TEMPORARY', 'ALIAS', 'SYNONYM'] } */ from (select t.table_schema as "@schema" , t.table_name as "@table" , t.* from information_schema.tables t where lower(t.table_schema) like lower('bookings') and lower(t.table_name) like lower('%')) order by "@schema", "@table"] 07:44:47.137 [parallel-9] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' 07:44:47.391 [main] INFO com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQuery - select "@schema" /* { "label": "owner", "description": "Owner of the table", "visible": true } */ , "@table" /* { "label": "table name", "description": "Name of the table", "visible": true } */ , remarks properties , last_modification /* { "label": "last modification", "description": "Last modification" } */ , table_type /* { "label": "table type", "description": "Typical types", "visible": true, "values": ['TABLE', 'VIEW', 'SYSTEM TABLE', 'GLOBAL TEMPORARY', 'LOCAL TEMPORARY', 'ALIAS', 'SYNONYM'] } */ from (select t.table_schema as "@schema" , t.table_name as "@table" , t.* from information_schema.tables t where lower(t.table_schema) like lower('bookings') and lower(t.table_name) like lower('%')) order by "@schema", "@table" 07:44:47.392 [parallel-10] INFO com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQuery - Thread[parallel-10,5,main] 07:44:47.392 [parallel-10] DEBUG org.springframework.jdbc.core.JdbcTemplate - Executing SQL query [select "@schema" /* { "label": "owner", "description": "Owner of the table", "visible": true } */ , "@table" /* { "label": "table name", "description": "Name of the table", "visible": true } */ , remarks properties , last_modification /* { "label": "last modification", "description": "Last modification" } */ , table_type /* { "label": "table type", "description": "Typical types", "visible": true, "values": ['TABLE', 'VIEW', 'SYSTEM TABLE', 'GLOBAL TEMPORARY', 'LOCAL TEMPORARY', 'ALIAS', 'SYNONYM'] } */ from (select t.table_schema as "@schema" , t.table_name as "@table" , t.* from information_schema.tables t where lower(t.table_schema) like lower('bookings') and lower(t.table_name) like lower('%')) order by "@schema", "@table" ] 07:44:47.392 [parallel-10] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource 07:44:47.463 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:47.463 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 70, missCount = 3] 07:44:47.464 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:47.464 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 71, missCount = 3] 07:44:47.464 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:47.465 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 72, missCount = 3] 07:44:47.465 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@1f8ea182 testClass = FsResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.FsResourceTypeTest@1750a91f, testMethod = read@FsResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:47.467 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@1f8ea182 testClass = FsResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.FsResourceTypeTest@55a69984, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]]. 07:44:47.467 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:47.467 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 73, missCount = 3] 07:44:47.468 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@1f8ea182 testClass = FsResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.FsResourceTypeTest@55a69984, testMethod = read@FsResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:47.468 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:47.468 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 74, missCount = 3] line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' 07:44:47.643 [main] INFO com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQuery - select "@schema" /* { "label": "owner", "description": "Owner of the table", "visible": true } */ , "@table" /* { "label": "table name", "description": "Name of the table", "visible": true } */ , remarks properties , last_modification /* { "label": "last modification", "description": "Last modification" } */ , table_type /* { "label": "table type", "description": "Typical types", "visible": true, "values": ['TABLE', 'VIEW', 'SYSTEM TABLE', 'GLOBAL TEMPORARY', 'LOCAL TEMPORARY', 'ALIAS', 'SYNONYM'] } */ from (select t.table_schema as "@schema" , t.table_name as "@table" , t.* from information_schema.tables t where lower(t.table_schema) like lower('bookings') and lower(t.table_name) like lower('%')) order by "@schema", "@table" 07:44:47.644 [parallel-11] INFO com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQuery - Thread[parallel-11,5,main] 07:44:47.644 [parallel-11] DEBUG org.springframework.jdbc.core.JdbcTemplate - Executing SQL query [select "@schema" /* { "label": "owner", "description": "Owner of the table", "visible": true } */ , "@table" /* { "label": "table name", "description": "Name of the table", "visible": true } */ , remarks properties , last_modification /* { "label": "last modification", "description": "Last modification" } */ , table_type /* { "label": "table type", "description": "Typical types", "visible": true, "values": ['TABLE', 'VIEW', 'SYSTEM TABLE', 'GLOBAL TEMPORARY', 'LOCAL TEMPORARY', 'ALIAS', 'SYNONYM'] } */ from (select t.table_schema as "@schema" , t.table_name as "@table" , t.* from information_schema.tables t where lower(t.table_schema) like lower('bookings') and lower(t.table_name) like lower('%')) order by "@schema", "@table"] 07:44:47.644 [parallel-11] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' 07:44:47.884 [main] INFO com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQuery - select "@schema" /* { "label": "owner", "description": "Owner of the table", "visible": true } */ , "@table" /* { "label": "table name", "description": "Name of the table", "visible": true } */ , remarks properties , last_modification /* { "label": "last modification", "description": "Last modification" } */ , table_type /* { "label": "table type", "description": "Typical types", "visible": true, "values": ['TABLE', 'VIEW', 'SYSTEM TABLE', 'GLOBAL TEMPORARY', 'LOCAL TEMPORARY', 'ALIAS', 'SYNONYM'] } */ from (select t.table_schema as "@schema" , t.table_name as "@table" , t.* from information_schema.tables t where lower(t.table_schema) like lower('bookings') and lower(t.table_name) like lower('%')) order by "@schema", "@table" 07:44:47.884 [parallel-12] INFO com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQuery - Thread[parallel-12,5,main] 07:44:47.884 [parallel-12] DEBUG org.springframework.jdbc.core.JdbcTemplate - Executing SQL query [select "@schema" /* { "label": "owner", "description": "Owner of the table", "visible": true } */ , "@table" /* { "label": "table name", "description": "Name of the table", "visible": true } */ , remarks properties , last_modification /* { "label": "last modification", "description": "Last modification" } */ , table_type /* { "label": "table type", "description": "Typical types", "visible": true, "values": ['TABLE', 'VIEW', 'SYSTEM TABLE', 'GLOBAL TEMPORARY', 'LOCAL TEMPORARY', 'ALIAS', 'SYNONYM'] } */ from (select t.table_schema as "@schema" , t.table_name as "@table" , t.* from information_schema.tables t where lower(t.table_schema) like lower('bookings') and lower(t.table_name) like lower('%')) order by "@schema", "@table" ] 07:44:47.884 [parallel-12] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource 07:44:47.945 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:47.945 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 75, missCount = 3] 07:44:47.945 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:47.946 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 76, missCount = 3] 07:44:47.946 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:47.947 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 77, missCount = 3] 07:44:47.947 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@1f8ea182 testClass = FsResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.FsResourceTypeTest@55a69984, testMethod = read@FsResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:47.948 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@1f8ea182 testClass = FsResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.FsResourceTypeTest@6036726f, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]]. 07:44:47.949 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:47.949 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 78, missCount = 3] 07:44:47.950 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@1f8ea182 testClass = FsResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.FsResourceTypeTest@6036726f, testMethod = read@FsResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:47.950 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:47.950 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 79, missCount = 3] line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' 07:44:48.161 [main] INFO com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQuery - select "@schema" /* { "label": "owner", "description": "Owner of the table", "visible": true } */ , "@table" /* { "label": "table name", "description": "Name of the table", "visible": true } */ , remarks properties , last_modification /* { "label": "last modification", "description": "Last modification" } */ , table_type /* { "label": "table type", "description": "Typical types", "visible": true, "values": ['TABLE', 'VIEW', 'SYSTEM TABLE', 'GLOBAL TEMPORARY', 'LOCAL TEMPORARY', 'ALIAS', 'SYNONYM'] } */ from (select t.table_schema as "@schema" , t.table_name as "@table" , t.* from information_schema.tables t where lower(t.table_schema) like lower('bookings') and lower(t.table_name) like lower('airports')) order by "@schema", "@table" 07:44:48.163 [parallel-1] INFO com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQuery - Thread[parallel-1,5,main] 07:44:48.165 [parallel-1] DEBUG org.springframework.jdbc.core.JdbcTemplate - Executing SQL query [select "@schema" /* { "label": "owner", "description": "Owner of the table", "visible": true } */ , "@table" /* { "label": "table name", "description": "Name of the table", "visible": true } */ , remarks properties , last_modification /* { "label": "last modification", "description": "Last modification" } */ , table_type /* { "label": "table type", "description": "Typical types", "visible": true, "values": ['TABLE', 'VIEW', 'SYSTEM TABLE', 'GLOBAL TEMPORARY', 'LOCAL TEMPORARY', 'ALIAS', 'SYNONYM'] } */ from (select t.table_schema as "@schema" , t.table_name as "@table" , t.* from information_schema.tables t where lower(t.table_schema) like lower('bookings') and lower(t.table_name) like lower('airports')) order by "@schema", "@table"] 07:44:48.166 [parallel-1] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' 07:44:48.399 [main] INFO com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQuery - select "@schema" /* { "label": "owner", "description": "Owner of the table", "visible": true } */ , "@table" /* { "label": "table name", "description": "Name of the table", "visible": true } */ , remarks properties , last_modification /* { "label": "last modification", "description": "Last modification" } */ , table_type /* { "label": "table type", "description": "Typical types", "visible": true, "values": ['TABLE', 'VIEW', 'SYSTEM TABLE', 'GLOBAL TEMPORARY', 'LOCAL TEMPORARY', 'ALIAS', 'SYNONYM'] } */ from (select t.table_schema as "@schema" , t.table_name as "@table" , t.* from information_schema.tables t where lower(t.table_schema) like lower('bookings') and lower(t.table_name) like lower('airports')) order by "@schema", "@table" 07:44:48.399 [parallel-2] INFO com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQuery - Thread[parallel-2,5,main] 07:44:48.399 [parallel-2] DEBUG org.springframework.jdbc.core.JdbcTemplate - Executing SQL query [select "@schema" /* { "label": "owner", "description": "Owner of the table", "visible": true } */ , "@table" /* { "label": "table name", "description": "Name of the table", "visible": true } */ , remarks properties , last_modification /* { "label": "last modification", "description": "Last modification" } */ , table_type /* { "label": "table type", "description": "Typical types", "visible": true, "values": ['TABLE', 'VIEW', 'SYSTEM TABLE', 'GLOBAL TEMPORARY', 'LOCAL TEMPORARY', 'ALIAS', 'SYNONYM'] } */ from (select t.table_schema as "@schema" , t.table_name as "@table" , t.* from information_schema.tables t where lower(t.table_schema) like lower('bookings') and lower(t.table_name) like lower('airports')) order by "@schema", "@table" ] 07:44:48.399 [parallel-2] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource 07:44:48.463 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:48.464 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 80, missCount = 3] 07:44:48.464 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:48.464 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 81, missCount = 3] 07:44:48.465 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:48.465 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 82, missCount = 3] 07:44:48.465 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@1f8ea182 testClass = FsResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.FsResourceTypeTest@6036726f, testMethod = read@FsResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:48.467 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@1f8ea182 testClass = FsResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.FsResourceTypeTest@7cc21859, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]]. 07:44:48.467 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:48.467 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 83, missCount = 3] 07:44:48.468 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@1f8ea182 testClass = FsResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.FsResourceTypeTest@7cc21859, testMethod = resourceTypes@FsResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:48.468 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:48.469 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 84, missCount = 3] 07:44:48.646 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:48.646 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 85, missCount = 3] 07:44:48.647 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:48.647 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 86, missCount = 3] 07:44:48.648 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:48.648 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 87, missCount = 3] 07:44:48.648 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@1f8ea182 testClass = FsResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.FsResourceTypeTest@7cc21859, testMethod = resourceTypes@FsResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:48.649 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test class: context [DefaultTestContext@1f8ea182 testClass = FsResourceTypeTest, testInstance = [null], testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@4af71db testClass = FsResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null]. [INFO] Tests run: 13, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 6.824 s - in com.github.mgramin.sqlboot.model.resourcetype.impl.FsResourceTypeTest [INFO] Running com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest 07:44:48.651 [main] DEBUG org.springframework.test.context.BootstrapUtils - Instantiating CacheAwareContextLoaderDelegate from class [org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate] 07:44:48.651 [main] DEBUG org.springframework.test.context.BootstrapUtils - Instantiating BootstrapContext using constructor [public org.springframework.test.context.support.DefaultBootstrapContext(java.lang.Class,org.springframework.test.context.CacheAwareContextLoaderDelegate)] 07:44:48.651 [main] DEBUG org.springframework.test.context.BootstrapUtils - Instantiating TestContextBootstrapper for test class [com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest] from class [org.springframework.test.context.support.DefaultTestContextBootstrapper] 07:44:48.652 [main] DEBUG org.springframework.test.context.support.AbstractDelegatingSmartContextLoader - Delegating to GenericGroovyXmlContextLoader to process context configuration [ContextConfigurationAttributes@5b2f9383 declaringClass = 'com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest', classes = '{}', locations = '{/test_config.xml}', inheritLocations = true, initializers = '{}', inheritInitializers = true, name = [null], contextLoaderClass = 'org.springframework.test.context.ContextLoader']. 07:44:48.654 [main] DEBUG org.springframework.test.context.support.ActiveProfilesUtils - Could not find an 'annotation declaring class' for annotation type [org.springframework.test.context.ActiveProfiles] and class [com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest] 07:44:48.654 [main] DEBUG org.springframework.test.context.support.DefaultTestContextBootstrapper - @TestExecutionListeners is not present for class [com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest]: using defaults. 07:44:48.654 [main] INFO org.springframework.test.context.support.DefaultTestContextBootstrapper - Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 07:44:48.655 [main] INFO org.springframework.test.context.support.DefaultTestContextBootstrapper - Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@4b3516f, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@190226ad, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@3e961d85, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@10b72498, org.springframework.test.context.support.DirtiesContextTestExecutionListener@e9137c8, org.springframework.test.context.transaction.TransactionalTestExecutionListener@6ae4ff9, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@85a009c, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@216066eb, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@26c83a78, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@526d78df, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@a6bdcee, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@281ea476] 07:44:48.655 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test class: context [DefaultTestContext@4fe250f7 testClass = SqlResourceTypeTest, testInstance = [null], testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null]. 07:44:48.656 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@4fe250f7 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@22a84cc8, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]]. 07:44:48.656 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:48.656 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 88, missCount = 3] 07:44:48.659 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@4fe250f7 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@22a84cc8, testMethod = aliases@SqlResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:48.660 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:48.660 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 89, missCount = 3] 07:44:48.672 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:48.672 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 90, missCount = 3] 07:44:48.672 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:48.672 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 91, missCount = 3] 07:44:48.673 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:48.673 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 92, missCount = 3] 07:44:48.674 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@4fe250f7 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@22a84cc8, testMethod = aliases@SqlResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:48.674 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@4fe250f7 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@7720f4b7, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]]. 07:44:48.675 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:48.675 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 93, missCount = 3] 07:44:48.676 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@4fe250f7 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@7720f4b7, testMethod = toJson@SqlResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:48.676 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:48.676 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 94, missCount = 3] line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' 07:44:48.703 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:48.703 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 95, missCount = 3] 07:44:48.703 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:48.703 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 96, missCount = 3] 07:44:48.704 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:48.704 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 97, missCount = 3] 07:44:48.704 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@4fe250f7 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@7720f4b7, testMethod = toJson@SqlResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:48.705 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@4fe250f7 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@46b5e220, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]]. 07:44:48.705 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:48.705 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 98, missCount = 3] 07:44:48.706 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@4fe250f7 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@46b5e220, testMethod = metaData@SqlResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:48.707 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:48.707 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 99, missCount = 3] line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' 07:44:48.718 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:48.718 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 100, missCount = 3] 07:44:48.719 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:48.719 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 101, missCount = 3] 07:44:48.719 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:48.719 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 102, missCount = 3] 07:44:48.719 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@4fe250f7 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@46b5e220, testMethod = metaData@SqlResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:48.720 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@4fe250f7 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@74f8e77f, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]]. 07:44:48.720 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:48.720 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 103, missCount = 3] 07:44:48.721 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@4fe250f7 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@74f8e77f, testMethod = name@SqlResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:48.721 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:48.721 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 104, missCount = 3] 07:44:48.729 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:48.729 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 105, missCount = 3] 07:44:48.729 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:48.729 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 106, missCount = 3] 07:44:48.729 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:48.729 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 107, missCount = 3] 07:44:48.730 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@4fe250f7 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@74f8e77f, testMethod = name@SqlResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:48.730 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@4fe250f7 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@5a77a18e, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]]. 07:44:48.730 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:48.730 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 108, missCount = 3] 07:44:48.731 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@4fe250f7 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@5a77a18e, testMethod = path@SqlResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:48.731 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:48.731 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 109, missCount = 3] line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' 07:44:48.740 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:48.740 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 110, missCount = 3] 07:44:48.740 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:48.740 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 111, missCount = 3] 07:44:48.741 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:48.741 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 112, missCount = 3] 07:44:48.741 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@4fe250f7 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@5a77a18e, testMethod = path@SqlResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:48.742 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@4fe250f7 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@7fce382e, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]]. 07:44:48.742 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:48.742 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 113, missCount = 3] 07:44:48.743 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@4fe250f7 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@7fce382e, testMethod = read@SqlResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:48.743 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:48.743 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 114, missCount = 3] line 1:7 token recognition error at: '*\n' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 1:7 token recognition error at: '*\n' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' 07:44:48.767 [main] INFO com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQuery - select * from (select table_schema as "@schema" , table_name as "@table" from information_schema.tables) 07:44:48.768 [parallel-3] INFO com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQuery - Thread[parallel-3,5,main] 07:44:48.768 [parallel-3] DEBUG org.springframework.jdbc.core.JdbcTemplate - Executing SQL query [select * from (select table_schema as "@schema" , table_name as "@table" from information_schema.tables)] 07:44:48.768 [parallel-3] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource 07:44:48.835 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:48.835 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 115, missCount = 3] 07:44:48.835 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:48.835 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 116, missCount = 3] 07:44:48.836 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:48.836 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 117, missCount = 3] 07:44:48.836 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@4fe250f7 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@7fce382e, testMethod = read@SqlResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:48.837 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@4fe250f7 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@70cac333, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]]. 07:44:48.837 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:48.837 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 118, missCount = 3] 07:44:48.839 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@4fe250f7 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@70cac333, testMethod = path2@SqlResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:48.839 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:48.839 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 119, missCount = 3] line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' 07:44:48.851 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:48.851 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 120, missCount = 3] 07:44:48.851 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:48.851 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 121, missCount = 3] 07:44:48.852 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:48.852 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 122, missCount = 3] 07:44:48.853 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@4fe250f7 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@70cac333, testMethod = path2@SqlResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:48.853 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@4fe250f7 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@3d564bce, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]]. 07:44:48.854 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:48.854 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 123, missCount = 3] 07:44:48.854 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@4fe250f7 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@3d564bce, testMethod = read2@SqlResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:48.855 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:48.855 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 124, missCount = 3] line 1:7 token recognition error at: '*\n' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 1:7 token recognition error at: '*\n' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' 07:44:48.889 [main] INFO com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQuery - select * from (select table_schema as "@schema" , table_name as "@table" , column_name as "@column" from information_schema.columns) 07:44:48.890 [parallel-4] INFO com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQuery - Thread[parallel-4,5,main] 07:44:48.890 [parallel-4] DEBUG org.springframework.jdbc.core.JdbcTemplate - Executing SQL query [select * from (select table_schema as "@schema" , table_name as "@table" , column_name as "@column" from information_schema.columns)] 07:44:48.890 [parallel-4] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource 07:44:49.006 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:49.006 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 125, missCount = 3] 07:44:49.006 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:49.006 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 126, missCount = 3] 07:44:49.007 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:49.007 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 127, missCount = 3] 07:44:49.007 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@4fe250f7 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@3d564bce, testMethod = read2@SqlResourceTypeTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:49.008 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@4fe250f7 testClass = SqlResourceTypeTest, testInstance = com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest@13a41505, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]]. 07:44:49.008 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:49.008 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 128, missCount = 3] 07:44:49.010 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test class: context [DefaultTestContext@4fe250f7 testClass = SqlResourceTypeTest, testInstance = [null], testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@76f07254 testClass = SqlResourceTypeTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null]. [WARNING] Tests run: 9, Failures: 0, Errors: 0, Skipped: 1, Time elapsed: 0.355 s - in com.github.mgramin.sqlboot.model.resourcetype.impl.SqlResourceTypeTest [INFO] Running com.github.mgramin.sqlboot.model.resourcetype.wrappers.ResourceTypeWrapperTest May 20, 2019 7:44:49 AM com.hazelcast.config.XmlConfigLocator INFO: Loading 'hazelcast-default.xml' from classpath. May 20, 2019 7:44:49 AM com.hazelcast.instance.AddressPicker INFO: [LOCAL] [dev] [3.11.1] Prefer IPv4 stack is true, prefer IPv6 addresses is false May 20, 2019 7:44:49 AM com.hazelcast.instance.AddressPicker INFO: [LOCAL] [dev] [3.11.1] Picked [172.17.0.5]:5701, using socket ServerSocket[addr=/0.0.0.0,localport=5701], bind any local is true May 20, 2019 7:44:49 AM com.hazelcast.system INFO: [172.17.0.5]:5701 [dev] [3.11.1] Hazelcast 3.11.1 (20181218 - d294f31) starting at [172.17.0.5]:5701 May 20, 2019 7:44:49 AM com.hazelcast.system INFO: [172.17.0.5]:5701 [dev] [3.11.1] Copyright (c) 2008-2018, Hazelcast, Inc. All Rights Reserved. May 20, 2019 7:44:49 AM com.hazelcast.instance.Node INFO: [172.17.0.5]:5701 [dev] [3.11.1] A non-empty group password is configured for the Hazelcast member. Starting with Hazelcast version 3.8.2, members with the same group name, but with different group passwords (that do not use authentication) form a cluster. The group password configuration will be removed completely in a future release. May 20, 2019 7:44:50 AM com.hazelcast.spi.impl.operationservice.impl.BackpressureRegulator INFO: [172.17.0.5]:5701 [dev] [3.11.1] Backpressure is disabled May 20, 2019 7:44:51 AM com.hazelcast.instance.Node INFO: [172.17.0.5]:5701 [dev] [3.11.1] Creating MulticastJoiner May 20, 2019 7:44:51 AM com.hazelcast.spi.impl.operationexecutor.impl.OperationExecutorImpl INFO: [172.17.0.5]:5701 [dev] [3.11.1] Starting 12 partition threads and 7 generic threads (1 dedicated for priority tasks) May 20, 2019 7:44:52 AM com.hazelcast.internal.diagnostics.Diagnostics INFO: [172.17.0.5]:5701 [dev] [3.11.1] Diagnostics disabled. To enable add -Dhazelcast.diagnostics.enabled=true to the JVM arguments. May 20, 2019 7:44:52 AM com.hazelcast.core.LifecycleService INFO: [172.17.0.5]:5701 [dev] [3.11.1] [172.17.0.5]:5701 is STARTING May 20, 2019 7:44:54 AM com.hazelcast.internal.cluster.ClusterService INFO: [172.17.0.5]:5701 [dev] [3.11.1] Members {size:1, ver:1} [ Member [172.17.0.5]:5701 - faec752a-f809-44e5-bd8f-df3e8716776b this ] May 20, 2019 7:44:54 AM com.hazelcast.core.LifecycleService INFO: [172.17.0.5]:5701 [dev] [3.11.1] [172.17.0.5]:5701 is STARTED May 20, 2019 7:44:54 AM com.hazelcast.internal.partition.impl.PartitionStateManager INFO: [172.17.0.5]:5701 [dev] [3.11.1] Initializing cluster partition table arrangement... May 20, 2019 7:44:54 AM com.hazelcast.cache.impl.CacheService INFO: [172.17.0.5]:5701 [dev] [3.11.1] Added cache config: CacheConfig{name='simpleCache', managerPrefix='/hz/', inMemoryFormat=BINARY, backupCount=1, hotRestart=HotRestartConfig{enabled=false, fsync=false}, wanReplicationRef=null} {schema=hr, table=persons, file=table.hr.persons.sql, size=100} {schema=hr, table=persons, file=table.hr.persons.sql, size=100} {schema=hr, table=persons, file=table.hr.persons.sql, size=100} [INFO] Tests run: 65, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 5.825 s - in com.github.mgramin.sqlboot.model.resourcetype.wrappers.ResourceTypeWrapperTest [INFO] Running com.github.mgramin.sqlboot.model.resourcetype.MetadataTest [INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 s - in com.github.mgramin.sqlboot.model.resourcetype.MetadataTest [INFO] Running com.github.mgramin.sqlboot.model.uri.DbUriTest [INFO] Tests run: 23, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.019 s - in com.github.mgramin.sqlboot.model.uri.DbUriTest [INFO] Running com.github.mgramin.sqlboot.model.uri.wrappers.SqlPlaceholdersWrapperTest [INFO] Tests run: 4, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.005 s - in com.github.mgramin.sqlboot.model.uri.wrappers.SqlPlaceholdersWrapperTest [INFO] Running com.github.mgramin.sqlboot.model.uri.wrappers.JsonWrapperTest [INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.002 s - in com.github.mgramin.sqlboot.model.uri.wrappers.JsonWrapperTest [INFO] Running com.github.mgramin.sqlboot.tools.files.file.impl.MarkdownFileTest [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 s - in com.github.mgramin.sqlboot.tools.files.file.impl.MarkdownFileTest [INFO] Running com.github.mgramin.sqlboot.tools.files.file.impl.SimpleFileTest [INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 s - in com.github.mgramin.sqlboot.tools.files.file.impl.SimpleFileTest [INFO] Running com.github.mgramin.sqlboot.tools.files.file.wrappers.ZippedFileTest [INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.003 s - in com.github.mgramin.sqlboot.tools.files.file.wrappers.ZippedFileTest [INFO] Running com.github.mgramin.sqlboot.template.generator.impl.FakeTemplateGeneratorTest [INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0 s - in com.github.mgramin.sqlboot.template.generator.impl.FakeTemplateGeneratorTest [INFO] Running com.github.mgramin.sqlboot.template.generator.impl.GroovyTemplateGeneratorTest [INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.023 s - in com.github.mgramin.sqlboot.template.generator.impl.GroovyTemplateGeneratorTest [INFO] Running com.github.mgramin.sqlboot.sql.select.impl.SimpleSelectQueryTest line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' [INFO] Tests run: 5, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.005 s - in com.github.mgramin.sqlboot.sql.select.impl.SimpleSelectQueryTest [INFO] Running com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQueryTest 07:44:54.959 [main] DEBUG org.springframework.test.context.BootstrapUtils - Instantiating CacheAwareContextLoaderDelegate from class [org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate] 07:44:54.959 [main] DEBUG org.springframework.test.context.BootstrapUtils - Instantiating BootstrapContext using constructor [public org.springframework.test.context.support.DefaultBootstrapContext(java.lang.Class,org.springframework.test.context.CacheAwareContextLoaderDelegate)] 07:44:54.959 [main] DEBUG org.springframework.test.context.BootstrapUtils - Instantiating TestContextBootstrapper for test class [com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQueryTest] from class [org.springframework.test.context.support.DefaultTestContextBootstrapper] 07:44:54.960 [main] DEBUG org.springframework.test.context.support.AbstractDelegatingSmartContextLoader - Delegating to GenericGroovyXmlContextLoader to process context configuration [ContextConfigurationAttributes@20e108ea declaringClass = 'com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQueryTest', classes = '{}', locations = '{/test_config.xml}', inheritLocations = true, initializers = '{}', inheritInitializers = true, name = [null], contextLoaderClass = 'org.springframework.test.context.ContextLoader']. 07:44:54.961 [main] DEBUG org.springframework.test.context.support.ActiveProfilesUtils - Could not find an 'annotation declaring class' for annotation type [org.springframework.test.context.ActiveProfiles] and class [com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQueryTest] 07:44:54.961 [main] DEBUG org.springframework.test.context.support.DefaultTestContextBootstrapper - @TestExecutionListeners is not present for class [com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQueryTest]: using defaults. 07:44:54.961 [main] INFO org.springframework.test.context.support.DefaultTestContextBootstrapper - Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 07:44:54.961 [main] INFO org.springframework.test.context.support.DefaultTestContextBootstrapper - Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@2300b6c8, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@928a7de, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@27321b97, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@f3ce1c3, org.springframework.test.context.support.DirtiesContextTestExecutionListener@29acb01a, org.springframework.test.context.transaction.TransactionalTestExecutionListener@6576e4a6, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@522fa53c, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@3a757443, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@76952f77, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@2414a6d7, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@bbdf12c, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@1a7b4b74] 07:44:54.962 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test class: context [DefaultTestContext@454a31db testClass = JdbcSelectQueryTest, testInstance = [null], testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@446915bb testClass = JdbcSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null]. 07:44:54.962 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@454a31db testClass = JdbcSelectQueryTest, testInstance = com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQueryTest@20b9a88b, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@446915bb testClass = JdbcSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]]. 07:44:54.962 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@446915bb testClass = JdbcSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:54.962 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 129, missCount = 3] 07:44:54.966 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@454a31db testClass = JdbcSelectQueryTest, testInstance = com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQueryTest@20b9a88b, testMethod = execute@JdbcSelectQueryTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@446915bb testClass = JdbcSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:54.966 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@446915bb testClass = JdbcSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:54.967 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 130, missCount = 3] 07:44:54.982 [main] INFO com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQuery - select n /* First name */ , mail /* Personal email */ from (select name as n , email as mail from main_schema.users) 07:44:54.983 [parallel-5] INFO com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQuery - Thread[parallel-5,5,main] 07:44:54.983 [parallel-5] DEBUG org.springframework.jdbc.core.JdbcTemplate - Executing SQL query [select n /* First name */ , mail /* Personal email */ from (select name as n , email as mail from main_schema.users)] 07:44:54.983 [parallel-5] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource 07:44:54.983 [parallel-5] DEBUG org.springframework.jdbc.datasource.SimpleDriverDataSource - Creating new JDBC Driver Connection to [jdbc:h2:mem:dataSource;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=false] 07:44:54.992 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@446915bb testClass = JdbcSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:54.993 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 131, missCount = 3] 07:44:54.993 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@446915bb testClass = JdbcSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:54.993 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 132, missCount = 3] 07:44:54.994 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@446915bb testClass = JdbcSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:54.994 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 133, missCount = 3] 07:44:54.995 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@454a31db testClass = JdbcSelectQueryTest, testInstance = com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQueryTest@20b9a88b, testMethod = execute@JdbcSelectQueryTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@446915bb testClass = JdbcSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:54.995 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@454a31db testClass = JdbcSelectQueryTest, testInstance = com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQueryTest@26c796fe, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@446915bb testClass = JdbcSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]]. 07:44:54.996 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@446915bb testClass = JdbcSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:54.996 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 134, missCount = 3] 07:44:54.997 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@454a31db testClass = JdbcSelectQueryTest, testInstance = com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQueryTest@26c796fe, testMethod = query@JdbcSelectQueryTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@446915bb testClass = JdbcSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:54.997 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@446915bb testClass = JdbcSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:54.998 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 135, missCount = 3] 07:44:54.999 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@446915bb testClass = JdbcSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:54.999 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 136, missCount = 3] 07:44:55.000 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@446915bb testClass = JdbcSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:55.000 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 137, missCount = 3] 07:44:55.001 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@446915bb testClass = JdbcSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:55.001 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 138, missCount = 3] 07:44:55.001 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@454a31db testClass = JdbcSelectQueryTest, testInstance = com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQueryTest@26c796fe, testMethod = query@JdbcSelectQueryTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@446915bb testClass = JdbcSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:55.002 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@454a31db testClass = JdbcSelectQueryTest, testInstance = com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQueryTest@575bb55, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@446915bb testClass = JdbcSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]]. 07:44:55.002 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@446915bb testClass = JdbcSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:55.002 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 139, missCount = 3] 07:44:55.004 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@454a31db testClass = JdbcSelectQueryTest, testInstance = com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQueryTest@575bb55, testMethod = columns@JdbcSelectQueryTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@446915bb testClass = JdbcSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:55.004 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@446915bb testClass = JdbcSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:55.004 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 140, missCount = 3] 07:44:55.005 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@446915bb testClass = JdbcSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:55.005 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 141, missCount = 3] 07:44:55.006 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@446915bb testClass = JdbcSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:55.006 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 142, missCount = 3] 07:44:55.006 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@446915bb testClass = JdbcSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:55.007 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 143, missCount = 3] 07:44:55.007 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@454a31db testClass = JdbcSelectQueryTest, testInstance = com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQueryTest@575bb55, testMethod = columns@JdbcSelectQueryTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@446915bb testClass = JdbcSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:55.007 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test class: context [DefaultTestContext@454a31db testClass = JdbcSelectQueryTest, testInstance = [null], testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@446915bb testClass = JdbcSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null]. [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.047 s - in com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQueryTest [INFO] Running com.github.mgramin.sqlboot.sql.select.wrappers.PaginatedSelectQueryTest select n /* First name */ , mail /* Personal email */ from (select name as n , email as mail from main_schema.users) offset 0 limit 1 select n /* First name */ , mail /* Personal email */ from (select name as n , email as mail from main_schema.users) offset 0 limit 2 select n /* First name */ , mail /* Personal email */ from (select name as n , email as mail from main_schema.users) offset 0 limit 3 select n /* First name */ , mail /* Personal email */ from (select name as n , email as mail from main_schema.users) offset 1 limit 1 select n /* First name */ , mail /* Personal email */ from (select name as n , email as mail from main_schema.users) offset 2 limit 2 select n /* First name */ , mail /* Personal email */ from (select name as n , email as mail from main_schema.users) offset 2 limit 1 select n /* First name */ , mail /* Personal email */ from (select name as n , email as mail from main_schema.users) offset 3 limit 1 select n /* First name */ , mail /* Personal email */ from (select name as n , email as mail from main_schema.users) offset 0 limit 100 [INFO] Tests run: 10, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.243 s - in com.github.mgramin.sqlboot.sql.select.wrappers.PaginatedSelectQueryTest [INFO] Running com.github.mgramin.sqlboot.sql.select.wrappers.OrderedSelectQueryTest 07:44:55.254 [main] DEBUG org.springframework.test.context.BootstrapUtils - Instantiating CacheAwareContextLoaderDelegate from class [org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate] 07:44:55.254 [main] DEBUG org.springframework.test.context.BootstrapUtils - Instantiating BootstrapContext using constructor [public org.springframework.test.context.support.DefaultBootstrapContext(java.lang.Class,org.springframework.test.context.CacheAwareContextLoaderDelegate)] 07:44:55.254 [main] DEBUG org.springframework.test.context.BootstrapUtils - Instantiating TestContextBootstrapper for test class [com.github.mgramin.sqlboot.sql.select.wrappers.OrderedSelectQueryTest] from class [org.springframework.test.context.support.DefaultTestContextBootstrapper] 07:44:55.255 [main] DEBUG org.springframework.test.context.support.AbstractDelegatingSmartContextLoader - Delegating to GenericGroovyXmlContextLoader to process context configuration [ContextConfigurationAttributes@51cdfe81 declaringClass = 'com.github.mgramin.sqlboot.sql.select.wrappers.OrderedSelectQueryTest', classes = '{}', locations = '{/test_config.xml}', inheritLocations = true, initializers = '{}', inheritInitializers = true, name = [null], contextLoaderClass = 'org.springframework.test.context.ContextLoader']. 07:44:55.257 [main] DEBUG org.springframework.test.context.support.ActiveProfilesUtils - Could not find an 'annotation declaring class' for annotation type [org.springframework.test.context.ActiveProfiles] and class [com.github.mgramin.sqlboot.sql.select.wrappers.OrderedSelectQueryTest] 07:44:55.257 [main] DEBUG org.springframework.test.context.support.DefaultTestContextBootstrapper - @TestExecutionListeners is not present for class [com.github.mgramin.sqlboot.sql.select.wrappers.OrderedSelectQueryTest]: using defaults. 07:44:55.257 [main] INFO org.springframework.test.context.support.DefaultTestContextBootstrapper - Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 07:44:55.257 [main] INFO org.springframework.test.context.support.DefaultTestContextBootstrapper - Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@39722cec, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@45aec762, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@61767737, org.springframework.test.context.support.DependencyInjectionTestExecutionListener@5f71a46e, org.springframework.test.context.support.DirtiesContextTestExecutionListener@774ce620, org.springframework.test.context.transaction.TransactionalTestExecutionListener@44eaba7c, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@1677a219, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@4477366d, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@549ab525, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@4532dc90, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@6e7ec945, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@13c74eb9] 07:44:55.258 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test class: context [DefaultTestContext@1275f279 testClass = OrderedSelectQueryTest, testInstance = [null], testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@41f07afb testClass = OrderedSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null]. 07:44:55.258 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@1275f279 testClass = OrderedSelectQueryTest, testInstance = com.github.mgramin.sqlboot.sql.select.wrappers.OrderedSelectQueryTest@59dca761, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@41f07afb testClass = OrderedSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]]. 07:44:55.258 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@41f07afb testClass = OrderedSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:55.258 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 144, missCount = 3] 07:44:55.262 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@1275f279 testClass = OrderedSelectQueryTest, testInstance = com.github.mgramin.sqlboot.sql.select.wrappers.OrderedSelectQueryTest@59dca761, testMethod = execute@OrderedSelectQueryTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@41f07afb testClass = OrderedSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:55.262 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@41f07afb testClass = OrderedSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:55.262 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 145, missCount = 3] 07:44:55.275 [main] INFO com.github.mgramin.sqlboot.sql.select.wrappers.JdbcSelectQuery - select * from (select n /* First name */ , mail /* Personal email */ from (select name as n , email as mail from main_schema.users)) order by n asc, mail desc 07:44:55.275 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@41f07afb testClass = OrderedSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:55.276 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 146, missCount = 3] 07:44:55.276 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@41f07afb testClass = OrderedSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:55.276 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 147, missCount = 3] 07:44:55.277 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@41f07afb testClass = OrderedSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:55.277 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 148, missCount = 3] 07:44:55.277 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@1275f279 testClass = OrderedSelectQueryTest, testInstance = com.github.mgramin.sqlboot.sql.select.wrappers.OrderedSelectQueryTest@59dca761, testMethod = execute@OrderedSelectQueryTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@41f07afb testClass = OrderedSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:55.278 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@1275f279 testClass = OrderedSelectQueryTest, testInstance = com.github.mgramin.sqlboot.sql.select.wrappers.OrderedSelectQueryTest@1b89b308, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@41f07afb testClass = OrderedSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]]. 07:44:55.278 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@41f07afb testClass = OrderedSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:55.278 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 149, missCount = 3] 07:44:55.279 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@1275f279 testClass = OrderedSelectQueryTest, testInstance = com.github.mgramin.sqlboot.sql.select.wrappers.OrderedSelectQueryTest@1b89b308, testMethod = query@OrderedSelectQueryTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@41f07afb testClass = OrderedSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:55.280 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@41f07afb testClass = OrderedSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:55.280 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 150, missCount = 3] select * from (select n /* First name */ , mail /* Personal email */ from (select name as n , email as mail from main_schema.users)) order by n desc, mail asc 07:44:55.281 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@41f07afb testClass = OrderedSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:55.282 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 151, missCount = 3] 07:44:55.282 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@41f07afb testClass = OrderedSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:55.282 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 152, missCount = 3] 07:44:55.283 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@41f07afb testClass = OrderedSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:55.283 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 153, missCount = 3] 07:44:55.283 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@1275f279 testClass = OrderedSelectQueryTest, testInstance = com.github.mgramin.sqlboot.sql.select.wrappers.OrderedSelectQueryTest@1b89b308, testMethod = query@OrderedSelectQueryTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@41f07afb testClass = OrderedSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:55.284 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@1275f279 testClass = OrderedSelectQueryTest, testInstance = com.github.mgramin.sqlboot.sql.select.wrappers.OrderedSelectQueryTest@730329b7, testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@41f07afb testClass = OrderedSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]]]. 07:44:55.284 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@41f07afb testClass = OrderedSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:55.284 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 154, missCount = 3] 07:44:55.285 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test method: context [DefaultTestContext@1275f279 testClass = OrderedSelectQueryTest, testInstance = com.github.mgramin.sqlboot.sql.select.wrappers.OrderedSelectQueryTest@730329b7, testMethod = columns@OrderedSelectQueryTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@41f07afb testClass = OrderedSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:55.286 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@41f07afb testClass = OrderedSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:55.286 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 155, missCount = 3] 07:44:55.287 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@41f07afb testClass = OrderedSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:55.287 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 156, missCount = 3] 07:44:55.287 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@41f07afb testClass = OrderedSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:55.288 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 157, missCount = 3] 07:44:55.289 [main] DEBUG org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate - Retrieved ApplicationContext from cache with key [[MergedContextConfiguration@41f07afb testClass = OrderedSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]]] 07:44:55.289 [main] DEBUG org.springframework.test.context.cache - Spring test ApplicationContext cache statistics: [DefaultContextCache@2363630a size = 3, maxSize = 32, parentContextCount = 0, hitCount = 158, missCount = 3] 07:44:55.290 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test method: context [DefaultTestContext@1275f279 testClass = OrderedSelectQueryTest, testInstance = com.github.mgramin.sqlboot.sql.select.wrappers.OrderedSelectQueryTest@730329b7, testMethod = columns@OrderedSelectQueryTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@41f07afb testClass = OrderedSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null], method annotated with @DirtiesContext [false] with mode [null]. 07:44:55.290 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - After test class: context [DefaultTestContext@1275f279 testClass = OrderedSelectQueryTest, testInstance = [null], testMethod = [null], testException = [null], mergedContextConfiguration = [MergedContextConfiguration@41f07afb testClass = OrderedSelectQueryTest, locations = '{classpath:/test_config.xml}', classes = '{}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@dd2856e, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@5f5effb0, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@6ebc9573], contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader', parent = [null]], attributes = map[[empty]]], class annotated with @DirtiesContext [false] with mode [null]. [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.035 s - in com.github.mgramin.sqlboot.sql.select.wrappers.OrderedSelectQueryTest [INFO] Running com.github.mgramin.sqlboot.sql.select.wrappers.RestSelectQueryTest [WARNING] Tests run: 3, Failures: 0, Errors: 0, Skipped: 1, Time elapsed: 0.002 s - in com.github.mgramin.sqlboot.sql.select.wrappers.RestSelectQueryTest [INFO] Running com.github.mgramin.sqlboot.sql.select.wrappers.TemplatedSelectQueryTest [INFO] Tests run: 3, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.017 s - in com.github.mgramin.sqlboot.sql.select.wrappers.TemplatedSelectQueryTest 07:44:55.337 [Thread-9] DEBUG org.springframework.context.support.GenericApplicationContext - Closing org.springframework.context.support.GenericApplicationContext@25061c11, started on Mon May 20 07:44:41 UTC 2019 07:44:55.338 [Thread-10] DEBUG org.springframework.context.support.GenericApplicationContext - Closing org.springframework.context.support.GenericApplicationContext@3e729ea7, started on Mon May 20 07:44:42 UTC 2019 07:44:55.338 [Thread-5] DEBUG org.springframework.context.support.GenericApplicationContext - Closing org.springframework.context.support.GenericApplicationContext@552cede7, started on Mon May 20 07:44:32 UTC 2019 May 20, 2019 7:44:55 AM com.hazelcast.instance.Node INFO: [172.17.0.5]:5701 [dev] [3.11.1] Running shutdown hook... Current state: ACTIVE 07:44:55.516 [Thread-10] DEBUG org.springframework.jdbc.datasource.DataSourceUtils - Fetching JDBC Connection from DataSource 07:44:55.516 [Thread-10] DEBUG org.springframework.jdbc.datasource.SimpleDriverDataSource - Creating new JDBC Driver Connection to [jdbc:h2:mem:dataSource;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=false] 07:44:55.517 [Thread-10] INFO org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseFactory - Shutting down embedded database: url='jdbc:h2:mem:dataSource;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=false' 07:44:55.517 [Thread-10] DEBUG org.springframework.jdbc.datasource.SimpleDriverDataSource - Creating new JDBC Driver Connection to [jdbc:h2:mem:dataSource;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=false] 07:44:55.520 [Thread-5] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown initiated... 07:44:55.521 [Thread-5] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Before shutdown stats (total=10, active=0, idle=10, waiting=0) 07:44:55.522 [HikariPool-1 connection closer] DEBUG com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Closing connection conn0: url=jdbc:h2:mem:testdb user=SA: (connection evicted) 07:44:55.522 [HikariPool-1 connection closer] DEBUG com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Closing connection conn1: url=jdbc:h2:mem:testdb user=SA: (connection evicted) 07:44:55.523 [HikariPool-1 connection closer] DEBUG com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Closing connection conn2: url=jdbc:h2:mem:testdb user=SA: (connection evicted) 07:44:55.525 [HikariPool-1 connection closer] DEBUG com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Closing connection conn3: url=jdbc:h2:mem:testdb user=SA: (connection evicted) 07:44:55.530 [HikariPool-1 connection closer] DEBUG com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Closing connection conn4: url=jdbc:h2:mem:testdb user=SA: (connection evicted) 07:44:55.530 [HikariPool-1 connection closer] DEBUG com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Closing connection conn5: url=jdbc:h2:mem:testdb user=SA: (connection evicted) 07:44:55.531 [HikariPool-1 connection closer] DEBUG com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Closing connection conn6: url=jdbc:h2:mem:testdb user=SA: (connection evicted) 07:44:55.532 [HikariPool-1 connection closer] DEBUG com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Closing connection conn7: url=jdbc:h2:mem:testdb user=SA: (connection evicted) 07:44:55.532 [HikariPool-1 connection closer] DEBUG com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Closing connection conn8: url=jdbc:h2:mem:testdb user=SA: (connection evicted) 07:44:55.533 [HikariPool-1 connection closer] DEBUG com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Closing connection conn9: url=jdbc:h2:mem:testdb user=SA: (connection evicted) 07:44:55.533 [Thread-5] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - After shutdown stats (total=0, active=0, idle=0, waiting=0) 07:44:55.534 [Thread-5] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Shutdown completed. 07:44:55.536 [Thread-9] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-2 - Shutdown initiated... 07:44:55.538 [Thread-9] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-2 - Before shutdown stats (total=10, active=0, idle=10, waiting=0) 07:44:55.538 [HikariPool-2 connection closer] DEBUG com.zaxxer.hikari.pool.PoolBase - HikariPool-2 - Closing connection conn10: url=jdbc:h2:mem:testdb user=SA: (connection evicted) 07:44:55.539 [HikariPool-2 connection closer] DEBUG com.zaxxer.hikari.pool.PoolBase - HikariPool-2 - Closing connection conn11: url=jdbc:h2:mem:testdb user=SA: (connection evicted) 07:44:55.540 [HikariPool-2 connection closer] DEBUG com.zaxxer.hikari.pool.PoolBase - HikariPool-2 - Closing connection conn12: url=jdbc:h2:mem:testdb user=SA: (connection evicted) 07:44:55.541 [HikariPool-2 connection closer] DEBUG com.zaxxer.hikari.pool.PoolBase - HikariPool-2 - Closing connection conn13: url=jdbc:h2:mem:testdb user=SA: (connection evicted) 07:44:55.541 [HikariPool-2 connection closer] DEBUG com.zaxxer.hikari.pool.PoolBase - HikariPool-2 - Closing connection conn14: url=jdbc:h2:mem:testdb user=SA: (connection evicted) 07:44:55.542 [HikariPool-2 connection closer] DEBUG com.zaxxer.hikari.pool.PoolBase - HikariPool-2 - Closing connection conn15: url=jdbc:h2:mem:testdb user=SA: (connection evicted) 07:44:55.542 [HikariPool-2 connection closer] DEBUG com.zaxxer.hikari.pool.PoolBase - HikariPool-2 - Closing connection conn16: url=jdbc:h2:mem:testdb user=SA: (connection evicted) 07:44:55.542 [HikariPool-2 connection closer] DEBUG com.zaxxer.hikari.pool.PoolBase - HikariPool-2 - Closing connection conn17: url=jdbc:h2:mem:testdb user=SA: (connection evicted) 07:44:55.543 [HikariPool-2 connection closer] DEBUG com.zaxxer.hikari.pool.PoolBase - HikariPool-2 - Closing connection conn18: url=jdbc:h2:mem:testdb user=SA: (connection evicted) 07:44:55.543 [HikariPool-2 connection closer] DEBUG com.zaxxer.hikari.pool.PoolBase - HikariPool-2 - Closing connection conn19: url=jdbc:h2:mem:testdb user=SA: (connection evicted) 07:44:55.543 [Thread-9] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-2 - After shutdown stats (total=0, active=0, idle=0, waiting=0) 07:44:55.544 [Thread-9] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-2 - Shutdown completed. [INFO] [INFO] Results: [INFO] [WARNING] Tests run: 165, Failures: 0, Errors: 0, Skipped: 2 [INFO] [INFO] [INFO] --- jacoco-maven-plugin:0.8.2:report (report) @ sql-boot --- [INFO] Loading execution data file /home/r/repo/target/jacoco.exec [INFO] Analyzed bundle 'sql-boot' with 88 classes [INFO] [INFO] --- maven-jar-plugin:3.1.1:jar (default-jar) @ sql-boot --- Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/3.3.0/maven-archiver-3.3.0.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/3.3.0/maven-archiver-3.3.0.pom (5 KB at 206.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/33/maven-shared-components-33.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/33/maven-shared-components-33.pom (5 KB at 237.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/3.6.0/plexus-archiver-3.6.0.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/3.6.0/plexus-archiver-3.6.0.pom (5 KB at 223.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/5.0/plexus-5.0.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/5.0/plexus-5.0.pom (21 KB at 868.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.0.1/plexus-io-3.0.1.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.0.1/plexus-io-3.0.1.pom (5 KB at 201.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.pom Downloaded: http://repo.maven.apache.org/maven2/commons-io/commons-io/2.6/commons-io-2.6.pom (14 KB at 662.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/42/commons-parent-42.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/42/commons-parent-42.pom (67 KB at 1793.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.16.1/commons-compress-1.16.1.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.16.1/commons-compress-1.16.1.pom (16 KB at 694.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/43/commons-parent-43.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/43/commons-parent-43.pom (69 KB at 1901.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/iq80/snappy/snappy/0.4/snappy-0.4.pom Downloaded: http://repo.maven.apache.org/maven2/org/iq80/snappy/snappy/0.4/snappy-0.4.pom (15 KB at 645.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/tukaani/xz/1.8/xz-1.8.pom Downloaded: http://repo.maven.apache.org/maven2/org/tukaani/xz/1.8/xz-1.8.pom (2 KB at 88.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.25/plexus-interpolation-1.25.pom (3 KB at 123.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/5.1/plexus-5.1.pom (22 KB at 955.5 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/3.7.0/plexus-archiver-3.7.0.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/3.7.0/plexus-archiver-3.7.0.pom (5 KB at 214.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.1.0/plexus-io-3.1.0.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.1.0/plexus-io-3.1.0.pom (5 KB at 193.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.18/commons-compress-1.18.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.18/commons-compress-1.18.pom (18 KB at 809.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/3.3.0/maven-archiver-3.3.0.jar Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/3.7.0/plexus-archiver-3.7.0.jar Downloading: http://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.18/commons-compress-1.18.jar Downloading: http://repo.maven.apache.org/maven2/org/iq80/snappy/snappy/0.4/snappy-0.4.jar Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.1.0/plexus-io-3.1.0.jar Downloaded:5http://repo.maven.apache.org/maven2/org/iq80/snappy/snappy/0.4/snappy-0.4.jar (57 KB at 1886.5 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/tukaani/xz/1.8/xz-1.8.jar Downloaded:1http://repo.maven.apache.org/maven2/org/tukaani/xz/1.8/xz-1.8.jar (107 KB at 1606.2 KB/sec) Downloaded:1http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.1.0/plexus-io-3.1.0.jar (74 KB at 1021.7 KB/sec) Downloaded:1http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/3.7.0/plexus-archiver-3.7.0.jar (188 KB at 2368.7 KB/sec) Downloaded:2http://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/3.3.0/maven-archiver-3.3.0.jar (24 KB at 226.3 KB/sec) Downloaded: http://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.18/commons-compress-1.18.jar (578 KB at 3009.8 KB/sec) [INFO] Building jar: /home/r/repo/target/sql-boot-0.3.0-SNAPSHOT.jar [INFO] [INFO] --- spring-boot-maven-plugin:2.1.3.RELEASE:repackage (repackage) @ sql-boot --- Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-loader-tools/2.1.3.RELEASE/spring-boot-loader-tools-2.1.3.RELEASE.pom Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-loader-tools/2.1.3.RELEASE/spring-boot-loader-tools-2.1.3.RELEASE.pom (3 KB at 117.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/3.2.0/maven-archiver-3.2.0.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/3.2.0/maven-archiver-3.2.0.pom (5 KB at 210.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.pom (5 KB at 228.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/3.5/plexus-archiver-3.5.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/3.5/plexus-archiver-3.5.pom (5 KB at 223.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.0.0/plexus-io-3.0.0.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.0.0/plexus-io-3.0.0.pom (5 KB at 222.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.14/commons-compress-1.14.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.14/commons-compress-1.14.pom (13 KB at 583.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/tukaani/xz/1.6/xz-1.6.pom Downloaded: http://repo.maven.apache.org/maven2/org/tukaani/xz/1.6/xz-1.6.pom (2 KB at 80.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.0.1/maven-common-artifact-filters-3.0.1.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.0.1/maven-common-artifact-filters-3.0.1.pom (5 KB at 224.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-shade-plugin/3.2.1/maven-shade-plugin-3.2.1.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-shade-plugin/3.2.1/maven-shade-plugin-3.2.1.pom (10 KB at 414.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-artifact-transfer/0.10.0/maven-artifact-transfer-0.10.0.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-artifact-transfer/0.10.0/maven-artifact-transfer-0.10.0.pom (12 KB at 537.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/31/maven-shared-components-31.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/31/maven-shared-components-31.pom (5 KB at 226.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.pom Downloaded: http://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.pom (14 KB at 593.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm/7.0/asm-7.0.pom Downloaded: http://repo.maven.apache.org/maven2/org/ow2/asm/asm/7.0/asm-7.0.pom (3 KB at 136.5 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/7.0/asm-commons-7.0.pom Downloaded: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/7.0/asm-commons-7.0.pom (4 KB at 178.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/7.0/asm-tree-7.0.pom Downloaded: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/7.0/asm-tree-7.0.pom (4 KB at 145.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/7.0/asm-analysis-7.0.pom Downloaded: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/7.0/asm-analysis-7.0.pom (4 KB at 106.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/jdom/jdom2/2.0.6/jdom2-2.0.6.pom Downloaded: http://repo.maven.apache.org/maven2/org/jdom/jdom2/2.0.6/jdom2-2.0.6.pom (5 KB at 213.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-tree/3.0.1/maven-dependency-tree-3.0.1.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-tree/3.0.1/maven-dependency-tree-3.0.1.pom (8 KB at 332.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/vafer/jdependency/2.1.1/jdependency-2.1.1.pom Downloaded: http://repo.maven.apache.org/maven2/org/vafer/jdependency/2.1.1/jdependency-2.1.1.pom (11 KB at 523.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm/7.0-beta/asm-7.0-beta.pom Downloaded: http://repo.maven.apache.org/maven2/org/ow2/asm/asm/7.0-beta/asm-7.0-beta.pom (3 KB at 143.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/7.0-beta/asm-analysis-7.0-beta.pom Downloaded: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/7.0-beta/asm-analysis-7.0-beta.pom (4 KB at 110.5 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/7.0-beta/asm-tree-7.0-beta.pom Downloaded: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/7.0-beta/asm-tree-7.0-beta.pom (4 KB at 153.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/7.0-beta/asm-commons-7.0-beta.pom Downloaded: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/7.0-beta/asm-commons-7.0-beta.pom (4 KB at 200.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-util/7.0-beta/asm-util-7.0-beta.pom Downloaded: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-util/7.0-beta/asm-util-7.0-beta.pom (4 KB at 179.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/google/guava/guava/19.0/guava-19.0.pom Downloaded: http://repo.maven.apache.org/maven2/com/google/guava/guava/19.0/guava-19.0.pom (7 KB at 331.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/google/guava/guava-parent/19.0/guava-parent-19.0.pom Downloaded: http://repo.maven.apache.org/maven2/com/google/guava/guava-parent/19.0/guava-parent-19.0.pom (10 KB at 459.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-loader-tools/2.1.3.RELEASE/spring-boot-loader-tools-2.1.3.RELEASE.jar Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/3.2.0/maven-archiver-3.2.0.jar Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.jar Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.22/plexus-interpolation-1.22.jar Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.0.1/maven-common-artifact-filters-3.0.1.jar Downloaded:2http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/3.0.1/maven-common-artifact-filters-3.0.1.jar (61 KB at 2222.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/3.6.0/plexus-archiver-3.6.0.jar Downloaded:2http://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/3.2.0/maven-archiver-3.2.0.jar (24 KB at 643.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.0.1/plexus-io-3.0.1.jar Downloaded:1http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.22/plexus-interpolation-1.22.jar (76 KB at 1272.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-shade-plugin/3.2.1/maven-shade-plugin-3.2.1.jar Downloaded: http://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-loader-tools/2.1.3.RELEASE/spring-boot-loader-tools-2.1.3.RELEASE.jar (146 KB at 2133.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-artifact-transfer/0.10.0/maven-artifact-transfer-0.10.0.jar Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/3.6.0/plexus-archiver-3.6.0.jar (187 KB at 2559.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.jar Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/3.0.1/plexus-io-3.0.1.jar (73 KB at 722.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm/7.0/asm-7.0.jar Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-shade-plugin/3.2.1/maven-shade-plugin-3.2.1.jar (112 KB at 805.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/7.0/asm-commons-7.0.jar Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-utils/3.2.0/maven-shared-utils-3.2.0.jar (162 KB at 1161.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/7.0/asm-tree-7.0.jar Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-artifact-transfer/0.10.0/maven-artifact-transfer-0.10.0.jar (125 KB at 898.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/7.0/asm-analysis-7.0.jar Downloaded: http://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.jar (328 KB at 2353.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/jdom/jdom2/2.0.6/jdom2-2.0.6.jar Downloaded:2http://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/7.0/asm-analysis-7.0.jar (33 KB at 191.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-tree/3.0.1/maven-dependency-tree-3.0.1.jar Downloaded: http://repo.maven.apache.org/maven2/org/ow2/asm/asm/7.0/asm-7.0.jar (112 KB at 623.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/vafer/jdependency/2.1.1/jdependency-2.1.1.jar Downloaded:2http://repo.maven.apache.org/maven2/org/ow2/asm/asm-commons/7.0/asm-commons-7.0.jar (78 KB at 410.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-util/7.0-beta/asm-util-7.0-beta.jar Downloaded:2http://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/7.0/asm-tree-7.0.jar (50 KB at 256.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/com/google/guava/guava/19.0/guava-19.0.jar Downloaded:2http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-dependency-tree/3.0.1/maven-dependency-tree-3.0.1.jar (36 KB at 183.7 KB/sec) Downloaded: http://repo.maven.apache.org/maven2/org/jdom/jdom2/2.0.6/jdom2-2.0.6.jar (298 KB at 1452.6 KB/sec) Downloaded: http://repo.maven.apache.org/maven2/org/ow2/asm/asm-util/7.0-beta/asm-util-7.0-beta.jar (79 KB at 344.6 KB/sec) Downloaded: http://repo.maven.apache.org/maven2/org/vafer/jdependency/2.1.1/jdependency-2.1.1.jar (182 KB at 730.3 KB/sec) Downloaded:Bhttp://repo.maven.apache.org/maven2/com/google/guava/guava/19.0/guava-19.0.jar (2255 KB at 3364.8 KB/sec) [INFO] Layout: ZIP [INFO] Replacing main artifact with repackaged archive [INFO] [INFO] --- maven-assembly-plugin:2.2-beta-5:single (make-assembly) @ sql-boot --- Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.1/maven-common-artifact-filters-1.1.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.1/maven-common-artifact-filters-1.1.pom (3 KB at 135.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-plugin-testing-harness/1.1/maven-plugin-testing-harness-1.1.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-plugin-testing-harness/1.1/maven-plugin-testing-harness-1.1.pom (7 KB at 294.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/7/maven-shared-components-7.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/7/maven-shared-components-7.pom (3 KB at 101.5 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0/maven-project-2.0.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0/maven-project-2.0.pom (2 KB at 76.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0/maven-profile-2.0.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0/maven-profile-2.0.pom (2 KB at 67.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0/maven-model-2.0.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0/maven-model-2.0.pom (3 KB at 117.5 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0/maven-artifact-manager-2.0.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0/maven-artifact-manager-2.0.pom (2 KB at 65.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0/maven-repository-metadata-2.0.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0/maven-repository-metadata-2.0.pom (2 KB at 57.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0/maven-artifact-2.0.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0/maven-artifact-2.0.pom (723 B at 35.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0/maven-core-2.0.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-core/2.0/maven-core-2.0.pom (6 KB at 273.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0/maven-settings-2.0.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-settings/2.0/maven-settings-2.0.pom (2 KB at 64.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0/maven-plugin-parameter-documenter-2.0.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-parameter-documenter/2.0/maven-plugin-parameter-documenter-2.0.pom (2 KB at 74.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0/maven-reporting-api-2.0.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting-api/2.0/maven-reporting-api-2.0.pom (2 KB at 54.2 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0/maven-reporting-2.0.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/reporting/maven-reporting/2.0/maven-reporting-2.0.pom (504 B at 25.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/doxia/doxia-sink-api/1.0-alpha-4/doxia-sink-api-1.0-alpha-4.pom Downloaded: http://repo.maven.apache.org/maven2/doxia/doxia-sink-api/1.0-alpha-4/doxia-sink-api-1.0-alpha-4.pom (2 KB at 50.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0/maven-error-diagnostics-2.0.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-error-diagnostics/2.0/maven-error-diagnostics-2.0.pom (812 B at 37.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0/maven-plugin-registry-2.0.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-registry/2.0/maven-plugin-registry-2.0.pom (2 KB at 59.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0/maven-plugin-descriptor-2.0.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-descriptor/2.0/maven-plugin-descriptor-2.0.pom (2 KB at 71.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0/maven-monitor-2.0.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-monitor/2.0/maven-monitor-2.0.pom (400 B at 20.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.2/plexus-utils-1.4.2.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.2/plexus-utils-1.4.2.pom (2 KB at 106.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/1.0-alpha-7/plexus-archiver-1.0-alpha-7.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/1.0-alpha-7/plexus-archiver-1.0-alpha-7.pom (2 KB at 50.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.6/plexus-components-1.1.6.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.6/plexus-components-1.1.6.pom (2 KB at 87.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.2/plexus-utils-1.2.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.2/plexus-utils-1.2.pom (767 B at 39.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.5/plexus-1.0.5.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/1.0.5/plexus-1.0.5.pom (6 KB at 232.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.7/plexus-interpolation-1.7.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.7/plexus-interpolation-1.7.pom (3 KB at 141.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/1.0-alpha-12/plexus-archiver-1.0-alpha-12.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/1.0-alpha-12/plexus-archiver-1.0-alpha-12.pom (2 KB at 76.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/1.0-alpha-4/plexus-io-1.0-alpha-4.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/1.0-alpha-4/plexus-io-1.0-alpha-4.pom (2 KB at 55.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/file-management/1.1/file-management-1.1.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/file-management/1.1/file-management-1.1.pom (3 KB at 129.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/4/maven-shared-components-4.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/4/maven-shared-components-4.pom (3 KB at 98.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/4/maven-parent-4.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-parent/4/maven-parent-4.pom (10 KB at 464.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-io/1.0/maven-shared-io-1.0.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-io/1.0/maven-shared-io-1.0.pom (3 KB at 147.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.0-beta-2/maven-filtering-1.0-beta-2.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.0-beta-2/maven-filtering-1.0-beta-2.pom (4 KB at 178.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.6/plexus-interpolation-1.6.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.6/plexus-interpolation-1.6.pom (3 KB at 149.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-active-collections/1.0-beta-2/plexus-active-collections-1.0-beta-2.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-active-collections/1.0-beta-2/plexus-active-collections-1.0-beta-2.pom (3 KB at 129.5 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-22/plexus-container-default-1.0-alpha-22.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-22/plexus-container-default-1.0-alpha-22.pom (3 KB at 76.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-22/plexus-containers-1.0-alpha-22.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-22/plexus-containers-1.0-alpha-22.pom (2 KB at 92.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.4/maven-plugin-api-2.0.4.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.4/maven-plugin-api-2.0.4.pom (643 B at 28.5 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.4/maven-archiver-2.4.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.4/maven-archiver-2.4.pom (4 KB at 167.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/1.0-alpha-11/plexus-archiver-1.0-alpha-11.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/1.0-alpha-11/plexus-archiver-1.0-alpha-11.pom (2 KB at 83.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.9/plexus-components-1.1.9.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/1.1.9/plexus-components-1.1.9.pom (3 KB at 124.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-15/plexus-container-default-1.0-alpha-15.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-container-default/1.0-alpha-15/plexus-container-default-1.0-alpha-15.pom (2 KB at 75.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-15/plexus-containers-1.0-alpha-15.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-15/plexus-containers-1.0-alpha-15.pom (2 KB at 87.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-api/1.0-alpha-15/plexus-component-api-1.0-alpha-15.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-api/1.0-alpha-15/plexus-component-api-1.0-alpha-15.pom (948 B at 46.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-6/plexus-classworlds-1.2-alpha-6.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-classworlds/1.2-alpha-6/plexus-classworlds-1.2-alpha-6.pom (3 KB at 121.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/1.0-alpha-3/plexus-io-1.0-alpha-3.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/1.0-alpha-3/plexus-io-1.0-alpha-3.pom (2 KB at 59.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-api/1.0-alpha-16/plexus-component-api-1.0-alpha-16.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-component-api/1.0-alpha-16/plexus-component-api-1.0-alpha-16.pom (3 KB at 103.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-16/plexus-containers-1.0-alpha-16.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-containers/1.0-alpha-16/plexus-containers-1.0-alpha-16.pom (2 KB at 92.0 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.9/plexus-utils-1.4.9.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.4.9/plexus-utils-1.4.9.pom (3 KB at 112.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.1/plexus-utils-2.0.1.pom Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.1/plexus-utils-2.0.1.pom (4 KB at 148.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-repository-builder/1.0-alpha-2/maven-repository-builder-1.0-alpha-2.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-repository-builder/1.0-alpha-2/maven-repository-builder-1.0-alpha-2.pom (4 KB at 105.1 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.0-alpha-1/maven-common-artifact-filters-1.0-alpha-1.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.0-alpha-1/maven-common-artifact-filters-1.0-alpha-1.pom (2 KB at 87.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/6/maven-shared-components-6.pom Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-shared-components/6/maven-shared-components-6.pom (4 KB at 144.4 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.1/maven-common-artifact-filters-1.1.jar Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-plugin-testing-harness/1.1/maven-plugin-testing-harness-1.1.jar Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.7/plexus-interpolation-1.7.jar Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/file-management/1.1/file-management-1.1.jar Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/1.0-alpha-12/plexus-archiver-1.0-alpha-12.jar Downloaded:2http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-common-artifact-filters/1.1/maven-common-artifact-filters-1.1.jar (30 KB at 1047.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.2/maven-artifact-manager-2.0.2.jar Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-plugin-testing-harness/1.1/maven-plugin-testing-harness-1.1.jar (32 KB at 1094.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.2/maven-repository-metadata-2.0.2.jar Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/file-management/1.1/file-management-1.1.jar (31 KB at 981.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.0-beta-2/maven-filtering-1.0-beta-2.jar Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.7/plexus-interpolation-1.7.jar (50 KB at 1385.5 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-active-collections/1.0-beta-2/plexus-active-collections-1.0-beta-2.jar Downloaded:1http://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact-manager/2.0.2/maven-artifact-manager-2.0.2.jar (49 KB at 905.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/1.0-alpha-4/plexus-io-1.0-alpha-4.jar Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-repository-metadata/2.0.2/maven-repository-metadata-2.0.2.jar (20 KB at 349.8 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.4/maven-plugin-api-2.0.4.jar Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/1.0-beta-2/maven-filtering-1.0-beta-2.jar (33 KB at 558.6 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.4/maven-project-2.0.4.jar Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-active-collections/1.0-beta-2/plexus-active-collections-1.0-beta-2.jar (21 KB at 331.5 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.4/maven-profile-2.0.4.jar Downloaded:9http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-archiver/1.0-alpha-12/plexus-archiver-1.0-alpha-12.jar (173 KB at 2540.9 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.4/maven-archiver-2.4.jar Downloaded:4http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-io/1.0-alpha-4/plexus-io-1.0-alpha-4.jar (48 KB at 613.5 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.1/plexus-utils-2.0.1.jar Downloaded:9http://repo.maven.apache.org/maven2/org/apache/maven/maven-plugin-api/2.0.4/maven-plugin-api-2.0.4.jar (9 KB at 105.7 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.4/maven-artifact-2.0.4.jar Downloaded:2http://repo.maven.apache.org/maven2/org/apache/maven/maven-profile/2.0.4/maven-profile-2.0.4.jar (30 KB at 347.3 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.4/maven-model-2.0.4.jar Downloaded:2http://repo.maven.apache.org/maven2/org/apache/maven/maven-archiver/2.4/maven-archiver-2.4.jar (20 KB at 197.5 KB/sec) Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-repository-builder/1.0-alpha-2/maven-repository-builder-1.0-alpha-2.jar Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-project/2.0.4/maven-project-2.0.4.jar (107 KB at 1097.3 KB/sec) Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-artifact/2.0.4/maven-artifact-2.0.4.jar (79 KB at 653.2 KB/sec) Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-repository-builder/1.0-alpha-2/maven-repository-builder-1.0-alpha-2.jar (23 KB at 185.3 KB/sec) Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/maven-model/2.0.4/maven-model-2.0.4.jar (79 KB at 602.4 KB/sec) Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/2.0.1/plexus-utils-2.0.1.jar (217 KB at 1615.4 KB/sec) [INFO] Reading assembly descriptor: src/main/assembly/assembly.xml [INFO] Building zip: /home/r/repo/target/sql-boot.zip [INFO] [INFO] --- maven-failsafe-plugin:2.22.1:integration-test (default) @ sql-boot --- [INFO] [INFO] ------------------------------------------------------- [INFO] T E S T S [INFO] ------------------------------------------------------- [INFO] Running com.github.mgramin.sqlboot.rest.controllers.ApiControllerITCase 07:45:04.745 [main] DEBUG org.springframework.test.context.BootstrapUtils - Instantiating CacheAwareContextLoaderDelegate from class [org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate] 07:45:04.790 [main] INFO org.springframework.core.KotlinDetector - Kotlin reflection implementation not found at runtime, related features won't be available. 07:45:04.801 [main] DEBUG org.springframework.test.context.BootstrapUtils - Instantiating BootstrapContext using constructor [public org.springframework.test.context.support.DefaultBootstrapContext(java.lang.Class,org.springframework.test.context.CacheAwareContextLoaderDelegate)] 07:45:04.853 [main] DEBUG org.springframework.test.context.BootstrapUtils - Instantiating TestContextBootstrapper for test class [com.github.mgramin.sqlboot.rest.controllers.ApiControllerITCase] from class [org.springframework.boot.test.context.SpringBootTestContextBootstrapper] 07:45:04.875 [main] INFO org.springframework.boot.test.context.SpringBootTestContextBootstrapper - Neither @ContextConfiguration nor @ContextHierarchy found for test class [com.github.mgramin.sqlboot.rest.controllers.ApiControllerITCase], using SpringBootContextLoader 07:45:04.882 [main] DEBUG org.springframework.test.context.support.AbstractContextLoader - Did not detect default resource location for test class [com.github.mgramin.sqlboot.rest.controllers.ApiControllerITCase]: class path resource [com/github/mgramin/sqlboot/rest/controllers/ApiControllerITCase-context.xml] does not exist 07:45:04.882 [main] DEBUG org.springframework.test.context.support.AbstractContextLoader - Did not detect default resource location for test class [com.github.mgramin.sqlboot.rest.controllers.ApiControllerITCase]: class path resource [com/github/mgramin/sqlboot/rest/controllers/ApiControllerITCaseContext.groovy] does not exist 07:45:04.882 [main] INFO org.springframework.test.context.support.AbstractContextLoader - Could not detect default resource locations for test class [com.github.mgramin.sqlboot.rest.controllers.ApiControllerITCase]: no resource found for suffixes {-context.xml, Context.groovy}. 07:45:04.966 [main] DEBUG org.springframework.test.context.support.ActiveProfilesUtils - Could not find an 'annotation declaring class' for annotation type [org.springframework.test.context.ActiveProfiles] and class [com.github.mgramin.sqlboot.rest.controllers.ApiControllerITCase] 07:45:05.253 [main] DEBUG org.springframework.boot.test.context.SpringBootTestContextBootstrapper - @TestExecutionListeners is not present for class [com.github.mgramin.sqlboot.rest.controllers.ApiControllerITCase]: using defaults. 07:45:05.254 [main] INFO org.springframework.boot.test.context.SpringBootTestContextBootstrapper - Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener] 07:45:05.289 [main] INFO org.springframework.boot.test.context.SpringBootTestContextBootstrapper - Using TestExecutionListeners: [org.springframework.test.context.web.ServletTestExecutionListener@66713605, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@2ab09943, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@7d50f2a8, org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@5864e8bf, org.springframework.test.context.support.DirtiesContextTestExecutionListener@37ca3ca8, org.springframework.test.context.transaction.TransactionalTestExecutionListener@191ec193, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@6321a5aa, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@1c7f9861, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@7a36c83a, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@154b8cb6, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@7b297740, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@1b7554d4] 07:45:05.295 [main] DEBUG org.springframework.test.context.support.AbstractDirtiesContextTestExecutionListener - Before test class: context [DefaultTestContext@3be3e76c testClass = ApiControllerITCase, testInstance = [null], testMethod = [null], testException = [null], mergedContextConfiguration = [WebMergedContextConfiguration@6c07ad6b testClass = ApiControllerITCase, locations = '{}', classes = '{class com.github.mgramin.sqlboot.rest.Application, class com.github.mgramin.sqlboot.rest.Application}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{org.springframework.boot.test.context.SpringBootTestContextBootstrapper=true, server.port=0}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@4cb2918c, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@7e0bc8a3, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.web.client.TestRestTemplateContextCustomizer@f5b6e78, org.springframework.boot.test.web.reactive.server.WebTestClientContextCustomizer@4784efd9, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@303f1234], resourceBasePath = 'src/main/webapp', contextLoader = 'org.springframework.boot.test.context.SpringBootContextLoader', parent = [null]], attributes = map['org.springframework.test.context.web.ServletTestExecutionListener.activateListener' -> false]], class annotated with @DirtiesContext [false] with mode [null]. 07:45:05.429 [main] DEBUG org.springframework.test.context.support.DependencyInjectionTestExecutionListener - Performing dependency injection for test context [[DefaultTestContext@3be3e76c testClass = ApiControllerITCase, testInstance = com.github.mgramin.sqlboot.rest.controllers.ApiControllerITCase@63f2e0b, testMethod = [null], testException = [null], mergedContextConfiguration = [WebMergedContextConfiguration@6c07ad6b testClass = ApiControllerITCase, locations = '{}', classes = '{class com.github.mgramin.sqlboot.rest.Application, class com.github.mgramin.sqlboot.rest.Application}', contextInitializerClasses = '[]', activeProfiles = '{}', propertySourceLocations = '{}', propertySourceProperties = '{org.springframework.boot.test.context.SpringBootTestContextBootstrapper=true, server.port=0}', contextCustomizers = set[org.springframework.boot.test.context.filter.ExcludeFilterContextCustomizer@4cb2918c, org.springframework.boot.test.json.DuplicateJsonObjectContextCustomizerFactory$DuplicateJsonObjectContextCustomizer@7e0bc8a3, org.springframework.boot.test.mock.mockito.MockitoContextCustomizer@0, org.springframework.boot.test.web.client.TestRestTemplateContextCustomizer@f5b6e78, org.springframework.boot.test.web.reactive.server.WebTestClientContextCustomizer@4784efd9, org.springframework.boot.test.autoconfigure.properties.PropertyMappingContextCustomizer@0, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverContextCustomizerFactory$Customizer@303f1234], resourceBasePath = 'src/main/webapp', contextLoader = 'org.springframework.boot.test.context.SpringBootContextLoader', parent = [null]], attributes = map['org.springframework.test.context.web.ServletTestExecutionListener.activateListener' -> false]]]. 07:45:05.497 [main] DEBUG org.springframework.test.context.support.TestPropertySourceUtils - Adding inlined properties to environment: {spring.jmx.enabled=false, org.springframework.boot.test.context.SpringBootTestContextBootstrapper=true, server.port=0} _____ ____ _ ____ ____ ____ _______ / ____|/ __ \| | | _ \ / __ \ / __ \__ __| | (___ | | | | | ______| |_) | | | | | | | | | \___ \| | | | | |______| _ <| | | | | | | | | ____) | |__| | |____ | |_) | |__| | |__| | | | |_____/ \___\_\______| |____/ \____/ \____/ |_| 2019-05-20 07:45:06.253 INFO 487 --- [ main] c.g.m.s.r.c.ApiControllerITCase : Starting ApiControllerITCase on docker with PID 487 (started by r in /home/r/repo) 2019-05-20 07:45:06.256 INFO 487 --- [ main] c.g.m.s.r.c.ApiControllerITCase : No active profile set, falling back to default profiles: default 2019-05-20 07:45:07.528 WARN 487 --- [kground-preinit] o.s.h.c.j.Jackson2ObjectMapperBuilder : For Jackson Kotlin classes support please add "com.fasterxml.jackson.module:jackson-module-kotlin" to the classpath 2019-05-20 07:45:10.685 INFO 487 --- [ main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$56b5a6b0] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) 2019-05-20 07:45:11.586 INFO 487 --- [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat initialized with port(s): 0 (http) 2019-05-20 07:45:11.660 INFO 487 --- [ main] o.apache.catalina.core.StandardService : Starting service [Tomcat] 2019-05-20 07:45:11.660 INFO 487 --- [ main] org.apache.catalina.core.StandardEngine : Starting Servlet engine: [Apache Tomcat/9.0.16] 2019-05-20 07:45:11.691 INFO 487 --- [ main] o.a.catalina.core.AprLifecycleListener : The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: [/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib] 2019-05-20 07:45:12.070 INFO 487 --- [ main] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext 2019-05-20 07:45:12.071 INFO 487 --- [ main] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 5155 ms 2019-05-20 07:45:13.019 INFO 487 --- [ main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting... 2019-05-20 07:45:13.336 INFO 487 --- [ main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed. 2019-05-20 07:45:15.002 INFO 487 --- [ main] o.s.s.concurrent.ThreadPoolTaskExecutor : Initializing ExecutorService 'applicationTaskExecutor' 2019-05-20 07:45:15.425 INFO 487 --- [ main] o.s.b.a.w.s.WelcomePageHandlerMapping : Adding welcome page: class path resource [static/index.html] 2019-05-20 07:45:15.822 WARN 487 --- [ main] .b.a.g.t.GroovyTemplateAutoConfiguration : Cannot find template location: classpath:/templates/ (please add some templates, check your Groovy configuration, or set spring.groovy.template.check-template-location=false) 2019-05-20 07:45:17.436 INFO 487 --- [ main] o.s.b.a.e.web.EndpointLinksResolver : Exposing 2 endpoint(s) beneath base path '/actuator' 2019-05-20 07:45:17.645 INFO 487 --- [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 43218 (http) with context path '' 2019-05-20 07:45:17.652 INFO 487 --- [ main] c.g.m.s.r.c.ApiControllerITCase : Started ApiControllerITCase in 12.151 seconds (JVM running for 14.349) 2019-05-20 07:45:18.213 INFO 487 --- [o-auto-1-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring DispatcherServlet 'dispatcherServlet' 2019-05-20 07:45:18.214 INFO 487 --- [o-auto-1-exec-1] o.s.web.servlet.DispatcherServlet : Initializing Servlet 'dispatcherServlet' 2019-05-20 07:45:18.240 INFO 487 --- [o-auto-1-exec-1] o.s.web.servlet.DispatcherServlet : Completed initialization in 26 ms line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' 2019-05-20 07:45:19.868 INFO 487 --- [o-auto-1-exec-1] c.g.m.s.s.s.wrappers.JdbcSelectQuery : select "@schema" /* { "label": "owner", "description": "Owner of the table", "visible": true } */ , "@table" /* { "label": "table name", "description": "Name of the table", "visible": true } */ , remarks properties , last_modification /* { "label": "last modification", "description": "Last modification" } */ , table_type /* { "label": "table type", "description": "Typical types", "visible": true, "values": ['TABLE', 'VIEW', 'SYSTEM TABLE', 'GLOBAL TEMPORARY', 'LOCAL TEMPORARY', 'ALIAS', 'SYNONYM'] } */ from (select t.table_schema as "@schema" , t.table_name as "@table" , t.* from information_schema.tables t where lower(t.table_schema) like lower('foo') and lower(t.table_name) like lower('%')) order by "@schema", "@table" 2019-05-20 07:45:19.925 INFO 487 --- [ parallel-1] c.g.m.s.s.s.wrappers.JdbcSelectQuery : Thread[parallel-1,5,main] line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' 2019-05-20 07:45:20.554 INFO 487 --- [o-auto-1-exec-2] c.g.m.s.s.s.wrappers.JdbcSelectQuery : select "@schema" /* { "label": "owner", "description": "Owner of the table", "visible": true } */ , "@table" /* { "label": "table name", "description": "Name of the table", "visible": true } */ , remarks properties , last_modification /* { "label": "last modification", "description": "Last modification" } */ , table_type /* { "label": "table type", "description": "Typical types", "visible": true, "values": ['TABLE', 'VIEW', 'SYSTEM TABLE', 'GLOBAL TEMPORARY', 'LOCAL TEMPORARY', 'ALIAS', 'SYNONYM'] } */ from (select t.table_schema as "@schema" , t.table_name as "@table" , t.* from information_schema.tables t where lower(t.table_schema) like lower('BOOKINGS') and lower(t.table_name) like lower('%')) order by "@schema", "@table" 2019-05-20 07:45:20.555 INFO 487 --- [ parallel-2] c.g.m.s.s.s.wrappers.JdbcSelectQuery : Thread[parallel-2,5,main] line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' 2019-05-20 07:45:20.943 INFO 487 --- [o-auto-1-exec-3] c.g.m.s.s.s.wrappers.JdbcSelectQuery : select "@schema" /* { "label": "owner", "description": "Owner of the table", "visible": true } */ , "@table" /* { "label": "table name", "description": "Name of the table", "visible": true } */ , remarks properties , last_modification /* { "label": "last modification", "description": "Last modification" } */ , table_type /* { "label": "table type", "description": "Typical types", "visible": true, "values": ['TABLE', 'VIEW', 'SYSTEM TABLE', 'GLOBAL TEMPORARY', 'LOCAL TEMPORARY', 'ALIAS', 'SYNONYM'] } */ from (select t.table_schema as "@schema" , t.table_name as "@table" , t.* from information_schema.tables t where lower(t.table_schema) like lower('%') and lower(t.table_name) like lower('%')) order by "@schema", "@table" 2019-05-20 07:45:20.943 INFO 487 --- [ parallel-3] c.g.m.s.s.s.wrappers.JdbcSelectQuery : Thread[parallel-3,5,main] line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' 2019-05-20 07:45:21.331 INFO 487 --- [o-auto-1-exec-4] c.g.m.s.s.s.wrappers.JdbcSelectQuery : select "@schema" /* { "label": "owner", "description": "Owner of the table", "visible": true } */ , "@table" /* { "label": "table name", "description": "Name of the table", "visible": true } */ , remarks properties , last_modification /* { "label": "last modification", "description": "Last modification" } */ , table_type /* { "label": "table type", "description": "Typical types", "visible": true, "values": ['TABLE', 'VIEW', 'SYSTEM TABLE', 'GLOBAL TEMPORARY', 'LOCAL TEMPORARY', 'ALIAS', 'SYNONYM'] } */ from (select t.table_schema as "@schema" , t.table_name as "@table" , t.* from information_schema.tables t where lower(t.table_schema) like lower('BOOKINGS') and lower(t.table_name) like lower('AIRCRAFTS')) order by "@schema", "@table" 2019-05-20 07:45:21.332 INFO 487 --- [ parallel-4] c.g.m.s.s.s.wrappers.JdbcSelectQuery : Thread[parallel-4,5,main] line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' 2019-05-20 07:45:21.599 INFO 487 --- [o-auto-1-exec-4] c.g.m.s.s.s.wrappers.JdbcSelectQuery : select "@schema" /* { "label": "owner", "description": "Owner of the table", "visible": true } */ , "@table" /* { "label": "table name", "description": "Name of the table", "visible": true } */ , remarks properties , last_modification /* { "label": "last modification", "description": "Last modification" } */ , table_type /* { "label": "table type", "description": "Typical types", "visible": true, "values": ['TABLE', 'VIEW', 'SYSTEM TABLE', 'GLOBAL TEMPORARY', 'LOCAL TEMPORARY', 'ALIAS', 'SYNONYM'] } */ from (select t.table_schema as "@schema" , t.table_name as "@table" , t.* from information_schema.tables t where lower(t.table_schema) like lower('not_exist_schema') and lower(t.table_name) like lower('%')) order by "@schema", "@table" 2019-05-20 07:45:21.600 INFO 487 --- [ parallel-5] c.g.m.s.s.s.wrappers.JdbcSelectQuery : Thread[parallel-5,5,main] line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' 2019-05-20 07:45:21.841 INFO 487 --- [o-auto-1-exec-5] c.g.m.s.s.s.wrappers.JdbcSelectQuery : select "@schema" /* { "label": "owner", "description": "Owner of the table", "visible": true } */ , "@table" /* { "label": "table name", "description": "Name of the table", "visible": true } */ , remarks properties , last_modification /* { "label": "last modification", "description": "Last modification" } */ , table_type /* { "label": "table type", "description": "Typical types", "visible": true, "values": ['TABLE', 'VIEW', 'SYSTEM TABLE', 'GLOBAL TEMPORARY', 'LOCAL TEMPORARY', 'ALIAS', 'SYNONYM'] } */ from (select t.table_schema as "@schema" , t.table_name as "@table" , t.* from information_schema.tables t where lower(t.table_schema) like lower('%') and lower(t.table_name) like lower('%')) order by "@schema", "@table" 2019-05-20 07:45:21.842 INFO 487 --- [ parallel-6] c.g.m.s.s.s.wrappers.JdbcSelectQuery : Thread[parallel-6,5,main] line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' 2019-05-20 07:45:22.371 INFO 487 --- [o-auto-1-exec-7] c.g.m.s.s.s.wrappers.JdbcSelectQuery : select "@schema" /* { "label": "owner", "description": "Owner of the table", "visible": true } */ , "@table" /* { "label": "table name", "description": "Name of the table", "visible": true } */ , remarks properties , last_modification /* { "label": "last modification", "description": "Last modification" } */ , table_type /* { "label": "table type", "description": "Typical types", "visible": true, "values": ['TABLE', 'VIEW', 'SYSTEM TABLE', 'GLOBAL TEMPORARY', 'LOCAL TEMPORARY', 'ALIAS', 'SYNONYM'] } */ from (select t.table_schema as "@schema" , t.table_name as "@table" , t.* from information_schema.tables t where lower(t.table_schema) like lower('BOOKINGS') and lower(t.table_name) like lower('AIRPORTS')) order by "@schema", "@table" 2019-05-20 07:45:22.372 INFO 487 --- [ parallel-7] c.g.m.s.s.s.wrappers.JdbcSelectQuery : Thread[parallel-7,5,main] line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 6:7 no viable alternative at input '(' line 8:17 token recognition error at: '*\n' line 10:62 token recognition error at: '}' line 11:60 token recognition error at: '}' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 8:7 no viable alternative at input '(' line 11:17 token recognition error at: '*\n' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 8:7 no viable alternative at input '(' line 11:17 token recognition error at: '*\n' line 1:0 missing MULTIPLE_LINE_COMMENT at 'select' line 8:7 no viable alternative at input '(' line 11:17 token recognition error at: '*\n' [INFO] Tests run: 14, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 18.914 s - in com.github.mgramin.sqlboot.rest.controllers.ApiControllerITCase 2019-05-20 07:45:23.785 INFO 487 --- [ Thread-8] o.s.s.concurrent.ThreadPoolTaskExecutor : Shutting down ExecutorService 'applicationTaskExecutor' 2019-05-20 07:45:23.786 INFO 487 --- [ Thread-8] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated... 2019-05-20 07:45:23.790 INFO 487 --- [ Thread-8] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed. [INFO] [INFO] Results: [INFO] [INFO] Tests run: 14, Failures: 0, Errors: 0, Skipped: 0 [INFO] [INFO] [INFO] --- maven-failsafe-plugin:2.22.1:verify (default) @ sql-boot --- [INFO] [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ sql-boot --- [INFO] Installing /home/r/repo/target/sql-boot-0.3.0-SNAPSHOT.jar to /home/r/.m2/repository/com/github/mgramin/com/github/mgramin/sqlboot/sql-boot/0.3.0-SNAPSHOT/sql-boot-0.3.0-SNAPSHOT.jar [INFO] Installing /home/r/repo/pom.xml to /home/r/.m2/repository/com/github/mgramin/com/github/mgramin/sqlboot/sql-boot/0.3.0-SNAPSHOT/sql-boot-0.3.0-SNAPSHOT.pom [INFO] Installing /home/r/repo/target/sql-boot.zip to /home/r/.m2/repository/com/github/mgramin/com/github/mgramin/sqlboot/sql-boot/0.3.0-SNAPSHOT/sql-boot-0.3.0-SNAPSHOT.zip [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESS [INFO] ------------------------------------------------------------------------ [INFO] Total time: 01:34 min [INFO] Finished at: 2019-05-20T07:45:24+00:00 [INFO] Final Memory: 88M/639M [INFO] ------------------------------------------------------------------------ + mv /home/r/repo . ++ whoami + chown -R root repo + '[' -n '' ']' ++ whoami + sudo chown -R rultor repo + cd repo + git push origin master To git@github.com:sql-boot/sql-boot.git e7fd408..f3cd4c5 master -> master container 82d68192c79e5c0fdb24702c8dc195c875ed0993e0d4c09e303c780f89d50a22 is dead Mon May 20 09:46:17 CEST 2019