jhipster / generator-jhipster

JHipster is a development platform to quickly generate, develop, & deploy modern web applications & microservice architectures.
https://www.jhipster.tech
Apache License 2.0
21.55k stars 4.02k forks source link

Microservice jaxb-api missing #9361

Closed OlivierMary closed 5 years ago

OlivierMary commented 5 years ago
Overview of the issue

On a fresh generation start microservice failed cause jaxb-api implementation missing No problem for gateway or mono.

...
Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [javax.servlet.Filter]: Factory method 'springSecurityFilterChain' threw exception; nested exception is java.lang.RuntimeException: javax.xml.bind.JAXB
Exception: Implementation of JAXB-API has not been found on module path or classpath.                                                                                                                                                         
 - with linked exception:                                                                                                                                                                                                                     
[java.lang.ClassNotFoundException: com.sun.xml.internal.bind.v2.ContextFactory]                                                                                                                                                               
        at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:185) ~[spring-beans-5.0.12.RELEASE.jar:5.0.12.RELEASE]                                                          
        at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:583) ~[spring-beans-5.0.12.RELEASE.jar:5.0.12.RELEASE]                                                        
        ... 23 more                                                                                                                                                                                                                           
Caused by: java.lang.RuntimeException: javax.xml.bind.JAXBException: Implementation of JAXB-API has not been found on module path or classpath.                                                                                               
 - with linked exception:                                                                                                                                                                                                                     
[java.lang.ClassNotFoundException: com.sun.xml.internal.bind.v2.ContextFactory] 
...
Motivation for or Use Case

just ./gradlew

Reproduce the error

generate microservice as following jhipster info, start docker dependencies and ./gradlew

Related issues

0 similar issues

Suggest a Fix

add this or similar dependencies:

    compile('javax.xml.bind:jaxb-api:2.3.1')
    compile('javax.activation:activation:1.1.1')
    compile('org.glassfish.jaxb:jaxb-runtime:2.3.2')

INFO! Using JHipster version installed locally in current project's node_modules INFO! Executing jhipster:info INFO! Options: from-cli: true

JHipster Version(s)
aaaaa@0.0.0 /home/saku/repos/aaaaa
└── generator-jhipster@5.8.2 
JHipster configuration, a .yo-rc.json file generated in the root folder
.yo-rc.json file
{
  "generator-jhipster": {
    "promptValues": {
      "packageName": "fr.omary.aaaaaaaa",
      "nativeLanguage": "fr"
    },
    "jhipsterVersion": "5.8.2",
    "applicationType": "microservice",
    "baseName": "aaaaaaaaaaa",
    "packageName": "fr.omary.aaaaaaaaaaa",
    "packageFolder": "fr/omary/aaaaaaaaaaaaa",
    "serverPort": "8081",
    "authenticationType": "oauth2",
    "cacheProvider": "hazelcast",
    "enableHibernateCache": false,
    "websocket": false,
    "databaseType": "mongodb",
    "devDatabaseType": "mongodb",
    "prodDatabaseType": "mongodb",
    "searchEngine": "elasticsearch",
    "messageBroker": "kafka",
    "serviceDiscoveryType": "eureka",
    "buildTool": "gradle",
    "enableSwaggerCodegen": true,
    "jwtSecretKey": "aaaaaaaaaaaa",
    "testFrameworks": [
      "gatling",
      "cucumber"
    ],
    "jhiPrefix": "jhi",
    "entitySuffix": "",
    "dtoSuffix": "DTO",
    "otherModules": [],
    "enableTranslation": true,
    "clientPackageManager": "npm",
    "nativeLanguage": "fr",
    "languages": [
      "fr",
      "en",
      "de"
    ],
    "skipClient": true,
    "skipUserManagement": true
  }
}
JDL for the Entity configuration(s) entityName.json files generated in the .jhipster directory
JDL entity definitions

Environment and Tools

openjdk version "1.8.0_191" OpenJDK Runtime Environment (build 1.8.0_191-8u191-b12-2-b12) OpenJDK 64-Bit Server VM (build 25.191-b12, mixed mode)

git version 2.20.1

node: v11.10.1

npm: 6.7.0

Docker version 18.06.3-ce, build d7080c1

docker-compose version 1.21.0, build unknown

INFO! Congratulations, JHipster execution is complete!

Browsers and Operating System
Linux version 4.19.0-3-amd64 (debian-kernel@lists.debian.org) (gcc version 8.2.0 (Debian 8.2.0-20)) #1 SMP Debian 4.19.20-1 (2019-02-11)
Distributor ID: Debian
Description:    Debian GNU/Linux buster/sid
Release:        unstable
Codename:       sid
gmarziou commented 5 years ago

I had this missing jaxb api issue when running in JDK 11 while I was sure I was in JDK 8, even jhipster info was reporting wrong java. Also you should rather use an LTS version of node, ideally the same as specified in your gradle build.

gmarziou commented 5 years ago

I took your .yo-rc.json file and generated a project: no issue for compiling.

OlivierMary commented 5 years ago

Hi,

It's not compile but at runtime.

./gradlew With default task.

gmarziou commented 5 years ago

I have no issue running it as well with jhipster-registry, mongodb and kafka containers running.

OlivierMary commented 5 years ago

without this dependencies my console:

/usr/lib/jvm/java-11-openjdk-amd64/bin/java -XX:TieredStopAtLevel=1 -noverify -Dspring.output.ansi.enabled=always -Dcom.sun.management.jmxremote -Dspring.liveBeansView.mbeanDomain -Dspring.application.admin.enabled=true -javaagent:/home/saku/.local/share/JetBrains/Toolbox/apps/IDEA-U/ch-0/183.5912.21/lib/idea_rt.jar=44023:/home/saku/.local/share/JetBrains/Toolbox/apps/IDEA-U/ch-0/183.5912.21/bin -Dfile.encoding=UTF-8 -classpath /home/saku/repos/aaaaaa/aaaaaa-bbbb/out/production/classes:/home/saku/repos/aaaaaa/aaaaaa-bbbb/out/production/resources:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-devtools/2.0.8.RELEASE/8995dcaa30061e49b62cc8213ac50e1f4d09cfef/spring-boot-devtools-2.0.8.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.mapstruct/mapstruct-processor/1.2.0.Final/c51aac238f3904b14daac804f105639ac47ebb2a/mapstruct-processor-1.2.0.Final.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-configuration-processor/2.0.8.RELEASE/932aacee7e08f81e26825a31ac52e666b2799896/spring-boot-configuration-processor-2.0.8.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/io.github.jhipster/jhipster-framework/2.1.1/ae4c1d5f19e07a692f3acacc6a2fa5973b30f69b/jhipster-framework-2.1.1.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-cache/2.0.8.RELEASE/14793c607b1f3932a839f56e7aabc9ed0e86bab7/spring-boot-starter-cache-2.0.8.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/io.dropwizard.metrics/metrics-core/4.0.3/bb562ee73f740bb6b2bf7955f97be6b870d9e9f0/metrics-core-4.0.3.jar:/home/saku/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-registry-prometheus/1.1.0/c12bd6c481ba8614793c2c458fe0334fc4202853/micrometer-registry-prometheus-1.1.0.jar:/home/saku/.gradle/caches/modules-2/files-2.1/net.logstash.logback/logstash-logback-encoder/5.2/52c79b374e57ff09a9a366323f9946de811afe1e/logstash-logback-encoder-5.2.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-hppc/2.9.8/8dc8220f8cb398f0a9250f8d7d8970f22868f117/jackson-datatype-hppc-2.9.8.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-actuator/2.0.8.RELEASE/fde874a90a08b230f446f75ac33d2cae0d6ec5f/spring-boot-starter-actuator-2.0.8.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator-autoconfigure/2.0.8.RELEASE/1e52798743da9563e287a5ab8c03e3b170ed64be/spring-boot-actuator-autoconfigure-2.0.8.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.cloud/spring-cloud-security/2.0.1.RELEASE/ff52ee64b429f6d4c345ad84ac2a5d13de5a5643/spring-cloud-security-2.0.1.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-web/2.0.8.RELEASE/b5938b13bacc8810cd927966cee84ea70a5dfba5/spring-boot-starter-web-2.0.8.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-json/2.0.8.RELEASE/e582ff5ef0f65a5853a52a7b71fd13b3d51b79b/spring-boot-starter-json-2.0.8.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jsr310/2.9.8/28ad1bced632ba338e51c825a652f6e11a8e6eac/jackson-datatype-jsr310-2.9.8.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.cloud/spring-cloud-starter-netflix-hystrix/2.0.2.RELEASE/87609f6c3aacfeba4c9dd20c434d44274fadf5e5/spring-cloud-starter-netflix-hystrix-2.0.2.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.netflix.hystrix/hystrix-metrics-event-stream/1.5.12/3b3beae83ab5e8c10154c9e9581d7c210276e227/hystrix-metrics-event-stream-1.5.12.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.netflix.hystrix/hystrix-serialization/1.5.12/ef4a2758e5bc6cf42ae848d4ba3d5363e0a2b27/hystrix-serialization-1.5.12.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.module/jackson-module-afterburner/2.9.8/844d71767c67429a0387b845e92043821fb2c527/jackson-module-afterburner-2.9.8.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.cloud/spring-cloud-starter-config/2.0.2.RELEASE/aaa3700a807c945e65e20a51994b4754a7444987/spring-cloud-starter-config-2.0.2.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.security.oauth.boot/spring-security-oauth2-autoconfigure/2.0.8.RELEASE/94e449dd384ee9b6b72f2ce28949573a2ff98fd2/spring-security-oauth2-autoconfigure-2.0.8.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.cloud/spring-cloud-stream-binder-kafka/2.0.1.RELEASE/2cbbb79c48efe4edea7b420bdf5fc4482d5fe730/spring-cloud-stream-binder-kafka-2.0.1.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.cloud/spring-cloud-stream-binder-kafka-core/2.0.1.RELEASE/aa3359b06925a90dac2681dbddd9f609af3e31d6/spring-cloud-stream-binder-kafka-core-2.0.1.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.cloud/spring-cloud-stream/2.0.1.RELEASE/21c072dac876747039527088a4a409da57f8e572/spring-cloud-stream-2.0.1.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.integration/spring-integration-tuple/1.0.0.RELEASE/4ac09adb2ab6857604784b3e61ef02bcdc974928/spring-integration-tuple-1.0.0.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework/spring-tuple/1.0.0.RELEASE/5feaacebc66a885e9f2017063586df2300ce5c68/spring-tuple-1.0.0.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.zalando/problem-spring-web/0.24.0-RC.0/b9b3f1f7e82edc5dba0ba3121e1c80c5c60dba67/problem-spring-web-0.24.0-RC.0.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.zalando/problem-spring-common/0.24.0-RC.0/c25bfe1f03610b7adae5bd1f9c04c4dcf9e3d8ee/problem-spring-common-0.24.0-RC.0.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.zalando/problem-violations/0.24.0-RC.0/dd9bdc672d127bad23239f13f32a6e2295577d47/problem-violations-0.24.0-RC.0.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.zalando/jackson-datatype-problem/0.21.0/63bb96418d5dce40feb47e7e904fdf597f497295/jackson-datatype-problem-0.21.0.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.cloud/spring-cloud-config-client/2.0.2.RELEASE/a60cad031e20a76121070fe570ed9a76aa89a290/spring-cloud-config-client-2.0.2.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.github.mongobee/mongobee/0.13/134edf7f44dc05ce1bd2c2ca7de39d6bbccdcc61/mongobee-0.13.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.jongo/jongo/1.3.0/291fe175a7c7255741d28dd539ae5798469e6d58/jongo-1.3.0.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-data-elasticsearch/2.0.8.RELEASE/340ddfa98fdb18d43978cf25761f18e40f5e9b70/spring-boot-starter-data-elasticsearch-2.0.8.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.github.vanroy/spring-boot-starter-data-jest/3.1.5.RELEASE/70e735ab7054e7d7dd9305cc72745b5931f50fc1/spring-boot-starter-data-jest-3.1.5.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.github.vanroy/spring-data-jest/3.1.5.RELEASE/fbaaa4dc583f3b1fd66c2795e59751cb10273536/spring-data-jest-3.1.5.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-elasticsearch/3.0.13.RELEASE/c7eb8e645a7217629c7240779006bd2fe088adc4/spring-data-elasticsearch-3.0.13.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jdk8/2.9.8/bcd02aa9195390e23747ed40bf76be869ad3a2fb/jackson-datatype-jdk8-2.9.8.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.module/jackson-module-parameter-names/2.9.8/c4eef0e6e20d60fb27af4bc4770dba7bcc3f6de6/jackson-module-parameter-names-2.9.8.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.cloud/spring-cloud-starter-netflix-eureka-client/2.0.2.RELEASE/7edcdc61bea6b0f4e6b925c56b11db083e42bbe5/spring-cloud-starter-netflix-eureka-client-2.0.2.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.cloud/spring-cloud-starter-netflix-ribbon/2.0.2.RELEASE/adde709e1140f3b60a709cc2109bea00a2f8b1e9/spring-cloud-starter-netflix-ribbon-2.0.2.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.cloud/spring-cloud-starter-netflix-archaius/2.0.2.RELEASE/971bb26eb0563d487a41a3745e4494e032eb0e7e/spring-cloud-starter-netflix-archaius-2.0.2.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.netflix.ribbon/ribbon/2.2.5/3f97c8acfc68c35012f00d10b9ac63fc8f48d790/ribbon-2.2.5.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.netflix.ribbon/ribbon-httpclient/2.2.5/e2662937935d218f2c63105f6df39c3dfa0d06a1/ribbon-httpclient-2.2.5.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.netflix.ribbon/ribbon-eureka/2.2.5/58016757f3ed6e98c0c1ca1f37d7855a2409551b/ribbon-eureka-2.2.5.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.netflix.ribbon/ribbon-transport/2.2.5/7c8e321322a98c72a36f4a81f84cafe21273c010/ribbon-transport-2.2.5.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.netflix.ribbon/ribbon-loadbalancer/2.2.5/5f713ef0b8d01580666face5e91d8c6af1daa468/ribbon-loadbalancer-2.2.5.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.netflix.ribbon/ribbon-core/2.2.5/80b6fe934799269073e69c5d7e67334459ef7e2e/ribbon-core-2.2.5.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.netflix.hystrix/hystrix-javanica/1.5.12/5e4d888e0dba811e8ac3a9dbc8cbcc511734ace4/hystrix-javanica-1.5.12.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.cloud/spring-cloud-starter-openfeign/2.0.2.RELEASE/c6c1b5451eef8b72006c4271d0d0374bd8e49d7e/spring-cloud-starter-openfeign-2.0.2.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/io.github.openfeign/feign-hystrix/9.7.0/358d29c524b5725db4305e78e9b09fe9d02d2d2/feign-hystrix-9.7.0.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.netflix.hystrix/hystrix-core/1.5.12/75379b6671fcaa9cec33035df684a68ec7741ca6/hystrix-core-1.5.12.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.netflix.eureka/eureka-core/1.9.3/8e134b576d2e55bd36b01d607eeea0e181f12150/eureka-core-1.9.3.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.netflix.eureka/eureka-client/1.9.3/9aa210eb20e2f9390e626d3e6b3dddef4d7ea8f1/eureka-client-1.9.3.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.netflix.netflix-commons/netflix-eventbus/0.3.0/3f864adbe81f0849729fcbba3fe693c32be739ea/netflix-eventbus-0.3.0.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.netflix.archaius/archaius-core/0.7.6/be0c1024d08ad68ec25f9f32b0e9df1ab7ecb45b/archaius-core-0.7.6.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-databind/2.9.8/11283f21cc480aa86c4df7a0a3243ec508372ed2/jackson-databind-2.9.8.jar:/home/saku/.gradle/caches/modules-2/files-2.1/io.springfox/springfox-swagger2/2.9.2/362676bc7f4c6f9f1d568741becab0dfc198c898/springfox-swagger2-2.9.2.jar:/home/saku/.gradle/caches/modules-2/files-2.1/io.springfox/springfox-swagger-common/2.9.2/b38a41b3044af80cb7f41f67be5d158c9f6491ec/springfox-swagger-common-2.9.2.jar:/home/saku/.gradle/caches/modules-2/files-2.1/io.swagger/swagger-models/1.5.20/fb3a23bad80c5ed84db9dd150db2cba699531458/swagger-models-1.5.20.jar:/home/saku/.m2/repository/com/fasterxml/jackson/core/jackson-annotations/2.9.0/jackson-annotations-2.9.0.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.hazelcast/hazelcast-spring/3.9.4/bba2ef2df43feb92bccd7640a93eb81829eaf980/hazelcast-spring-3.9.4.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.hazelcast/hazelcast/3.9.4/e935f41bdecac3523aa758c74bdac74f9ba61873/hazelcast-3.9.4.jar:/home/saku/.gradle/caches/modules-2/files-2.1/javax.cache/cache-api/1.1.0/77bdcff7814076dfa61611b0db88487c515150b6/cache-api-1.1.0.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-cloud-connectors/2.0.8.RELEASE/768031afc779a84e1381c19b8a6d23312a5cac00/spring-boot-starter-cloud-connectors-2.0.8.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.cloud/spring-cloud-localconfig-connector/2.0.4.RELEASE/b981479ec59c1938d4b0e69d5cca5b8c88940776/spring-cloud-localconfig-connector-2.0.4.RELEASE.jar:/home/saku/.m2/repository/org/apache/commons/commons-lang3/3.7/commons-lang3-3.7.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.cloud/spring-cloud-openfeign-core/2.0.2.RELEASE/5d44cbdb23fc90942b7c160b2ecbb9f96041614c/spring-cloud-openfeign-core-2.0.2.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/io.github.openfeign.form/feign-form-spring/3.3.0/1a7f573dc3192c5d7269bc2e45f03a3b220e4002/feign-form-spring-3.3.0.jar:/home/saku/.gradle/caches/modules-2/files-2.1/commons-fileupload/commons-fileupload/1.3.3/4ff14d809195b711fd6bcc87e6777f886730ca1/commons-fileupload-1.3.3.jar:/home/saku/.gradle/caches/modules-2/files-2.1/commons-io/commons-io/2.6/815893df5f31da2ece4040fe0a12fd44b577afaf/commons-io-2.6.jar:/home/saku/.gradle/caches/modules-2/files-2.1/javax.transaction/javax.transaction-api/1.2/d81aff979d603edd90dcd8db2abc1f4ce6479e3e/javax.transaction-api-1.2.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-loader-tools/2.0.8.RELEASE/cd4f3602b0820474689da04094ee6b543aa57017/spring-boot-loader-tools-2.0.8.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-mail/2.0.8.RELEASE/f576a09b4c13c5ec33e5ff41959659ef3e9f9c92/spring-boot-starter-mail-2.0.8.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.cloud/spring-cloud-netflix-eureka-client/2.0.2.RELEASE/7f3c2971acfd54c21abc3a8aff24a2ffce9e31bc/spring-cloud-netflix-eureka-client-2.0.2.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.cloud/spring-cloud-netflix-core/2.0.2.RELEASE/159d63bc80209e61a273ef6d7c0aa25c8b31f072/spring-cloud-netflix-core-2.0.2.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-aop/2.0.8.RELEASE/5bdc15467a68640aeb8c37658cf61284217c06e4/spring-boot-starter-aop-2.0.8.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-data-mongodb/2.0.8.RELEASE/7554328aea5eacca3d1f1ba8af23f78226c6c475/spring-boot-starter-data-mongodb-2.0.8.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-security/2.0.8.RELEASE/2bde596490fb0ab213ac8e6d2b989f5e44287637/spring-boot-starter-security-2.0.8.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-thymeleaf/2.0.8.RELEASE/e38c61af239d9fee819c4ec5d150ecd1535e3dfc/spring-boot-starter-thymeleaf-2.0.8.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.cloud/spring-cloud-starter/2.0.2.RELEASE/a145c38492435b6ef53c145c4ba7177de65fbb46/spring-cloud-starter-2.0.2.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-validation/2.0.8.RELEASE/59a2aa03458755548d7c123f3694553906b4ddf9/spring-boot-starter-validation-2.0.8.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter/2.0.8.RELEASE/807ebe1e555159c36a4274175743bcb5ea0a78a4/spring-boot-starter-2.0.8.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-logging/2.0.8.RELEASE/478802d17e998de074c71a495abaf9a76be03c0/spring-boot-starter-logging-2.0.8.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.integration/spring-integration-kafka/3.0.3.RELEASE/c7b56eb230cc4d9f455e8216af70ee38b68e776a/spring-integration-kafka-3.0.3.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.kafka/spring-kafka/2.1.12.RELEASE/bfad0763b55067edc0394fb8f62b805666959753/spring-kafka-2.1.12.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-undertow/2.0.8.RELEASE/a35f76532f9584c10fa6f637d4b2f266cc90ec76/spring-boot-starter-undertow-2.0.8.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.integration/spring-integration-jmx/5.0.11.RELEASE/d5e0db6123671409f0a3dd00e9a8ae1108f34dd1/spring-integration-jmx-5.0.11.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.integration/spring-integration-core/5.0.11.RELEASE/1db73f30da2598a30ad9d79e5670c695148fe976/spring-integration-core-5.0.11.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.retry/spring-retry/1.2.3.RELEASE/18893fa90a215915fbff34b17218b82e93465999/spring-retry-1.2.3.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.security.oauth/spring-security-oauth2/2.3.4.RELEASE/8637380e2f09739dd8ab3484031723446cace6f1/spring-security-oauth2-2.3.4.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.security/spring-security-config/5.0.11.RELEASE/66ee0f694e0a92a03385b3206c8b12a9e54268ea/spring-security-config-5.0.11.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.security/spring-security-data/5.0.11.RELEASE/1b82d80185778915b87e85698e90fec79f3b671/spring-security-data-5.0.11.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.security/spring-security-web/5.0.11.RELEASE/303d3ec23ae9c71b5566bb924f7691fa763a224/spring-security-web-5.0.11.RELEASE.jar:/home/saku/.m2/repository/org/springframework/security/spring-security-jwt/1.0.9.RELEASE/spring-security-jwt-1.0.9.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/io.springfox/springfox-bean-validators/2.9.2/b3faf1ce16918ffc9c3b9932855dd667ab390b95/springfox-bean-validators-2.9.2.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.mapstruct/mapstruct-jdk8/1.2.0.Final/efba1f379a16a29d2adaaeeac4286a37c3ebe916/mapstruct-jdk8-1.2.0.Final.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-autoconfigure/2.0.8.RELEASE/1c7381ae3817045699435f64fcd5cadf95ff9a6e/spring-boot-autoconfigure-2.0.8.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-actuator/2.0.8.RELEASE/1515abce379117e39beadeac94c0563d15239ef5/spring-boot-actuator-2.0.8.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-core/2.7/a3f2b4e64c61a7fc1ed8f1e5ba371933404ed98a/log4j-core-2.7.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/2.0.8.RELEASE/f3a872db7ad747eeaf602af5b515f50d715539d0/spring-boot-2.0.8.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework/spring-context-support/5.0.12.RELEASE/f0f7a7b233a917172305752ce75f941f6548fe56/spring-context-support-5.0.12.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/io.micrometer/micrometer-core/1.1.0/1720fe6241600c2637d25f8515f2afdbbc46e6b8/micrometer-core-1.1.0.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-mongodb/2.0.13.RELEASE/7a89ddf92fed0c7b1a8c690f07889aed338a4517/spring-data-mongodb-2.0.13.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework/spring-webmvc/5.0.12.RELEASE/987acd743219f144b6e82d1f00de49af272bbc51/spring-webmvc-5.0.12.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.cloud/spring-cloud-spring-service-connector/2.0.4.RELEASE/49e1c3ae1236a62b3df46a367d45aaf8fa78011d/spring-cloud-spring-service-connector-2.0.4.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.security/spring-security-core/5.0.11.RELEASE/e706bafb61d43ec405cce5fa927b465d14a140a9/spring-security-core-5.0.11.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/io.springfox/springfox-spring-web/2.9.2/ed2ed714a6cba8804d00f80f0534901e4c7a3211/springfox-spring-web-2.9.2.jar:/home/saku/.gradle/caches/modules-2/files-2.1/io.springfox/springfox-schema/2.9.2/e268f38774b16bb51a92ccaef0dcf3dc651c0cee/springfox-schema-2.9.2.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.7/8de00e382a817981b737be84cb8def687d392963/log4j-api-2.7.jar:/home/saku/.gradle/caches/modules-2/files-2.1/io.springfox/springfox-spi/2.9.2/6ac686190a6ceaccdae8b50d03b0501d144a6666/springfox-spi-2.9.2.jar:/home/saku/.gradle/caches/modules-2/files-2.1/io.springfox/springfox-core/2.9.2/2e26f58939c594fb5c958c3a1c7bedf83d2f2702/springfox-core-2.9.2.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.plugin/spring-plugin-metadata/1.2.0.RELEASE/97223fc496b6cab31602eedbd4202aa4fff0d44f/spring-plugin-metadata-1.2.0.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.plugin/spring-plugin-core/1.2.0.RELEASE/f380e7760032e7d929184f8ad8a33716b75c0657/spring-plugin-core-1.2.0.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework/spring-context/5.0.12.RELEASE/e48e296b05852649486837e97c2b99fac849e80b/spring-context-5.0.12.RELEASE.jar:/home/saku/.m2/repository/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.jar:/home/saku/.m2/repository/org/apache/logging/log4j/log4j-to-slf4j/2.10.0/log4j-to-slf4j-2.10.0.jar:/home/saku/.m2/repository/org/slf4j/jul-to-slf4j/1.7.25/jul-to-slf4j-1.7.25.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.apache.kafka/kafka-clients/1.0.2/af11c0a80b6e2396617e054706141acfd6cbb826/kafka-clients-1.0.2.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.thymeleaf/thymeleaf-spring5/3.0.11.RELEASE/de7bf0adf13b5e9c4811f95edf18279da193c0c6/thymeleaf-spring5-3.0.11.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.thymeleaf.extras/thymeleaf-extras-java8time/3.0.2.RELEASE/8b9f94b4d7b11217f08ec21204b5ce52ea366166/thymeleaf-extras-java8time-3.0.2.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.zalando/faux-pas/0.8.0/4a2d93111b2b5e35577fdf641a7551d3544b414f/faux-pas-0.8.0.jar:/home/saku/.gradle/caches/modules-2/files-2.1/io.github.openfeign/feign-slf4j/9.7.0/f74f4241746a93bf64a307ac75dd4f2c716d5ca1/feign-slf4j-9.7.0.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-commons/2.0.13.RELEASE/8bc9132496a92a5fb53038e1dbf10fe50d385116/spring-data-commons-2.0.13.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/io.searchbox/jest/5.3.4/bd1d6a9842b397c9ffa0ca88a5786178aa8eb0bb/jest-5.3.4.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.thymeleaf/thymeleaf/3.0.11.RELEASE/628ebb91f520053d4120b7b18bf78ff295d57461/thymeleaf-3.0.11.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/io.reactivex/rxnetty-contexts/0.4.9/6efe17a25602a5424c18ab975aa9c28b6d6b7f56/rxnetty-contexts-0.4.9.jar:/home/saku/.gradle/caches/modules-2/files-2.1/io.reactivex/rxnetty-servo/0.4.9/b7d6d6e132686c280f16710eaa3e90719f6808f8/rxnetty-servo-0.4.9.jar:/home/saku/.gradle/caches/modules-2/files-2.1/io.reactivex/rxnetty/0.4.9/5aff3c9d6bb9d9066c378bb3d2a4413ed1773bcf/rxnetty-0.4.9.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.netflix.netflix-commons/netflix-commons-util/0.3.0/8a6ffc41308c300197918eff3df1a7447ddaf468/netflix-commons-util-0.3.0.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.netflix.netflix-commons/netflix-statistics/0.1.1/12f6e48253f9cafa0e24d7d232ff504c52143212/netflix-statistics-0.1.1.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.netflix.netflix-commons/netflix-infix/0.3.0/acc65969f7367ddd2f1265e0cd7330509ed530dc/netflix-infix-0.3.0.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.netflix.servo/servo-core/0.12.21/f56c3bf161217be98fbe4135adf8480590db9c37/servo-core-0.12.21.jar:/home/saku/.m2/repository/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar:/home/saku/.gradle/caches/modules-2/files-2.1/io.prometheus/simpleclient_common/0.5.0/bfd93082d7cf85c0543c2ccc286b96c817d1090c/simpleclient_common-0.5.0.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.elasticsearch.client/transport/5.6.14/380f559662ccf7664ed88b9d0612b8adbb4ee684/transport-5.6.14.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.elasticsearch.plugin/transport-netty4-client/5.6.14/cf737e6d30f6355445c7e76cd4aa16ad5f6fe795/transport-netty4-client-5.6.14.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.elasticsearch.plugin/reindex-client/5.6.14/5f5fb749b7aee147fe19dd15d217d23317b17bf2/reindex-client-5.6.14.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.elasticsearch.plugin/lang-mustache-client/5.6.14/4885d662dddefcd47f4667db84a8f415128f11f1/lang-mustache-client-5.6.14.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.elasticsearch.plugin/percolator-client/5.6.14/8362e04ca2788ae98a546cebb730b79f00874e26/percolator-client-5.6.14.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.elasticsearch.plugin/parent-join-client/5.6.14/97939b957393d0258e692ee7d8790e140d1f82c5/parent-join-client-5.6.14.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.elasticsearch/elasticsearch/5.6.14/a90fafaf022edaa932a0113e49daae593d9f852c/elasticsearch-5.6.14.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.carrotsearch/hppc/0.7.1/8b5057f74ea378c0150a1860874a3ebdcb713767/hppc-0.7.1.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-core/2.9.8/f5a654e4675769c716e5b387830d19b501ca191/jackson-core-2.9.8.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aop/5.0.12.RELEASE/60896945b60a841c66499a8142f06ee757399b3a/spring-aop-5.0.12.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework/spring-messaging/5.0.12.RELEASE/19dfdc19db0b6763d9403b147e14c53d13ecc023/spring-messaging-5.0.12.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework/spring-tx/5.0.12.RELEASE/ad7686b6e7884474d684c296c17b10aa805203d8/spring-tx-5.0.12.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework/spring-web/5.0.12.RELEASE/fe4f2d665523f903ec35c6e822276d009ad76af7/spring-web-5.0.12.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework/spring-beans/5.0.12.RELEASE/985983cc69e42defefef099c3cfdf24e81b28b6c/spring-beans-5.0.12.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/5.0.12.RELEASE/f57aa55bcfb7542c5d5db70285d1c83161f76ed9/spring-expression-5.0.12.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework/spring-core/5.0.12.RELEASE/b443363fffe8b1881a231bb96d8c927558a941cc/spring-core-5.0.12.RELEASE.jar:/home/saku/.m2/repository/org/apache/commons/commons-compress/1.14/commons-compress-1.14.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.sun.mail/javax.mail/1.6.2/935151eb71beff17a2ffac15dd80184a99a0514f/javax.mail-1.6.2.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.aspectj/aspectjweaver/1.8.13/ad94df2a28d658a40dc27bbaff6a1ce5fbf04e9b/aspectjweaver-1.8.13.jar:/home/saku/.gradle/caches/modules-2/files-2.1/net.java.dev.jna/jna/4.5.2/35d000afbaa4ed425d91873b40f4df9b8236875b/jna-4.5.2.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.mongodb/mongodb-driver/3.6.4/4ddaa4520e9b3a9255ae138f782d73432be6787d/mongodb-driver-3.6.4.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.hibernate.validator/hibernate-validator/6.0.14.Final/c424524aa7718c564d9199ac5892b05901cabae6/hibernate-validator-6.0.14.Final.jar:/home/saku/.gradle/caches/modules-2/files-2.1/io.undertow/undertow-websockets-jsr/1.4.26.Final/2821318aae1db1b5b446f908aa87a36b91db8c75/undertow-websockets-jsr-1.4.26.Final.jar:/home/saku/.gradle/caches/modules-2/files-2.1/io.undertow/undertow-servlet/1.4.26.Final/837a57dc5f0617899c7abe3b66642875267d7149/undertow-servlet-1.4.26.Final.jar:/home/saku/.gradle/caches/modules-2/files-2.1/io.undertow/undertow-core/1.4.26.Final/c9c6225c9a9535c43706ad9667bd84159f5ec7f6/undertow-core-1.4.26.Final.jar:/home/saku/.gradle/caches/modules-2/files-2.1/javax.servlet/javax.servlet-api/3.1.0/3cd63d075497751784b2fa84be59432f4905bf7c/javax.servlet-api-3.1.0.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.glassfish/javax.el/3.0.0/dd532526e7c8de48e40419e6af1183658a973379/javax.el-3.0.0.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.zalando/problem/0.21.0/e7b30db368a7c75fd878c6d455fc313e39f4cf0a/problem-0.21.0.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.apiguardian/apiguardian-api/1.0.0/3ef5276905e36f4d8055fe3cb0bdcc7503ffc85d/apiguardian-api-1.0.0.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.reflections/reflections/0.9.11/4c686033d918ec1727e329b7222fcb020152e32b/reflections-0.9.11.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.google.inject/guice/4.1.0/eeb69005da379a10071aa4948c48d89250febb07/guice-4.1.0.jar:/home/saku/.gradle/caches/modules-2/files-2.1/io.searchbox/jest-common/5.3.4/5d8a881b21b48bc330a06b8ebc95c0584f231a10/jest-common-5.3.4.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.google.guava/guava/25.1-jre/6c57e4b22b44e89e548b5c9f70f0c45fe10fb0b4/guava-25.1-jre.jar:/home/saku/.gradle/caches/modules-2/files-2.1/io.github.openfeign.form/feign-form/3.3.0/147b40d373999606dce20ace692006f86d34a6fb/feign-form-3.3.0.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.google.code.findbugs/annotations/3.0.1/fc019a2216218990d64dfe756e7aa20f0069dea2/annotations-3.0.1.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.google.code.findbugs/jsr305/3.0.2/25ea2e8b0c338a877313bd4672d3fe056ea78f0d/jsr305-3.0.2.jar:/home/saku/.m2/repository/javax/validation/validation-api/2.0.1.Final/validation-api-2.0.1.Final.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.cloud/spring-cloud-context/2.0.2.RELEASE/8d9ac6e1d3e0868813fcd32da377108b3de53972/spring-cloud-context-2.0.2.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.cloud/spring-cloud-commons/2.0.2.RELEASE/9a10d873baefa48b087370dc86aa59461b258591/spring-cloud-commons-2.0.2.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.security/spring-security-rsa/1.0.7.RELEASE/8fb787a76b2a31b7efbb71ae9be68b269a358302/spring-security-rsa-1.0.7.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.cloud/spring-cloud-netflix-ribbon/2.0.2.RELEASE/2a7381a1daf06b8ac5da0779216daa8d6f871e66/spring-cloud-netflix-ribbon-2.0.2.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/io.reactivex/rxjava-reactive-streams/1.2.1/dac56d021c092c34662943dae3ab1432542005/rxjava-reactive-streams-1.2.1.jar:/home/saku/.gradle/caches/modules-2/files-2.1/io.reactivex/rxjava/1.3.8/8c192792ad2e65a90867ab418ac49703f44d2baf/rxjava-1.3.8.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.thoughtworks.xstream/xstream/1.4.10/dfecae23647abc9d9fd0416629a4213a3882b101/xstream-1.4.10.jar:/home/saku/.gradle/caches/modules-2/files-2.1/io.github.openfeign/feign-java8/9.7.0/5895e69840bb46105e7eda7409a64c17a3c59167/feign-java8-9.7.0.jar:/home/saku/.gradle/caches/modules-2/files-2.1/io.github.openfeign/feign-core/9.7.0/ba4066f2db318768ad289746fc10709dbeaaaf07/feign-core-9.7.0.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.cloud/spring-cloud-cloudfoundry-connector/2.0.4.RELEASE/3dd8825c4e81d994c14c3928e5be2213df7a9807/spring-cloud-cloudfoundry-connector-2.0.4.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.cloud/spring-cloud-heroku-connector/2.0.4.RELEASE/3d3eb726458a4e010afb2afa2c8cddccd8350e2a/spring-cloud-heroku-connector-2.0.4.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/javax.xml.bind/jaxb-api/2.3.1/8531ad5ac454cc2deb9d4d32c40c4d7451939b5d/jaxb-api-2.3.1.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.sun.jersey.contribs/jersey-apache-client4/1.19.1/e1c45701a003097ace96bed4bc8fb937e9867498/jersey-apache-client4-1.19.1.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.elasticsearch.client/elasticsearch-rest-client/5.6.14/dcfd9cc5cc9ce0fceecd85734e3bff6499f56929/elasticsearch-rest-client-5.6.14.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpclient/4.5.6/1afe5621985efe90a92d0fbc9be86271efbe796f/httpclient-4.5.6.jar:/home/saku/.m2/repository/commons-codec/commons-codec/1.11/commons-codec-1.11.jar:/home/saku/.m2/repository/org/codehaus/jackson/jackson-mapper-asl/1.9.13/jackson-mapper-asl-1.9.13.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.bouncycastle/bcpkix-jdk15on/1.60/d0c46320fbc07be3a24eb13a56cee4e3d38e0c75/bcpkix-jdk15on-1.60.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.mongodb/mongo-java-driver/3.6.4/7c3c8ddcaeb039a50b80bcee78a0e93921cda866/mongo-java-driver-3.6.4.jar:/home/saku/.gradle/caches/modules-2/files-2.1/io.swagger/swagger-annotations/1.5.20/16051f93ce11ca489a5313775d825f82fcc2cd6c/swagger-annotations-1.5.20.jar:/home/saku/.m2/repository/com/fasterxml/classmate/1.3.4/classmate-1.3.4.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.hdrhistogram/HdrHistogram/2.1.9/e4631ce165eb400edecfa32e03d3f1be53dee754/HdrHistogram-2.1.9.jar:/home/saku/.m2/repository/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.jar:/home/saku/.m2/repository/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar:/home/saku/.m2/repository/org/yaml/snakeyaml/1.19/snakeyaml-1.19.jar:/home/saku/.gradle/caches/modules-2/files-2.1/io.prometheus/simpleclient/0.5.0/fbbfe2300098798e3d23f93b7b14befeceacf512/simpleclient-0.5.0.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jcl/5.0.12.RELEASE/207c604aa198f7f845a1ce046d0f9593294c7953/spring-jcl-5.0.12.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/javax.activation/activation/1.1/e6cb541461c2834bdea3eb920f1884d1eb508b50/activation-1.1.jar:/home/saku/.m2/repository/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.jar:/home/saku/.m2/repository/org/apache/logging/log4j/log4j-api/2.10.0/log4j-api-2.10.0.jar:/home/saku/.gradle/caches/modules-2/files-2.1/joda-time/joda-time/2.9.9/f7b520c458572890807d143670c9b24f4de90897/joda-time-2.9.9.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.google.code.gson/gson/2.8.5/f645ed69d595b24d4cf8b3fbb64cc505bede8829/gson-2.8.5.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.mongodb/mongodb-driver-core/3.6.4/6e737a5d706036bed528522d445dd2ffc454bd6b/mongodb-driver-core-3.6.4.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.mongodb/bson/3.6.4/da7487f3cba7ddd1e0b0814005960cf543e9d8/bson-3.6.4.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-el/8.5.37/fc91bf1f2f228859440e8665dffa1587b645ce8e/tomcat-embed-el-8.5.37.jar:/home/saku/.gradle/caches/modules-2/files-2.1/io.projectreactor/reactor-core/3.1.14.RELEASE/eb17d5ded248f2c0c25290cce6a76f8064395900/reactor-core-3.1.14.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.esotericsoftware/kryo-shaded/3.0.3/977d6b42d82de551fcf77dad84ef06c2839e3a74/kryo-shaded-3.0.3.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.lz4/lz4-java/1.5.0/d36fb639f06aaa4f17307625f80e2e32f815672a/lz4-java-1.5.0.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.xerial.snappy/snappy-java/1.1.4/d94ae6d7d27242eaa4b6c323f881edbb98e48da6/snappy-java-1.1.4.jar:/home/saku/.m2/repository/org/jboss/logging/jboss-logging/3.3.2.Final/jboss-logging-3.3.2.Final.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.jboss.xnio/xnio-nio/3.3.8.Final/8dafaf230666e526c53e544ab6a9d6ecfcbab4ee/xnio-nio-3.3.8.Final.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.jboss.xnio/xnio-api/3.3.8.Final/7942ba8330c91a12006c912e040d25a77a58c525/xnio-api-3.3.8.Final.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.jboss.spec.javax.annotation/jboss-annotations-api_1.2_spec/1.0.2.Final/d6b20c0e95c5b38f313cc2ab1a55560cedabe1f/jboss-annotations-api_1.2_spec-1.0.2.Final.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.jboss.spec.javax.websocket/jboss-websocket-api_1.1_spec/1.1.3.Final/9f4b60cb8f2373cd34ef40c43019ed9151df0dc4/jboss-websocket-api_1.1_spec-1.1.3.Final.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.security/spring-security-crypto/5.0.11.RELEASE/18e520e3270113255e30db2c67d6f932df8fd049/spring-security-crypto-5.0.11.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.cloud/spring-cloud-netflix-archaius/2.0.2.RELEASE/850f375325b47b8a331e29ccf9a7d8270f8a2361/spring-cloud-netflix-archaius-2.0.2.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/commons-configuration/commons-configuration/1.8/6cce40435bcd8018018f16898de01976b319941a/commons-configuration-1.8.jar:/home/saku/.m2/repository/javax/inject/javax.inject/1/javax.inject-1.jar:/home/saku/.gradle/caches/modules-2/files-2.1/commons-lang/commons-lang/2.6/ce1edb914c94ebc388f086c6827e8bdeec71ac2/commons-lang-2.6.jar:/home/saku/.gradle/caches/modules-2/files-2.1/commons-collections/commons-collections/3.2.2/8ad72fe39fa8c91eaaf12aadb21e0c3661fe26d5/commons-collections-3.2.2.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.sun.jersey/jersey-client/1.19.1/2df97ebd4e5c01599584c45caa3aeb563d268eef/jersey-client-1.19.1.jar:/home/saku/.m2/repository/org/ow2/asm/asm/5.0.4/asm-5.0.4.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.reactivestreams/reactive-streams/1.0.2/323964c36556eb0e6209f65c1cef72b53b461ab8/reactive-streams-1.0.2.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.codehaus.jettison/jettison/1.3.7/7d36a59a0577f11b12088b9e215d6860345b9e1d/jettison-1.3.7.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.sun.jersey/jersey-core/1.19.1/4282d106f2acd5051bd9bc2935ed9a2920c9385/jersey-core-1.19.1.jar:/home/saku/.gradle/caches/modules-2/files-2.1/javax.ws.rs/jsr311-api/1.1.1/59033da2a1afd56af1ac576750a8d0b1830d59e6/jsr311-api-1.1.1.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.github.vlsi.compactmap/compactmap/1.2.1/27aec1f3162c14b8a1178bb5c75ab43b618308ef/compactmap-1.2.1.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.codehaus.woodstox/woodstox-core-asl/4.4.1/84fee5eb1a4a1cefe65b6883c73b3fa83be3c1a1/woodstox-core-asl-4.4.1.jar:/home/saku/.gradle/caches/modules-2/files-2.1/xmlpull/xmlpull/1.1.3.1/2b8e230d2ab644e4ecaa94db7cdedbc40c805dfa/xmlpull-1.1.3.1.jar:/home/saku/.gradle/caches/modules-2/files-2.1/xpp3/xpp3_min/1.1.4c/19d4e90b43059058f6e056f794f0ea4030d60b86/xpp3_min-1.1.4c.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework.cloud/spring-cloud-connectors-core/2.0.4.RELEASE/9cd89bb12f35a2d1f0aaa99acd318dda6e1fe646/spring-cloud-connectors-core-2.0.4.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/javax.activation/javax.activation-api/1.2.0/85262acf3ca9816f9537ca47d5adeabaead7cb16/javax.activation-api-1.2.0.jar:/home/saku/.m2/repository/org/codehaus/jackson/jackson-core-asl/1.9.13/jackson-core-asl-1.9.13.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.javassist/javassist/3.21.0-GA/598244f595db5c5fb713731eddbb1c91a58d959b/javassist-3.21.0-GA.jar:/home/saku/.gradle/caches/modules-2/files-2.1/de.undercouch/bson4jackson/2.7.0/7864788c9fc02ae62538477d1ef3abb057e80640/bson4jackson-2.7.0.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.checkerframework/checker-qual/2.0.0/518929596ee3249127502a8573b2e008e2d51ed3/checker-qual-2.0.0.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.google.errorprone/error_prone_annotations/2.1.3/39b109f2cd352b2d71b52a3b5a1a9850e1dc304b/error_prone_annotations-2.1.3.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.google.j2objc/j2objc-annotations/1.1/ed28ded51a8b1c6b112568def5f4b455e6809019/j2objc-annotations-1.1.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.codehaus.mojo/animal-sniffer-annotations/1.14/775b7e22fb10026eed3f86e8dc556dfafe35f2d5/animal-sniffer-annotations-1.14.jar:/home/saku/.gradle/caches/modules-2/files-2.1/io.netty/netty-buffer/4.1.31.Final/e086523d6bb01fcab1d8dd370eecfcd606311b92/netty-buffer-4.1.31.Final.jar:/home/saku/.gradle/caches/modules-2/files-2.1/io.netty/netty-codec/4.1.31.Final/cfa60b136f5ea57787e910eee37e240bb45402a7/netty-codec-4.1.31.Final.jar:/home/saku/.gradle/caches/modules-2/files-2.1/io.netty/netty-codec-http/4.1.31.Final/bf6321b3f10ea3aefc1970b30bb8928e833f236c/netty-codec-http-4.1.31.Final.jar:/home/saku/.gradle/caches/modules-2/files-2.1/io.netty/netty-common/4.1.31.Final/39ddfa47808c8393a343513571e404fef02f45f0/netty-common-4.1.31.Final.jar:/home/saku/.gradle/caches/modules-2/files-2.1/io.netty/netty-handler/4.1.31.Final/7703c0696f2f34ec7c223c6a5750366a5f4dfb6f/netty-handler-4.1.31.Final.jar:/home/saku/.gradle/caches/modules-2/files-2.1/io.netty/netty-resolver/4.1.31.Final/8ea7a47400beedd5bb901b96a0730eea8b7b6f2a/netty-resolver-4.1.31.Final.jar:/home/saku/.gradle/caches/modules-2/files-2.1/io.netty/netty-transport/4.1.31.Final/e3396bd65e9c76accac11c29dca035da1cc39cb1/netty-transport-4.1.31.Final.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.locationtech.spatial4j/spatial4j/0.6/21b15310bddcfd8c72611c180f20cf23279809a3/spatial4j-0.6.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.vividsolutions/jts/1.13/3ccfb9b60f04d71add996a666ceb8902904fd805/jts-1.13.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.elasticsearch/jna/4.4.0-1/c9dfcec6f07ee4b1d7a6c09a7eaa9dd4fb6d2c79/jna-4.4.0-1.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.apache.lucene/lucene-core/6.6.1/b51e719d781e6ec2dbf6d6eacc20a9c2df30269a/lucene-core-6.6.1.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.apache.lucene/lucene-analyzers-common/6.6.1/52cb2bbc52221d33972faacf67e5da0ab92956bd/lucene-analyzers-common-6.6.1.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.apache.lucene/lucene-backward-codecs/6.6.1/4ad390d10b0290af6dac83a519956b98b1fd18f0/lucene-backward-codecs-6.6.1.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.apache.lucene/lucene-grouping/6.6.1/fa9069bd2b75b219a295d15394607350195b0665/lucene-grouping-6.6.1.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.apache.lucene/lucene-highlighter/6.6.1/6cc18a6e4a60b8fca62fcfaf8b9fc3ff6bf1864d/lucene-highlighter-6.6.1.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.apache.lucene/lucene-join/6.6.1/355dc2046a1574cf23d325171372531e687a72cb/lucene-join-6.6.1.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.apache.lucene/lucene-memory/6.6.1/4df5d3018bf7853b4f44eada0c3d823f25800fc3/lucene-memory-6.6.1.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.apache.lucene/lucene-misc/6.6.1/4a434f20c15a1e651ba9d3db1167fec695b557d4/lucene-misc-6.6.1.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.apache.lucene/lucene-queries/6.6.1/e138ad9807b029ca3ee0276eeb0257812c9c9179/lucene-queries-6.6.1.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.apache.lucene/lucene-queryparser/6.6.1/f80e27fee9595ced0276e3caa53b6d12cc779b0e/lucene-queryparser-6.6.1.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.apache.lucene/lucene-sandbox/6.6.1/3a4d147697dfb27b3a0f01f67c0b61175c14b011/lucene-sandbox-6.6.1.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.apache.lucene/lucene-spatial/6.6.1/a83dc0e68cc3aeb8835610022f8d2cff34096d40/lucene-spatial-6.6.1.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.apache.lucene/lucene-spatial-extras/6.6.1/c1a3c9892f1d57b14adc4bcf30509c2bec2ebafb/lucene-spatial-extras-6.6.1.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.apache.lucene/lucene-spatial3d/6.6.1/87ed4ef7f3b18bf106c6f780eea39c88c9a39ad1/lucene-spatial3d-6.6.1.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.apache.lucene/lucene-suggest/6.6.1/9c74240a249fd7c35fdeb6379ed2a929fb7c8acb/lucene-suggest-6.6.1.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.elasticsearch/securesm/1.2/4c28f5b634497d64b727961430a516f351a099d5/securesm-1.2.jar:/home/saku/.gradle/caches/modules-2/files-2.1/net.sf.jopt-simple/jopt-simple/5.0.2/98cafc6081d5632b61be2c9e60650b64ddbc637c/jopt-simple-5.0.2.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.dataformat/jackson-dataformat-smile/2.9.8/dbb47a052ac2b249ae004ce32e1e0c8bd8ee526c/jackson-dataformat-smile-2.9.8.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml/2.9.8/a1c807329eb0c75976aeb5961a506b3516ffeae3/jackson-dataformat-yaml-2.9.8.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.dataformat/jackson-dataformat-cbor/2.9.8/dc290bb8be6ad98aa20e8342f92aaa88f7b5bab2/jackson-dataformat-cbor-2.9.8.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.tdunning/t-digest/3.0/84ccf145ac2215e6bfa63baa3101c0af41017cfc/t-digest-3.0.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpcore-nio/4.4.10/486f90c2af9bb81c51e8fb905647267053d5441/httpcore-nio-4.4.10.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpasyncclient/4.1.4/f3a3240681faae3fa46b573a4c7e50cec9db0d86/httpasyncclient-4.1.4.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.esotericsoftware/minlog/1.3.0/ff07b5f1b01d2f92bb00a337f9a94873712f0827/minlog-1.3.0.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.objenesis/objenesis/2.1/87c0ea803b69252868d09308b4618f766f135a96/objenesis-2.1.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.attoparser/attoparser/2.0.5.RELEASE/a93ad36df9560de3a5312c1d14f69d938099fa64/attoparser-2.0.5.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.unbescape/unbescape/1.1.6.RELEASE/7b90360afb2b860e09e8347112800d12c12b2a13/unbescape-1.1.6.RELEASE.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.bouncycastle/bcprov-jdk15on/1.60/bd47ad3bd14b8e82595c7adaa143501e60842a84/bcprov-jdk15on-1.60.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.apache.httpcomponents/httpcore/4.4.10/acc54d9b28bdffe4bbde89ed2e4a1e86b5285e2b/httpcore-4.4.10.jar:/home/saku/.gradle/caches/modules-2/files-2.1/stax/stax-api/1.0.1/49c100caf72d658aca8e58bd74a4ba90fa2b0d70/stax-api-1.0.1.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.apache.commons/commons-math/2.2/4877b85d388275f994a5cfc7eceb73a8045d3006/commons-math-2.2.jar:/home/saku/.m2/repository/aopalliance/aopalliance/1.0/aopalliance-1.0.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.github.andrewoma.dexx/dexx-collections/0.2/a1cff10827ee471c215a99585b99f00d3a602194/dexx-collections-0.2.jar:/home/saku/.gradle/caches/modules-2/files-2.1/javax.xml.stream/stax-api/1.0-2/d6337b0de8b25e53e81b922352fbea9f9f57ba0b/stax-api-1.0-2.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.codehaus.woodstox/stax2-api/3.1.4/ac19014b1e6a7c08aad07fe114af792676b685b7/stax2-api-3.1.4.jar:/home/saku/.m2/repository/net/bytebuddy/byte-buddy/1.7.11/byte-buddy-1.7.11.jar:/home/saku/.gradle/caches/modules-2/files-2.1/com.github.spullara.mustache.java/compiler/0.9.3/2815e016c63bec4f18704ea4f5489106a5b01a99/compiler-0.9.3.jar:/home/saku/.gradle/caches/modules-2/files-2.1/commons-jxpath/commons-jxpath/1.3/c22d7d0f0f40eb7059a23cfa61773a416768b137/commons-jxpath-1.3.jar:/home/saku/.gradle/caches/modules-2/files-2.1/org.antlr/antlr-runtime/3.5.2/cd9cd41361c155f3af0f653009dcecb08d8b4afd/antlr-runtime-3.5.2.jar:/home/saku/.gradle/caches/modules-2/files-2.1/net.jcip/jcip-annotations/1.0/afba4942caaeaf46aab0b976afd57cc7c181467e/jcip-annotations-1.0.jar fr.omary.aaaaaa.bbbb.aaaaaabbbbApp
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by org.springframework.cglib.core.ReflectUtils$1 (file:/home/saku/.gradle/caches/modules-2/files-2.1/org.springframework/spring-core/5.0.12.RELEASE/b443363fffe8b1881a231bb96d8c927558a941cc/spring-core-5.0.12.RELEASE.jar) to method java.lang.ClassLoader.defineClass(java.lang.String,byte[],int,int,java.security.ProtectionDomain)
WARNING: Please consider reporting this to the maintainers of org.springframework.cglib.core.ReflectUtils$1
WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
WARNING: All illegal access operations will be denied in a future release

        ██╗ ██╗   ██╗ ████████╗ ███████╗   ██████╗ ████████╗ ████████╗ ███████╗
        ██║ ██║   ██║ ╚══██╔══╝ ██╔═══██╗ ██╔════╝ ╚══██╔══╝ ██╔═════╝ ██╔═══██╗
        ██║ ████████║    ██║    ███████╔╝ ╚█████╗     ██║    ██████╗   ███████╔╝
  ██╗   ██║ ██╔═══██║    ██║    ██╔════╝   ╚═══██╗    ██║    ██╔═══╝   ██╔══██║
  ╚██████╔╝ ██║   ██║ ████████╗ ██║       ██████╔╝    ██║    ████████╗ ██║  ╚██╗
   ╚═════╝  ╚═╝   ╚═╝ ╚═══════╝ ╚═╝       ╚═════╝     ╚═╝    ╚═══════╝ ╚═╝   ╚═╝

:: JHipster 🤓  :: Running Spring Boot 2.0.8.RELEASE ::
:: https://www.jhipster.tech ::

2019-03-04 09:19:35.478 DEBUG 26830 --- [  restartedMain] f.o.s.c.config.AsyncConfiguration        : Creating Async Task Executor
2019-03-04 09:19:36.454  WARN 26830 --- [  restartedMain] c.n.c.sources.URLConfigurationSource     : No URLs will be polled as dynamic configuration sources.
2019-03-04 09:19:44.402  INFO 26830 --- [  restartedMain] f.o.s.c.config.WebConfigurer             : Web application configuration, using profiles: swagger
2019-03-04 09:19:44.402  INFO 26830 --- [  restartedMain] f.o.s.c.config.WebConfigurer             : Web application fully configured
2019-03-04 09:19:45.132 DEBUG 26830 --- [  restartedMain] f.o.s.c.config.CacheConfiguration        : Configuring Hazelcast
2019-03-04 09:19:45.175 DEBUG 26830 --- [  restartedMain] f.o.s.c.config.CacheConfiguration        : Configuring Hazelcast clustering for instanceId: aaaaaabbbb
2019-03-04 09:19:45.175 DEBUG 26830 --- [  restartedMain] f.o.s.c.config.CacheConfiguration        : Application is running with the "dev" profile, Hazelcast cluster will only work with localhost instances
2019-03-04 09:19:45.202  INFO 26830 --- [  restartedMain] com.netflix.discovery.DiscoveryClient    : Initializing Eureka in region us-east-1
2019-03-04 09:19:45.228  INFO 26830 --- [  restartedMain] c.n.d.provider.DiscoveryJerseyProvider   : Using JSON encoding codec LegacyJacksonJson
2019-03-04 09:19:45.228  INFO 26830 --- [  restartedMain] c.n.d.provider.DiscoveryJerseyProvider   : Using JSON decoding codec LegacyJacksonJson
2019-03-04 09:19:45.319  INFO 26830 --- [  restartedMain] c.n.d.provider.DiscoveryJerseyProvider   : Using XML encoding codec XStreamXml
2019-03-04 09:19:45.319  INFO 26830 --- [  restartedMain] c.n.d.provider.DiscoveryJerseyProvider   : Using XML decoding codec XStreamXml
2019-03-04 09:19:45.445  INFO 26830 --- [  restartedMain] c.n.d.s.r.aws.ConfigClusterResolver      : Resolving eureka endpoints via configuration
2019-03-04 09:19:45.455  INFO 26830 --- [  restartedMain] com.netflix.discovery.DiscoveryClient    : Disable delta property : false
2019-03-04 09:19:45.455  INFO 26830 --- [  restartedMain] com.netflix.discovery.DiscoveryClient    : Single vip registry refresh property : null
2019-03-04 09:19:45.455  INFO 26830 --- [  restartedMain] com.netflix.discovery.DiscoveryClient    : Force full registry fetch : false
2019-03-04 09:19:45.455  INFO 26830 --- [  restartedMain] com.netflix.discovery.DiscoveryClient    : Application is null : false
2019-03-04 09:19:45.455  INFO 26830 --- [  restartedMain] com.netflix.discovery.DiscoveryClient    : Registered Applications size is zero : true
2019-03-04 09:19:45.455  INFO 26830 --- [  restartedMain] com.netflix.discovery.DiscoveryClient    : Application version is -1: true
2019-03-04 09:19:45.455  INFO 26830 --- [  restartedMain] com.netflix.discovery.DiscoveryClient    : Getting all instance registry info from the eureka server
2019-03-04 09:19:45.504  INFO 26830 --- [  restartedMain] com.netflix.discovery.DiscoveryClient    : The response status is 200
2019-03-04 09:19:45.506  INFO 26830 --- [  restartedMain] com.netflix.discovery.DiscoveryClient    : Starting heartbeat executor: renew interval is: 5
2019-03-04 09:19:45.507  INFO 26830 --- [  restartedMain] c.n.discovery.InstanceInfoReplicator     : InstanceInfoReplicator onDemand update allowed rate per min is 12
2019-03-04 09:19:45.509  INFO 26830 --- [  restartedMain] com.netflix.discovery.DiscoveryClient    : Discovery Client initialized at timestamp 1551687585509 with initial instances count: 2
2019-03-04 09:19:45.536  INFO 26830 --- [  restartedMain] com.hazelcast.instance.AddressPicker     : [LOCAL] [dev] [3.9.4] Picked [127.0.0.1]:13783, using socket ServerSocket[addr=/0:0:0:0:0:0:0:0,localport=13783], bind any local is true
2019-03-04 09:19:45.540  INFO 26830 --- [  restartedMain] com.hazelcast.system                     : [127.0.0.1]:13783 [dev] [3.9.4] Hazelcast 3.9.4 (20180420 - b8001d5) starting at [127.0.0.1]:13783
2019-03-04 09:19:45.540  INFO 26830 --- [  restartedMain] com.hazelcast.system                     : [127.0.0.1]:13783 [dev] [3.9.4] Copyright (c) 2008-2018, Hazelcast, Inc. All Rights Reserved.
2019-03-04 09:19:45.540  INFO 26830 --- [  restartedMain] com.hazelcast.system                     : [127.0.0.1]:13783 [dev] [3.9.4] Configured Hazelcast Serialization version: 1
2019-03-04 09:19:45.645  INFO 26830 --- [  restartedMain] c.h.s.i.o.impl.BackpressureRegulator     : [127.0.0.1]:13783 [dev] [3.9.4] Backpressure is disabled
2019-03-04 09:19:45.902  INFO 26830 --- [  restartedMain] com.hazelcast.instance.Node              : [127.0.0.1]:13783 [dev] [3.9.4] Creating TcpIpJoiner
2019-03-04 09:19:45.973  INFO 26830 --- [  restartedMain] c.h.s.i.o.impl.OperationExecutorImpl     : [127.0.0.1]:13783 [dev] [3.9.4] Starting 8 partition threads and 5 generic threads (1 dedicated for priority tasks)
2019-03-04 09:19:45.975  INFO 26830 --- [  restartedMain] c.h.internal.diagnostics.Diagnostics     : [127.0.0.1]:13783 [dev] [3.9.4] Diagnostics disabled. To enable add -Dhazelcast.diagnostics.enabled=true to the JVM arguments.
2019-03-04 09:19:45.982  INFO 26830 --- [  restartedMain] com.hazelcast.core.LifecycleService      : [127.0.0.1]:13783 [dev] [3.9.4] [127.0.0.1]:13783 is STARTING
2019-03-04 09:19:45.993  INFO 26830 --- [  restartedMain] com.hazelcast.system                     : [127.0.0.1]:13783 [dev] [3.9.4] Cluster version set to 3.9
2019-03-04 09:19:45.993  INFO 26830 --- [  restartedMain] c.h.internal.cluster.ClusterService      : [127.0.0.1]:13783 [dev] [3.9.4] 

Members {size:1, ver:1} [
    Member [127.0.0.1]:13783 - 0e18c272-f670-4088-a5e3-b72270f5441c this
]

2019-03-04 09:19:46.007  INFO 26830 --- [  restartedMain] com.hazelcast.core.LifecycleService      : [127.0.0.1]:13783 [dev] [3.9.4] [127.0.0.1]:13783 is STARTED
2019-03-04 09:19:46.026 DEBUG 26830 --- [  restartedMain] f.o.s.c.config.CacheConfiguration        : Starting HazelcastCacheManager
2019-03-04 09:19:47.232 DEBUG 26830 --- [  restartedMain] f.o.s.c.config.DatabaseConfiguration     : Configuring Mongobee
2019-03-04 09:19:47.245 DEBUG 26830 --- [  restartedMain] Mongobee dao                             : Index in collection dbchangelog was created
2019-03-04 09:19:47.253  INFO 26830 --- [  restartedMain] com.github.mongobee.Mongobee             : Mongobee acquired process lock, starting the data migration sequence..
2019-03-04 09:19:47.290  INFO 26830 --- [  restartedMain] com.github.mongobee.Mongobee             : [ChangeSet: id=01-addAuthorities, author=initiator, changeLogClass=fr.omary.aaaaaa.bbbb.config.dbmigrations.InitialSetupMigration, changeSetMethod=addAuthorities] passed over
2019-03-04 09:19:47.290  INFO 26830 --- [  restartedMain] com.github.mongobee.Mongobee             : Mongobee is releasing process lock.
2019-03-04 09:19:47.293  INFO 26830 --- [  restartedMain] com.github.mongobee.Mongobee             : Mongobee has finished his job.
2019-03-04 09:19:47.609  WARN 26830 --- [  restartedMain] c.n.c.sources.URLConfigurationSource     : No URLs will be polled as dynamic configuration sources.
2019-03-04 09:19:48.002 DEBUG 26830 --- [  restartedMain] i.g.j.c.apidoc.SwaggerAutoConfiguration  : Starting Swagger
2019-03-04 09:19:48.009 DEBUG 26830 --- [  restartedMain] i.g.j.c.apidoc.SwaggerAutoConfiguration  : Started Swagger in 7 ms
2019-03-04 09:19:48.426 DEBUG 26830 --- [  restartedMain] reactor.util.Loggers$LoggerFactory       : Using Slf4j logging framework
2019-03-04 09:19:48.426 DEBUG 26830 --- [  restartedMain] reactor.core.publisher.Hooks             : Enabling stacktrace debugging via onOperatorDebug
2019-03-04 09:19:48.426 DEBUG 26830 --- [  restartedMain] reactor.core.publisher.Hooks             : Hooking onEachOperator: onOperatorDebug
2019-03-04 09:19:48.524  INFO 26830 --- [  restartedMain] com.hazelcast.core.LifecycleService      : [127.0.0.1]:13783 [dev] [3.9.4] [127.0.0.1]:13783 is SHUTTING_DOWN
2019-03-04 09:19:48.526  INFO 26830 --- [  restartedMain] com.hazelcast.instance.Node              : [127.0.0.1]:13783 [dev] [3.9.4] Shutting down connection manager...
2019-03-04 09:19:48.527  INFO 26830 --- [  restartedMain] com.hazelcast.instance.Node              : [127.0.0.1]:13783 [dev] [3.9.4] Shutting down node engine...
2019-03-04 09:19:50.336  INFO 26830 --- [  restartedMain] com.hazelcast.instance.NodeExtension     : [127.0.0.1]:13783 [dev] [3.9.4] Destroying node NodeExtension.
2019-03-04 09:19:50.337  INFO 26830 --- [  restartedMain] com.hazelcast.instance.Node              : [127.0.0.1]:13783 [dev] [3.9.4] Hazelcast Shutdown is completed in 1811 ms.
2019-03-04 09:19:50.338  INFO 26830 --- [  restartedMain] com.hazelcast.core.LifecycleService      : [127.0.0.1]:13783 [dev] [3.9.4] [127.0.0.1]:13783 is SHUTDOWN
2019-03-04 09:19:50.338  INFO 26830 --- [  restartedMain] f.o.s.c.config.CacheConfiguration        : Closing Cache Manager
2019-03-04 09:19:50.367  INFO 26830 --- [  restartedMain] com.netflix.discovery.DiscoveryClient    : Shutting down DiscoveryClient ...
09:19:50.385 [restartedMain] ERROR org.springframework.boot.SpringApplication - Application run failed
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'springSecurityFilterChain' defined in class path resource [org/springframework/security/config/annotation/web/configuration/WebSecurityConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [javax.servlet.Filter]: Factory method 'springSecurityFilterChain' threw exception; nested exception is java.lang.RuntimeException: javax.xml.bind.JAXBException: Implementation of JAXB-API has not been found on module path or classpath.
 - with linked exception:
[java.lang.ClassNotFoundException: com.sun.xml.internal.bind.v2.ContextFactory]
    at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:591) ~[spring-beans-5.0.12.RELEASE.jar:5.0.12.RELEASE]
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1246) ~[spring-beans-5.0.12.RELEASE.jar:5.0.12.RELEASE]
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1096) ~[spring-beans-5.0.12.RELEASE.jar:5.0.12.RELEASE]
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:535) ~[spring-beans-5.0.12.RELEASE.jar:5.0.12.RELEASE]
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:495) ~[spring-beans-5.0.12.RELEASE.jar:5.0.12.RELEASE]
    at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:317) ~[spring-beans-5.0.12.RELEASE.jar:5.0.12.RELEASE]
    at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222) ~[spring-beans-5.0.12.RELEASE.jar:5.0.12.RELEASE]
    at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:315) ~[spring-beans-5.0.12.RELEASE.jar:5.0.12.RELEASE]
    at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199) ~[spring-beans-5.0.12.RELEASE.jar:5.0.12.RELEASE]
    at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:304) ~[spring-beans-5.0.12.RELEASE.jar:5.0.12.RELEASE]
    at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199) ~[spring-beans-5.0.12.RELEASE.jar:5.0.12.RELEASE]
    at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:759) ~[spring-beans-5.0.12.RELEASE.jar:5.0.12.RELEASE]
    at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:867) ~[spring-context-5.0.12.RELEASE.jar:5.0.12.RELEASE]
    at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:548) ~[spring-context-5.0.12.RELEASE.jar:5.0.12.RELEASE]
    at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:142) ~[spring-boot-2.0.8.RELEASE.jar:2.0.8.RELEASE]
    at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) [spring-boot-2.0.8.RELEASE.jar:2.0.8.RELEASE]
    at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:386) [spring-boot-2.0.8.RELEASE.jar:2.0.8.RELEASE]
    at org.springframework.boot.SpringApplication.run(SpringApplication.java:307) [spring-boot-2.0.8.RELEASE.jar:2.0.8.RELEASE]
    at fr.omary.aaaaaa.bbbb.aaaaaabbbbApp.main(aaaaaabbbbApp.java:64) [classes/:?]
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:?]
    at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]
    at java.lang.reflect.Method.invoke(Method.java:566) ~[?:?]
    at org.springframework.boot.devtools.restart.RestartLauncher.run(RestartLauncher.java:49) [spring-boot-devtools-2.0.8.RELEASE.jar:2.0.8.RELEASE]
Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [javax.servlet.Filter]: Factory method 'springSecurityFilterChain' threw exception; nested exception is java.lang.RuntimeException: javax.xml.bind.JAXBException: Implementation of JAXB-API has not been found on module path or classpath.
 - with linked exception:
[java.lang.ClassNotFoundException: com.sun.xml.internal.bind.v2.ContextFactory]
    at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:185) ~[spring-beans-5.0.12.RELEASE.jar:5.0.12.RELEASE]
    at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:583) ~[spring-beans-5.0.12.RELEASE.jar:5.0.12.RELEASE]
    ... 23 more
Caused by: java.lang.RuntimeException: javax.xml.bind.JAXBException: Implementation of JAXB-API has not been found on module path or classpath.
 - with linked exception:
[java.lang.ClassNotFoundException: com.sun.xml.internal.bind.v2.ContextFactory]
    at org.springframework.security.oauth2.http.converter.jaxb.AbstractJaxbMessageConverter.<init>(AbstractJaxbMessageConverter.java:62) ~[spring-security-oauth2-2.3.4.RELEASE.jar:?]
    at org.springframework.security.oauth2.http.converter.jaxb.JaxbOAuth2ExceptionMessageConverter.<init>(JaxbOAuth2ExceptionMessageConverter.java:21) ~[spring-security-oauth2-2.3.4.RELEASE.jar:?]
    at org.springframework.security.oauth2.provider.error.DefaultOAuth2ExceptionRenderer.geDefaultMessageConverters(DefaultOAuth2ExceptionRenderer.java:117) ~[spring-security-oauth2-2.3.4.RELEASE.jar:?]
    at org.springframework.security.oauth2.provider.error.DefaultOAuth2ExceptionRenderer.<init>(DefaultOAuth2ExceptionRenderer.java:53) ~[spring-security-oauth2-2.3.4.RELEASE.jar:?]
    at org.springframework.security.oauth2.provider.error.AbstractOAuth2SecurityExceptionHandler.<init>(AbstractOAuth2SecurityExceptionHandler.java:42) ~[spring-security-oauth2-2.3.4.RELEASE.jar:?]
    at org.springframework.security.oauth2.provider.error.OAuth2AuthenticationEntryPoint.<init>(OAuth2AuthenticationEntryPoint.java:36) ~[spring-security-oauth2-2.3.4.RELEASE.jar:?]
    at org.springframework.security.oauth2.config.annotation.web.configurers.ResourceServerSecurityConfigurer.<init>(ResourceServerSecurityConfigurer.java:62) ~[spring-security-oauth2-2.3.4.RELEASE.jar:?]
    at org.springframework.security.oauth2.config.annotation.web.configuration.ResourceServerConfiguration.configure(ResourceServerConfiguration.java:118) ~[spring-security-oauth2-2.3.4.RELEASE.jar:?]
    at org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter.getHttp(WebSecurityConfigurerAdapter.java:231) ~[spring-security-config-5.0.11.RELEASE.jar:5.0.11.RELEASE]
    at org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter.init(WebSecurityConfigurerAdapter.java:322) ~[spring-security-config-5.0.11.RELEASE.jar:5.0.11.RELEASE]
    at org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter.init(WebSecurityConfigurerAdapter.java:92) ~[spring-security-config-5.0.11.RELEASE.jar:5.0.11.RELEASE]
    at org.springframework.security.oauth2.config.annotation.web.configuration.ResourceServerConfiguration$$EnhancerBySpringCGLIB$$efd9b015.init(<generated>) ~[spring-security-oauth2-2.3.4.RELEASE.jar:?]
    at org.springframework.security.config.annotation.AbstractConfiguredSecurityBuilder.init(AbstractConfiguredSecurityBuilder.java:371) ~[spring-security-config-5.0.11.RELEASE.jar:5.0.11.RELEASE]
    at org.springframework.security.config.annotation.AbstractConfiguredSecurityBuilder.doBuild(AbstractConfiguredSecurityBuilder.java:325) ~[spring-security-config-5.0.11.RELEASE.jar:5.0.11.RELEASE]
    at org.springframework.security.config.annotation.AbstractSecurityBuilder.build(AbstractSecurityBuilder.java:41) ~[spring-security-config-5.0.11.RELEASE.jar:5.0.11.RELEASE]
    at org.springframework.security.config.annotation.web.configuration.WebSecurityConfiguration.springSecurityFilterChain(WebSecurityConfiguration.java:104) ~[spring-security-config-5.0.11.RELEASE.jar:5.0.11.RELEASE]
    at org.springframework.security.config.annotation.web.configuration.WebSecurityConfiguration$$EnhancerBySpringCGLIB$$ea91318f.CGLIB$springSecurityFilterChain$1(<generated>) ~[spring-security-config-5.0.11.RELEASE.jar:5.0.11.RELEASE]
    at org.springframework.security.config.annotation.web.configuration.WebSecurityConfiguration$$EnhancerBySpringCGLIB$$ea91318f$$FastClassBySpringCGLIB$$39c998eb.invoke(<generated>) ~[spring-security-config-5.0.11.RELEASE.jar:5.0.11.RELEASE]
    at org.springframework.cglib.proxy.MethodProxy.invokeSuper(MethodProxy.java:228) ~[spring-core-5.0.12.RELEASE.jar:5.0.12.RELEASE]
    at org.springframework.context.annotation.ConfigurationClassEnhancer$BeanMethodInterceptor.intercept(ConfigurationClassEnhancer.java:365) ~[spring-context-5.0.12.RELEASE.jar:5.0.12.RELEASE]
    at org.springframework.security.config.annotation.web.configuration.WebSecurityConfiguration$$EnhancerBySpringCGLIB$$ea91318f.springSecurityFilterChain(<generated>) ~[spring-security-config-5.0.11.RELEASE.jar:5.0.11.RELEASE]
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:?]
    at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]
    at java.lang.reflect.Method.invoke(Method.java:566) ~[?:?]
    at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:154) ~[spring-beans-5.0.12.RELEASE.jar:5.0.12.RELEASE]
    at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:583) ~[spring-beans-5.0.12.RELEASE.jar:5.0.12.RELEASE]
    ... 23 more
Caused by: javax.xml.bind.JAXBException: Implementation of JAXB-API has not been found on module path or classpath.
    at javax.xml.bind.ContextFinder.newInstance(ContextFinder.java:278) ~[jaxb-api-2.3.1.jar:2.3.0]
    at javax.xml.bind.ContextFinder.find(ContextFinder.java:421) ~[jaxb-api-2.3.1.jar:2.3.0]
    at javax.xml.bind.JAXBContext.newInstance(JAXBContext.java:721) ~[jaxb-api-2.3.1.jar:2.3.0]
    at javax.xml.bind.JAXBContext.newInstance(JAXBContext.java:662) ~[jaxb-api-2.3.1.jar:2.3.0]
    at org.springframework.security.oauth2.http.converter.jaxb.AbstractJaxbMessageConverter.<init>(AbstractJaxbMessageConverter.java:59) ~[spring-security-oauth2-2.3.4.RELEASE.jar:?]
    at org.springframework.security.oauth2.http.converter.jaxb.JaxbOAuth2ExceptionMessageConverter.<init>(JaxbOAuth2ExceptionMessageConverter.java:21) ~[spring-security-oauth2-2.3.4.RELEASE.jar:?]
    at org.springframework.security.oauth2.provider.error.DefaultOAuth2ExceptionRenderer.geDefaultMessageConverters(DefaultOAuth2ExceptionRenderer.java:117) ~[spring-security-oauth2-2.3.4.RELEASE.jar:?]
    at org.springframework.security.oauth2.provider.error.DefaultOAuth2ExceptionRenderer.<init>(DefaultOAuth2ExceptionRenderer.java:53) ~[spring-security-oauth2-2.3.4.RELEASE.jar:?]
    at org.springframework.security.oauth2.provider.error.AbstractOAuth2SecurityExceptionHandler.<init>(AbstractOAuth2SecurityExceptionHandler.java:42) ~[spring-security-oauth2-2.3.4.RELEASE.jar:?]
    at org.springframework.security.oauth2.provider.error.OAuth2AuthenticationEntryPoint.<init>(OAuth2AuthenticationEntryPoint.java:36) ~[spring-security-oauth2-2.3.4.RELEASE.jar:?]
    at org.springframework.security.oauth2.config.annotation.web.configurers.ResourceServerSecurityConfigurer.<init>(ResourceServerSecurityConfigurer.java:62) ~[spring-security-oauth2-2.3.4.RELEASE.jar:?]
    at org.springframework.security.oauth2.config.annotation.web.configuration.ResourceServerConfiguration.configure(ResourceServerConfiguration.java:118) ~[spring-security-oauth2-2.3.4.RELEASE.jar:?]
    at org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter.getHttp(WebSecurityConfigurerAdapter.java:231) ~[spring-security-config-5.0.11.RELEASE.jar:5.0.11.RELEASE]
    at org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter.init(WebSecurityConfigurerAdapter.java:322) ~[spring-security-config-5.0.11.RELEASE.jar:5.0.11.RELEASE]
    at org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter.init(WebSecurityConfigurerAdapter.java:92) ~[spring-security-config-5.0.11.RELEASE.jar:5.0.11.RELEASE]
    at org.springframework.security.oauth2.config.annotation.web.configuration.ResourceServerConfiguration$$EnhancerBySpringCGLIB$$efd9b015.init(<generated>) ~[spring-security-oauth2-2.3.4.RELEASE.jar:?]
    at org.springframework.security.config.annotation.AbstractConfiguredSecurityBuilder.init(AbstractConfiguredSecurityBuilder.java:371) ~[spring-security-config-5.0.11.RELEASE.jar:5.0.11.RELEASE]
    at org.springframework.security.config.annotation.AbstractConfiguredSecurityBuilder.doBuild(AbstractConfiguredSecurityBuilder.java:325) ~[spring-security-config-5.0.11.RELEASE.jar:5.0.11.RELEASE]
    at org.springframework.security.config.annotation.AbstractSecurityBuilder.build(AbstractSecurityBuilder.java:41) ~[spring-security-config-5.0.11.RELEASE.jar:5.0.11.RELEASE]
    at org.springframework.security.config.annotation.web.configuration.WebSecurityConfiguration.springSecurityFilterChain(WebSecurityConfiguration.java:104) ~[spring-security-config-5.0.11.RELEASE.jar:5.0.11.RELEASE]
    at org.springframework.security.config.annotation.web.configuration.WebSecurityConfiguration$$EnhancerBySpringCGLIB$$ea91318f.CGLIB$springSecurityFilterChain$1(<generated>) ~[spring-security-config-5.0.11.RELEASE.jar:5.0.11.RELEASE]
    at org.springframework.security.config.annotation.web.configuration.WebSecurityConfiguration$$EnhancerBySpringCGLIB$$ea91318f$$FastClassBySpringCGLIB$$39c998eb.invoke(<generated>) ~[spring-security-config-5.0.11.RELEASE.jar:5.0.11.RELEASE]
    at org.springframework.cglib.proxy.MethodProxy.invokeSuper(MethodProxy.java:228) ~[spring-core-5.0.12.RELEASE.jar:5.0.12.RELEASE]
    at org.springframework.context.annotation.ConfigurationClassEnhancer$BeanMethodInterceptor.intercept(ConfigurationClassEnhancer.java:365) ~[spring-context-5.0.12.RELEASE.jar:5.0.12.RELEASE]
    at org.springframework.security.config.annotation.web.configuration.WebSecurityConfiguration$$EnhancerBySpringCGLIB$$ea91318f.springSecurityFilterChain(<generated>) ~[spring-security-config-5.0.11.RELEASE.jar:5.0.11.RELEASE]
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:?]
    at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]
    at java.lang.reflect.Method.invoke(Method.java:566) ~[?:?]
    at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:154) ~[spring-beans-5.0.12.RELEASE.jar:5.0.12.RELEASE]
    at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:583) ~[spring-beans-5.0.12.RELEASE.jar:5.0.12.RELEASE]
    ... 23 more
Caused by: java.lang.ClassNotFoundException: com.sun.xml.internal.bind.v2.ContextFactory
    at jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:583) ~[?:?]
    at jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:178) ~[?:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:521) ~[?:?]
    at org.springframework.boot.devtools.restart.classloader.RestartClassLoader.loadClass(RestartClassLoader.java:148) ~[spring-boot-devtools-2.0.8.RELEASE.jar:2.0.8.RELEASE]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:521) ~[?:?]
    at javax.xml.bind.ServiceLoaderUtil.nullSafeLoadClass(ServiceLoaderUtil.java:122) ~[jaxb-api-2.3.1.jar:2.3.0]
    at javax.xml.bind.ServiceLoaderUtil.safeLoadClass(ServiceLoaderUtil.java:155) ~[jaxb-api-2.3.1.jar:2.3.0]
    at javax.xml.bind.ContextFinder.newInstance(ContextFinder.java:276) ~[jaxb-api-2.3.1.jar:2.3.0]
    at javax.xml.bind.ContextFinder.find(ContextFinder.java:421) ~[jaxb-api-2.3.1.jar:2.3.0]
    at javax.xml.bind.JAXBContext.newInstance(JAXBContext.java:721) ~[jaxb-api-2.3.1.jar:2.3.0]
    at javax.xml.bind.JAXBContext.newInstance(JAXBContext.java:662) ~[jaxb-api-2.3.1.jar:2.3.0]
    at org.springframework.security.oauth2.http.converter.jaxb.AbstractJaxbMessageConverter.<init>(AbstractJaxbMessageConverter.java:59) ~[spring-security-oauth2-2.3.4.RELEASE.jar:?]
    at org.springframework.security.oauth2.http.converter.jaxb.JaxbOAuth2ExceptionMessageConverter.<init>(JaxbOAuth2ExceptionMessageConverter.java:21) ~[spring-security-oauth2-2.3.4.RELEASE.jar:?]
    at org.springframework.security.oauth2.provider.error.DefaultOAuth2ExceptionRenderer.geDefaultMessageConverters(DefaultOAuth2ExceptionRenderer.java:117) ~[spring-security-oauth2-2.3.4.RELEASE.jar:?]
    at org.springframework.security.oauth2.provider.error.DefaultOAuth2ExceptionRenderer.<init>(DefaultOAuth2ExceptionRenderer.java:53) ~[spring-security-oauth2-2.3.4.RELEASE.jar:?]
    at org.springframework.security.oauth2.provider.error.AbstractOAuth2SecurityExceptionHandler.<init>(AbstractOAuth2SecurityExceptionHandler.java:42) ~[spring-security-oauth2-2.3.4.RELEASE.jar:?]
    at org.springframework.security.oauth2.provider.error.OAuth2AuthenticationEntryPoint.<init>(OAuth2AuthenticationEntryPoint.java:36) ~[spring-security-oauth2-2.3.4.RELEASE.jar:?]
    at org.springframework.security.oauth2.config.annotation.web.configurers.ResourceServerSecurityConfigurer.<init>(ResourceServerSecurityConfigurer.java:62) ~[spring-security-oauth2-2.3.4.RELEASE.jar:?]
    at org.springframework.security.oauth2.config.annotation.web.configuration.ResourceServerConfiguration.configure(ResourceServerConfiguration.java:118) ~[spring-security-oauth2-2.3.4.RELEASE.jar:?]
    at org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter.getHttp(WebSecurityConfigurerAdapter.java:231) ~[spring-security-config-5.0.11.RELEASE.jar:5.0.11.RELEASE]
    at org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter.init(WebSecurityConfigurerAdapter.java:322) ~[spring-security-config-5.0.11.RELEASE.jar:5.0.11.RELEASE]
    at org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter.init(WebSecurityConfigurerAdapter.java:92) ~[spring-security-config-5.0.11.RELEASE.jar:5.0.11.RELEASE]
    at org.springframework.security.oauth2.config.annotation.web.configuration.ResourceServerConfiguration$$EnhancerBySpringCGLIB$$efd9b015.init(<generated>) ~[spring-security-oauth2-2.3.4.RELEASE.jar:?]
    at org.springframework.security.config.annotation.AbstractConfiguredSecurityBuilder.init(AbstractConfiguredSecurityBuilder.java:371) ~[spring-security-config-5.0.11.RELEASE.jar:5.0.11.RELEASE]
    at org.springframework.security.config.annotation.AbstractConfiguredSecurityBuilder.doBuild(AbstractConfiguredSecurityBuilder.java:325) ~[spring-security-config-5.0.11.RELEASE.jar:5.0.11.RELEASE]
    at org.springframework.security.config.annotation.AbstractSecurityBuilder.build(AbstractSecurityBuilder.java:41) ~[spring-security-config-5.0.11.RELEASE.jar:5.0.11.RELEASE]
    at org.springframework.security.config.annotation.web.configuration.WebSecurityConfiguration.springSecurityFilterChain(WebSecurityConfiguration.java:104) ~[spring-security-config-5.0.11.RELEASE.jar:5.0.11.RELEASE]
    at org.springframework.security.config.annotation.web.configuration.WebSecurityConfiguration$$EnhancerBySpringCGLIB$$ea91318f.CGLIB$springSecurityFilterChain$1(<generated>) ~[spring-security-config-5.0.11.RELEASE.jar:5.0.11.RELEASE]
    at org.springframework.security.config.annotation.web.configuration.WebSecurityConfiguration$$EnhancerBySpringCGLIB$$ea91318f$$FastClassBySpringCGLIB$$39c998eb.invoke(<generated>) ~[spring-security-config-5.0.11.RELEASE.jar:5.0.11.RELEASE]
    at org.springframework.cglib.proxy.MethodProxy.invokeSuper(MethodProxy.java:228) ~[spring-core-5.0.12.RELEASE.jar:5.0.12.RELEASE]
    at org.springframework.context.annotation.ConfigurationClassEnhancer$BeanMethodInterceptor.intercept(ConfigurationClassEnhancer.java:365) ~[spring-context-5.0.12.RELEASE.jar:5.0.12.RELEASE]
    at org.springframework.security.config.annotation.web.configuration.WebSecurityConfiguration$$EnhancerBySpringCGLIB$$ea91318f.springSecurityFilterChain(<generated>) ~[spring-security-config-5.0.11.RELEASE.jar:5.0.11.RELEASE]
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:?]
    at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]
    at java.lang.reflect.Method.invoke(Method.java:566) ~[?:?]
    at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:154) ~[spring-beans-5.0.12.RELEASE.jar:5.0.12.RELEASE]
    at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:583) ~[spring-beans-5.0.12.RELEASE.jar:5.0.12.RELEASE]
    ... 23 more
2019-03-04 09:19:50.521  INFO 26830 --- [tbeatExecutor-0] com.netflix.discovery.DiscoveryClient    : DiscoveryClient_aaaaaabbbb/aaaaaabbbb:fd93c1d449255fa6cfa63523cc6cc216 - Re-registering apps/aaaaaabbbb
2019-03-04 09:19:50.523  INFO 26830 --- [tbeatExecutor-0] com.netflix.discovery.DiscoveryClient    : DiscoveryClient_aaaaaabbbb/aaaaaabbbb:fd93c1d449255fa6cfa63523cc6cc216: registering service...
2019-03-04 09:19:50.563  INFO 26830 --- [tbeatExecutor-0] com.netflix.discovery.DiscoveryClient    : DiscoveryClient_aaaaaabbbb/aaaaaabbbb:fd93c1d449255fa6cfa63523cc6cc216 - registration status: 204

Process finished with exit code 1
OlivierMary commented 5 years ago

the generated build.gradle

import org.gradle.internal.os.OperatingSystem

buildscript {
    repositories {
        mavenLocal()
        mavenCentral()
        maven { url "http://repo.spring.io/plugins-release" }
        maven { url "https://plugins.gradle.org/m2/" }
    }
    dependencies {
        classpath "org.springframework.boot:spring-boot-gradle-plugin:${spring_boot_version}"
        classpath "io.spring.gradle:propdeps-plugin:0.0.10.RELEASE"
        classpath "org.openapitools:openapi-generator-gradle-plugin:3.3.0"
        classpath "gradle.plugin.com.gorylenko.gradle-git-properties:gradle-git-properties:1.5.2"
        //jhipster-needle-gradle-buildscript-dependency - JHipster will add additional gradle build script plugins here
    }
}

plugins {
    id "org.sonarqube" version "2.6.2"
    id "net.ltgt.apt-eclipse" version "0.19"
    id "net.ltgt.apt-idea" version "0.19"
    id "net.ltgt.apt" version "0.19"
    id "io.spring.dependency-management" version "1.0.6.RELEASE"
    //jhipster-needle-gradle-plugins - JHipster will add additional gradle plugins here
}

apply plugin: 'java'
sourceCompatibility=1.8
targetCompatibility=1.8
// Until JHipster supports JDK 9
//assert System.properties['java.specification.version'] == '1.8'

apply plugin: 'maven'
apply plugin: 'org.springframework.boot'
apply plugin: 'war'
apply plugin: 'propdeps'
apply plugin: 'io.spring.dependency-management'
apply plugin: 'idea'

idea {
  module {
    excludeDirs += files('node_modules')
  }
}

dependencyManagement {
  imports {
    mavenBom 'io.github.jhipster:jhipster-dependencies:' + jhipster_dependencies_version
    //jhipster-needle-gradle-dependency-management - JHipster will add additional dependencies management here
  }
}

defaultTasks 'bootRun'

group = 'fr.omary.aaaaa.bbbb'
version = '0.0.1-SNAPSHOT'

description = ''

bootWar {
    mainClassName = 'fr.omary.aaaaa.bbbb.aaaaabbbbApp'
}

war {
    enabled = true
    extension = 'war.original'
}

springBoot {
    mainClassName = 'fr.omary.aaaaa.bbbb.aaaaabbbbApp'
}

if (OperatingSystem.current().isWindows()) {
    // https://stackoverflow.com/questions/40037487/the-filename-or-extension-is-too-long-error-using-gradle
    task classpathJar(type: Jar) {
        dependsOn configurations.runtime
        appendix = 'classpath'

        doFirst {
            manifest {
                attributes 'Class-Path': configurations.runtime.files.collect {
                    it.toURI().toURL().toString().replaceFirst(/file:\/+/, '/').replaceAll(' ', '%20')
                }.join(' ')
            }
        }
    }

    bootRun {
        dependsOn classpathJar
        doFirst {
            classpath = files("$buildDir/classes/java/main", "$buildDir/resources/main", classpathJar.archivePath)
        }
    }
}

test {
    exclude '**/CucumberTest*'

    // uncomment if the tests reports are not generated
    // see https://github.com/jhipster/generator-jhipster/pull/2771 and https://github.com/jhipster/generator-jhipster/pull/4484
    // ignoreFailures true
    reports.html.enabled = false
}

task cucumberTest(type: Test) {
    description = "Execute cucumber BDD tests."
    group = "verification"
    include '**/CucumberTest*'

    // uncomment if the tests reports are not generated
    // see https://github.com/jhipster/generator-jhipster/pull/2771 and https://github.com/jhipster/generator-jhipster/pull/4484
    // ignoreFailures true
    reports.html.enabled = false
}

check.dependsOn cucumberTest
task testReport(type: TestReport) {
    destinationDir = file("$buildDir/reports/tests")
    reportOn test
}

task cucumberTestReport(type: TestReport) {
    destinationDir = file("$buildDir/reports/tests")
    reportOn cucumberTest
}

apply from: 'gradle/docker.gradle'
apply from: 'gradle/sonar.gradle'
apply from: 'gradle/swagger.gradle'
//jhipster-needle-gradle-apply-from - JHipster will add additional gradle scripts to be applied here

if (project.hasProperty('prod')) {
    apply from: 'gradle/profile_prod.gradle'
} else {
    apply from: 'gradle/profile_dev.gradle'
}

if (project.hasProperty('zipkin')) {
    apply from: 'gradle/zipkin.gradle'
}

configurations {
    providedRuntime
    compile.exclude module: "spring-boot-starter-tomcat"
}

repositories {
    mavenLocal()
    mavenCentral()
    jcenter()
    //jhipster-needle-gradle-repositories - JHipster will add additional repositories
}

dependencies {
    // Use ", version: jhipster_dependencies_version, changing: true" if you want
    // to use a SNAPSHOT release instead of a stable release
    compile group: "io.github.jhipster", name: "jhipster-framework"
    compile "org.springframework.boot:spring-boot-starter-cache"
    compile "io.dropwizard.metrics:metrics-core"
    compile 'io.micrometer:micrometer-registry-prometheus'
    compile "net.logstash.logback:logstash-logback-encoder"
    compile "com.fasterxml.jackson.datatype:jackson-datatype-hppc"
    compile "com.fasterxml.jackson.datatype:jackson-datatype-jsr310"
    compile "com.fasterxml.jackson.core:jackson-annotations"
    compile "com.fasterxml.jackson.core:jackson-databind"
    compile "com.fasterxml.jackson.module:jackson-module-afterburner"
    compile "com.hazelcast:hazelcast"
    compile "com.hazelcast:hazelcast-spring"
    compile "javax.cache:cache-api"
    compile "org.apache.commons:commons-lang3"
    compile "commons-io:commons-io"
    compile "javax.transaction:javax.transaction-api"
    compile "org.springframework.boot:spring-boot-loader-tools"
    compile "org.springframework.boot:spring-boot-starter-mail"
    compile "org.springframework.boot:spring-boot-starter-logging"
    compile "org.springframework.boot:spring-boot-starter-actuator"
    compile "org.springframework.boot:spring-boot-starter-aop"
    compile "org.springframework.boot:spring-boot-starter-data-elasticsearch"
    // Spring Data Jest dependencies for Elasticsearch
    compile ("com.github.vanroy:spring-boot-starter-data-jest") {
        exclude module: 'commons-logging'
    }
    // log4j needed to create embedded elasticsearch instance
    runtime "org.apache.logging.log4j:log4j-api:2.7"
    runtime "org.apache.logging.log4j:log4j-core:2.7"
    // end of Spring Data Jest dependencies
    compile "org.springframework.boot:spring-boot-starter-data-mongodb"
    compile "org.springframework.cloud:spring-cloud-stream"
    compile "org.springframework.cloud:spring-cloud-stream-binder-kafka"
    compile "org.springframework.kafka:spring-kafka"
    compile "org.springframework.boot:spring-boot-starter-security"
    compile ("org.springframework.boot:spring-boot-starter-web") {
        exclude module: 'spring-boot-starter-tomcat'
    }
    compile "org.springframework.boot:spring-boot-starter-undertow"
    compile "org.springframework.boot:spring-boot-starter-thymeleaf"
    compile "org.zalando:problem-spring-web:0.24.0-RC.0"
    compile "org.springframework.cloud:spring-cloud-starter"
    compile "org.springframework.cloud:spring-cloud-starter-netflix-ribbon"
    compile "org.springframework.cloud:spring-cloud-starter-netflix-hystrix"
    compile "org.springframework.retry:spring-retry"
    compile "org.springframework.cloud:spring-cloud-starter-netflix-eureka-client"
    compile "org.springframework.cloud:spring-cloud-starter-config"
    compile "org.springframework.cloud:spring-cloud-security"
    compile "org.springframework.cloud:spring-cloud-starter-openfeign"
    compile "org.springframework.boot:spring-boot-starter-cloud-connectors"
    compile "org.springframework.security:spring-security-config"
    compile "org.springframework.security:spring-security-data"
    compile "org.springframework.security:spring-security-web"
    compile "org.springframework.security.oauth:spring-security-oauth2"
    compile "org.springframework.security.oauth.boot:spring-security-oauth2-autoconfigure"
    compile "org.springframework.security:spring-security-jwt"
    compile "com.github.mongobee:mongobee"
    compile ("io.springfox:springfox-swagger2") {
        exclude module: 'mapstruct'
    }
    compile "io.springfox:springfox-bean-validators"
    compile "org.mapstruct:mapstruct-jdk8:${mapstruct_version}"
    annotationProcessor "org.mapstruct:mapstruct-processor:${mapstruct_version}"
    annotationProcessor ("org.springframework.boot:spring-boot-configuration-processor") {
        exclude group: 'com.vaadin.external.google', module: 'android-json'
    }
    testCompile "com.jayway.jsonpath:json-path"
    testCompile "io.cucumber:cucumber-junit"
    testCompile "io.cucumber:cucumber-spring"
    testCompile ("org.springframework.boot:spring-boot-starter-test") {
        exclude group: 'com.vaadin.external.google', module: 'android-json'
    }
    testCompile "org.springframework.security:spring-security-test"
    testCompile "org.springframework.boot:spring-boot-test"
    testCompile "org.assertj:assertj-core"
    testCompile "junit:junit"
    testCompile "org.mockito:mockito-core"
    testCompile "de.flapdoodle.embed:de.flapdoodle.embed.mongo"
    testCompile "org.hamcrest:hamcrest-library"
    testCompile "org.springframework.cloud:spring-cloud-stream-test-support"
    //jhipster-needle-gradle-dependency - JHipster will add additional dependencies here
}

task cleanResources(type: Delete) {
    delete 'build/resources'
}

wrapper {
    gradleVersion = '4.10.2'
}

task stage(dependsOn: 'bootWar') {
}
jdubois commented 5 years ago

I'm pretty sure you don't execute your app on Java 8. Java 11 support will be in the next release.

gmarziou commented 5 years ago

Yes, you are using JDK 11 as logged by gradle in the trace you pasted here:

/usr/lib/jvm/java-11-openjdk-amd64/bin/java -XX:TieredStopAtLevel=1 -noverify

mraible commented 5 years ago

FWIW, I've used Java 11 with Spring Boot 2.1 and found different behaviors with Maven and Gradle. Everything works right away with Maven. With Gradle, I've had to add JAXB as a dependency.

On Mar 4, 2019, at 02:00, Gaël Marziou notifications@github.com wrote:

Closed #9361.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or mute the thread.