Tag Archives: springcloud

This application has no explicit mapping for /error, so you are seeing this as a fallback (How to Fix)

directory
I. Error Prompt:
Ii. Reasons:
Iii. Solution 1: Package of the mobile control layer:
4. Solution 2: Add @SpringBootApplication(scanBasePackages=” Controller “)
5. Summarize the reasons for possible errors:
Reason 1:
Reason 2:
Reason 3:
Vi. Cause of Error of Eclipse starting Springboot:


An error was reported when Springboot was running, other configurations were fine, and after a long look I found the cause.
I. Error Prompt:

Whitelabel Error Page
This application has no explicit mapping for /error, so you are seeing this as a fallback.
Mon Jun 24 14:56:23 CST 2019
There was an unexpected error (type=Not Found, status=404).
No message available

Ii. Reasons:
Problem with IDEA directory structure, the location of the Application startup class is wrong. To place the Application class on the outermost side, it contains all the subpackages. And my Controller is in the outermost package. The page could not be found.

Iii. Solution 1: Package of the mobile control layer:
Move the Controller class in, and it will run successfully.

Refresh again and the page will open successfully.

4. Solution 2: Add @SpringBootApplication(scanBasePackages=” Controller “)
In your Demo01Application class that you started, add a comment specifying the location of your Controller, and you can specify the load and solve the problem successfully.

package com.hh.demo01;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication(scanBasePackages="controller")
public class Demo01Application {

	public static void main(String[] args) {
		SpringApplication.run(Demo01Application.class, args);
	}

}

5. Summarize the reasons for possible errors:
This exception indicates that the url for the jump page has no corresponding value.
Reason 1:
The Application startup class is not in the right place. To place the Application class on the outermost side, it contains all subpackages
reason :spring-boot automatically loads all components under the package where the startup class is located and under its subpackages.
Reason 2:
In springboot configuration file: application. Yml or application. The properties on the view of the parser configuration problem:
when the spring under the pom file – the boot – starter – paren version used when high:
spring. MVC. The prefix/spring. MVC. The suffix
As spring under the pom file – the boot – starter – paren version low when use:
spring. The prefix/spring. The suffix
Reason 3:
Controller URL path writing problem
@RequestMapping(” XXXXXXXXXXXXXX “)
actual access path and “XXX” does not conform.
Refer to the article: https://www.cnblogs.com/lilinzhiyu/p/7921890.html

Vi. Cause of Error of Eclipse starting Springboot:
When the eclipse deployed project is launched, This application has no explicit mapping for /error, so you are seeing This as a fallback. At the same time, his log shows port 8080 being started.

And my configuration file has configured the port:

Later, it turned out that it was also because of the location of the package, that is, the above reason 1: the location of the Application startup class is wrong. To place the Application class on the outermost side, you include all subpackages because Spring-Boot automatically loads all components under the package where the startup class is located and under its subpackages.
After changing the position, it starts successfully, and the port is correct and the page is opened correctly.


Personal Summary:
I’m going to have to do some careful checking.

Failed to determine a suitable driver class

2. springboot x

"H:\Program Files\Java\jdk1.8.0_181\bin\java.exe" -XX:TieredStopAtLevel=1 -noverify -Dspring.output.ansi.enabled=always -Dcom.sun.management.jmxremote -Dspring.jmx.enabled=true -Dspring.liveBeansView.mbeanDomain -Dspring.application.admin.enabled=true "-javaagent:C:\Program Files\JetBrains\IntelliJ IDEA 2019.3.3\lib\idea_rt.jar=57198:C:\Program Files\JetBrains\IntelliJ IDEA 2019.3.3\bin" -Dfile.encoding=UTF-8 -classpath "H:\Program Files\Java\jdk1.8.0_181\jre\lib\charsets.jar;H:\Program Files\Java\jdk1.8.0_181\jre\lib\deploy.jar;H:\Program Files\Java\jdk1.8.0_181\jre\lib\ext\access-bridge-64.jar;H:\Program Files\Java\jdk1.8.0_181\jre\lib\ext\cldrdata.jar;H:\Program Files\Java\jdk1.8.0_181\jre\lib\ext\dnsns.jar;H:\Program Files\Java\jdk1.8.0_181\jre\lib\ext\jaccess.jar;H:\Program Files\Java\jdk1.8.0_181\jre\lib\ext\jfxrt.jar;H:\Program Files\Java\jdk1.8.0_181\jre\lib\ext\localedata.jar;H:\Program Files\Java\jdk1.8.0_181\jre\lib\ext\nashorn.jar;H:\Program Files\Java\jdk1.8.0_181\jre\lib\ext\sunec.jar;H:\Program Files\Java\jdk1.8.0_181\jre\lib\ext\sunjce_provider.jar;H:\Program Files\Java\jdk1.8.0_181\jre\lib\ext\sunmscapi.jar;H:\Program Files\Java\jdk1.8.0_181\jre\lib\ext\sunpkcs11.jar;H:\Program Files\Java\jdk1.8.0_181\jre\lib\ext\zipfs.jar;H:\Program Files\Java\jdk1.8.0_181\jre\lib\javaws.jar;H:\Program Files\Java\jdk1.8.0_181\jre\lib\jce.jar;H:\Program Files\Java\jdk1.8.0_181\jre\lib\jfr.jar;H:\Program Files\Java\jdk1.8.0_181\jre\lib\jfxswt.jar;H:\Program Files\Java\jdk1.8.0_181\jre\lib\jsse.jar;H:\Program Files\Java\jdk1.8.0_181\jre\lib\management-agent.jar;H:\Program Files\Java\jdk1.8.0_181\jre\lib\plugin.jar;H:\Program Files\Java\jdk1.8.0_181\jre\lib\resources.jar;H:\Program Files\Java\jdk1.8.0_181\jre\lib\rt.jar;E:\pratice\xxxxx-user\xxxxx-auth\target\classes;D:\repository\org\springframework\boot\spring-boot-starter-web\2.0.9.RELEASE\spring-boot-starter-web-2.0.9.RELEASE.jar;D:\repository\org\springframework\boot\spring-boot-starter\2.0.9.RELEASE\spring-boot-starter-2.0.9.RELEASE.jar;D:\repository\org\springframework\boot\spring-boot\2.0.9.RELEASE\spring-boot-2.0.9.RELEASE.jar;D:\repository\org\springframework\boot\spring-boot-starter-logging\2.0.9.RELEASE\spring-boot-starter-logging-2.0.9.RELEASE.jar;D:\repository\ch\qos\logback\logback-classic\1.2.3\logback-classic-1.2.3.jar;D:\repository\org\apache\logging\log4j\log4j-to-slf4j\2.10.0\log4j-to-slf4j-2.10.0.jar;D:\repository\org\apache\logging\log4j\log4j-api\2.10.0\log4j-api-2.10.0.jar;D:\repository\org\slf4j\jul-to-slf4j\1.7.26\jul-to-slf4j-1.7.26.jar;D:\repository\javax\annotation\javax.annotation-api\1.3.2\javax.annotation-api-1.3.2.jar;D:\repository\org\yaml\snakeyaml\1.19\snakeyaml-1.19.jar;D:\repository\org\springframework\boot\spring-boot-starter-json\2.0.9.RELEASE\spring-boot-starter-json-2.0.9.RELEASE.jar;D:\repository\com\fasterxml\jackson\datatype\jackson-datatype-jdk8\2.9.8\jackson-datatype-jdk8-2.9.8.jar;D:\repository\com\fasterxml\jackson\datatype\jackson-datatype-jsr310\2.9.8\jackson-datatype-jsr310-2.9.8.jar;D:\repository\org\springframework\boot\spring-boot-starter-tomcat\2.0.9.RELEASE\spring-boot-starter-tomcat-2.0.9.RELEASE.jar;D:\repository\org\apache\tomcat\embed\tomcat-embed-core\8.5.39\tomcat-embed-core-8.5.39.jar;D:\repository\org\apache\tomcat\embed\tomcat-embed-el\8.5.39\tomcat-embed-el-8.5.39.jar;D:\repository\org\apache\tomcat\embed\tomcat-embed-websocket\8.5.39\tomcat-embed-websocket-8.5.39.jar;D:\repository\org\hibernate\validator\hibernate-validator\6.0.16.Final\hibernate-validator-6.0.16.Final.jar;D:\repository\org\jboss\logging\jboss-logging\3.3.2.Final\jboss-logging-3.3.2.Final.jar;D:\repository\com\fasterxml\classmate\1.3.4\classmate-1.3.4.jar;D:\repository\org\springframework\spring-web\5.0.13.RELEASE\spring-web-5.0.13.RELEASE.jar;D:\repository\org\springframework\spring-beans\5.0.13.RELEASE\spring-beans-5.0.13.RELEASE.jar;D:\repository\org\springframework\spring-webmvc\5.0.13.RELEASE\spring-webmvc-5.0.13.RELEASE.jar;D:\repository\org\springframework\spring-aop\5.0.13.RELEASE\spring-aop-5.0.13.RELEASE.jar;D:\repository\org\springframework\spring-context\5.0.13.RELEASE\spring-context-5.0.13.RELEASE.jar;D:\repository\org\springframework\spring-expression\5.0.13.RELEASE\spring-expression-5.0.13.RELEASE.jar;D:\repository\org\springframework\cloud\spring-cloud-starter-netflix-eureka-client\2.0.4.RELEASE\spring-cloud-starter-netflix-eureka-client-2.0.4.RELEASE.jar;D:\repository\org\springframework\cloud\spring-cloud-starter\2.0.4.RELEASE\spring-cloud-starter-2.0.4.RELEASE.jar;D:\repository\org\springframework\cloud\spring-cloud-context\2.0.4.RELEASE\spring-cloud-context-2.0.4.RELEASE.jar;D:\repository\org\springframework\security\spring-security-rsa\1.0.7.RELEASE\spring-security-rsa-1.0.7.RELEASE.jar;D:\repository\org\bouncycastle\bcpkix-jdk15on\1.60\bcpkix-jdk15on-1.60.jar;D:\repository\org\bouncycastle\bcprov-jdk15on\1.60\bcprov-jdk15on-1.60.jar;D:\repository\org\springframework\cloud\spring-cloud-netflix-core\2.0.4.RELEASE\spring-cloud-netflix-core-2.0.4.RELEASE.jar;D:\repository\org\springframework\boot\spring-boot-starter-aop\2.0.9.RELEASE\spring-boot-starter-aop-2.0.9.RELEASE.jar;D:\repository\org\springframework\cloud\spring-cloud-netflix-eureka-client\2.0.4.RELEASE\spring-cloud-netflix-eureka-client-2.0.4.RELEASE.jar;D:\repository\com\netflix\eureka\eureka-client\1.9.3\eureka-client-1.9.3.jar;D:\repository\org\codehaus\jettison\jettison\1.3.7\jettison-1.3.7.jar;D:\repository\stax\stax-api\1.0.1\stax-api-1.0.1.jar;D:\repository\com\netflix\netflix-commons\netflix-eventbus\0.3.0\netflix-eventbus-0.3.0.jar;D:\repository\com\netflix\netflix-commons\netflix-infix\0.3.0\netflix-infix-0.3.0.jar;D:\repository\commons-jxpath\commons-jxpath\1.3\commons-jxpath-1.3.jar;D:\repository\org\antlr\antlr-runtime\3.4\antlr-runtime-3.4.jar;D:\repository\org\antlr\stringtemplate\3.2.1\stringtemplate-3.2.1.jar;D:\repository\antlr\antlr\2.7.7\antlr-2.7.7.jar;D:\repository\com\google\code\gson\gson\2.8.5\gson-2.8.5.jar;D:\repository\org\apache\commons\commons-math\2.2\commons-math-2.2.jar;D:\repository\com\netflix\archaius\archaius-core\0.7.6\archaius-core-0.7.6.jar;D:\repository\javax\ws\rs\jsr311-api\1.1.1\jsr311-api-1.1.1.jar;D:\repository\com\netflix\servo\servo-core\0.12.21\servo-core-0.12.21.jar;D:\repository\com\sun\jersey\jersey-core\1.19.1\jersey-core-1.19.1.jar;D:\repository\com\sun\jersey\jersey-client\1.19.1\jersey-client-1.19.1.jar;D:\repository\com\sun\jersey\contribs\jersey-apache-client4\1.19.1\jersey-apache-client4-1.19.1.jar;D:\repository\org\apache\httpcomponents\httpclient\4.5.8\httpclient-4.5.8.jar;D:\repository\org\apache\httpcomponents\httpcore\4.4.11\httpcore-4.4.11.jar;D:\repository\commons-codec\commons-codec\1.11\commons-codec-1.11.jar;D:\repository\com\google\inject\guice\4.1.0\guice-4.1.0.jar;D:\repository\javax\inject\javax.inject\1\javax.inject-1.jar;D:\repository\aopalliance\aopalliance\1.0\aopalliance-1.0.jar;D:\repository\com\github\vlsi\compactmap\compactmap\1.2.1\compactmap-1.2.1.jar;D:\repository\com\github\andrewoma\dexx\dexx-collections\0.2\dexx-collections-0.2.jar;D:\repository\com\netflix\eureka\eureka-core\1.9.3\eureka-core-1.9.3.jar;D:\repository\org\codehaus\woodstox\woodstox-core-asl\4.4.1\woodstox-core-asl-4.4.1.jar;D:\repository\javax\xml\stream\stax-api\1.0-2\stax-api-1.0-2.jar;D:\repository\org\codehaus\woodstox\stax2-api\3.1.4\stax2-api-3.1.4.jar;D:\repository\org\springframework\cloud\spring-cloud-starter-netflix-archaius\2.0.4.RELEASE\spring-cloud-starter-netflix-archaius-2.0.4.RELEASE.jar;D:\repository\org\springframework\cloud\spring-cloud-netflix-archaius\2.0.4.RELEASE\spring-cloud-netflix-archaius-2.0.4.RELEASE.jar;D:\repository\commons-configuration\commons-configuration\1.8\commons-configuration-1.8.jar;D:\repository\commons-lang\commons-lang\2.6\commons-lang-2.6.jar;D:\repository\org\springframework\cloud\spring-cloud-starter-netflix-ribbon\2.0.4.RELEASE\spring-cloud-starter-netflix-ribbon-2.0.4.RELEASE.jar;D:\repository\com\netflix\ribbon\ribbon\2.2.5\ribbon-2.2.5.jar;D:\repository\com\netflix\ribbon\ribbon-transport\2.2.5\ribbon-transport-2.2.5.jar;D:\repository\io\reactivex\rxnetty-contexts\0.4.9\rxnetty-contexts-0.4.9.jar;D:\repository\io\reactivex\rxnetty-servo\0.4.9\rxnetty-servo-0.4.9.jar;D:\repository\io\reactivex\rxnetty\0.4.9\rxnetty-0.4.9.jar;D:\repository\com\netflix\ribbon\ribbon-core\2.2.5\ribbon-core-2.2.5.jar;D:\repository\com\netflix\ribbon\ribbon-httpclient\2.2.5\ribbon-httpclient-2.2.5.jar;D:\repository\commons-collections\commons-collections\3.2.2\commons-collections-3.2.2.jar;D:\repository\com\netflix\netflix-commons\netflix-commons-util\0.3.0\netflix-commons-util-0.3.0.jar;D:\repository\com\netflix\ribbon\ribbon-loadbalancer\2.2.5\ribbon-loadbalancer-2.2.5.jar;D:\repository\com\netflix\netflix-commons\netflix-statistics\0.1.1\netflix-statistics-0.1.1.jar;D:\repository\io\reactivex\rxjava\1.3.8\rxjava-1.3.8.jar;D:\repository\com\netflix\ribbon\ribbon-eureka\2.2.5\ribbon-eureka-2.2.5.jar;D:\repository\com\thoughtworks\xstream\xstream\1.4.10\xstream-1.4.10.jar;D:\repository\xmlpull\xmlpull\1.1.3.1\xmlpull-1.1.3.1.jar;D:\repository\xpp3\xpp3_min\1.1.4c\xpp3_min-1.1.4c.jar;D:\repository\org\springframework\cloud\spring-cloud-starter-openfeign\2.0.4.RELEASE\spring-cloud-starter-openfeign-2.0.4.RELEASE.jar;D:\repository\org\springframework\cloud\spring-cloud-openfeign-core\2.0.4.RELEASE\spring-cloud-openfeign-core-2.0.4.RELEASE.jar;D:\repository\io\github\openfeign\form\feign-form-spring\3.3.0\feign-form-spring-3.3.0.jar;D:\repository\io\github\openfeign\form\feign-form\3.3.0\feign-form-3.3.0.jar;D:\repository\com\google\code\findbugs\annotations\3.0.1\annotations-3.0.1.jar;D:\repository\net\jcip\jcip-annotations\1.0\jcip-annotations-1.0.jar;D:\repository\com\google\code\findbugs\jsr305\3.0.1\jsr305-3.0.1.jar;D:\repository\commons-fileupload\commons-fileupload\1.3.3\commons-fileupload-1.3.3.jar;D:\repository\commons-io\commons-io\2.2\commons-io-2.2.jar;D:\repository\org\springframework\cloud\spring-cloud-commons\2.0.4.RELEASE\spring-cloud-commons-2.0.4.RELEASE.jar;D:\repository\org\springframework\security\spring-security-crypto\5.0.12.RELEASE\spring-security-crypto-5.0.12.RELEASE.jar;D:\repository\io\github\openfeign\feign-core\9.7.0\feign-core-9.7.0.jar;D:\repository\io\github\openfeign\feign-slf4j\9.7.0\feign-slf4j-9.7.0.jar;D:\repository\io\github\openfeign\feign-hystrix\9.7.0\feign-hystrix-9.7.0.jar;D:\repository\io\github\openfeign\feign-java8\9.7.0\feign-java8-9.7.0.jar;D:\repository\org\springframework\cloud\spring-cloud-starter-zipkin\2.0.4.RELEASE\spring-cloud-starter-zipkin-2.0.4.RELEASE.jar;D:\repository\org\springframework\cloud\spring-cloud-starter-sleuth\2.0.4.RELEASE\spring-cloud-starter-sleuth-2.0.4.RELEASE.jar;D:\repository\org\springframework\cloud\spring-cloud-sleuth-core\2.0.4.RELEASE\spring-cloud-sleuth-core-2.0.4.RELEASE.jar;D:\repository\io\zipkin\brave\brave\5.6.1\brave-5.6.1.jar;D:\repository\io\zipkin\brave\brave-context-log4j2\5.6.1\brave-context-log4j2-5.6.1.jar;D:\repository\io\zipkin\brave\brave-instrumentation-spring-web\5.6.1\brave-instrumentation-spring-web-5.6.1.jar;D:\repository\io\zipkin\brave\brave-instrumentation-http\5.6.1\brave-instrumentation-http-5.6.1.jar;D:\repository\io\zipkin\brave\brave-instrumentation-spring-rabbit\5.6.1\brave-instrumentation-spring-rabbit-5.6.1.jar;D:\repository\io\zipkin\brave\brave-instrumentation-kafka-clients\5.6.1\brave-instrumentation-kafka-clients-5.6.1.jar;D:\repository\io\zipkin\brave\brave-instrumentation-httpclient\5.6.1\brave-instrumentation-httpclient-5.6.1.jar;D:\repository\io\zipkin\brave\brave-instrumentation-httpasyncclient\5.6.1\brave-instrumentation-httpasyncclient-5.6.1.jar;D:\repository\io\zipkin\brave\brave-instrumentation-spring-webmvc\5.6.1\brave-instrumentation-spring-webmvc-5.6.1.jar;D:\repository\io\zipkin\brave\brave-instrumentation-servlet\5.6.1\brave-instrumentation-servlet-5.6.1.jar;D:\repository\org\springframework\cloud\spring-cloud-sleuth-zipkin\2.0.4.RELEASE\spring-cloud-sleuth-zipkin-2.0.4.RELEASE.jar;D:\repository\io\zipkin\zipkin2\zipkin\2.12.0\zipkin-2.12.0.jar;D:\repository\io\zipkin\reporter2\zipkin-reporter\2.7.14\zipkin-reporter-2.7.14.jar;D:\repository\io\zipkin\reporter2\zipkin-sender-kafka11\2.7.14\zipkin-sender-kafka11-2.7.14.jar;D:\repository\io\zipkin\reporter2\zipkin-sender-amqp-client\2.7.14\zipkin-sender-amqp-client-2.7.14.jar;D:\repository\org\springframework\cloud\spring-cloud-starter-netflix-hystrix\2.0.4.RELEASE\spring-cloud-starter-netflix-hystrix-2.0.4.RELEASE.jar;D:\repository\org\springframework\cloud\spring-cloud-netflix-ribbon\2.0.4.RELEASE\spring-cloud-netflix-ribbon-2.0.4.RELEASE.jar;D:\repository\com\netflix\hystrix\hystrix-core\1.5.18\hystrix-core-1.5.18.jar;D:\repository\org\hdrhistogram\HdrHistogram\2.1.9\HdrHistogram-2.1.9.jar;D:\repository\com\netflix\hystrix\hystrix-serialization\1.5.18\hystrix-serialization-1.5.18.jar;D:\repository\com\fasterxml\jackson\module\jackson-module-afterburner\2.9.8\jackson-module-afterburner-2.9.8.jar;D:\repository\com\netflix\hystrix\hystrix-metrics-event-stream\1.5.18\hystrix-metrics-event-stream-1.5.18.jar;D:\repository\com\netflix\hystrix\hystrix-javanica\1.5.18\hystrix-javanica-1.5.18.jar;D:\repository\org\ow2\asm\asm\5.0.4\asm-5.0.4.jar;D:\repository\com\google\guava\guava\15.0\guava-15.0.jar;D:\repository\io\reactivex\rxjava-reactive-streams\1.2.1\rxjava-reactive-streams-1.2.1.jar;D:\repository\org\reactivestreams\reactive-streams\1.0.2\reactive-streams-1.0.2.jar;D:\repository\org\springframework\cloud\spring-cloud-starter-netflix-hystrix-dashboard\2.0.4.RELEASE\spring-cloud-starter-netflix-hystrix-dashboard-2.0.4.RELEASE.jar;D:\repository\org\springframework\cloud\spring-cloud-netflix-hystrix-dashboard\2.0.4.RELEASE\spring-cloud-netflix-hystrix-dashboard-2.0.4.RELEASE.jar;D:\repository\org\springframework\boot\spring-boot-starter-freemarker\2.0.9.RELEASE\spring-boot-starter-freemarker-2.0.9.RELEASE.jar;D:\repository\org\freemarker\freemarker\2.3.28\freemarker-2.3.28.jar;D:\repository\org\webjars\jquery\2.1.1\jquery-2.1.1.jar;D:\repository\org\webjars\d3js\3.4.11\d3js-3.4.11.jar;D:\repository\org\aspectj\aspectjweaver\1.9.0\aspectjweaver-1.9.0.jar;D:\repository\org\aspectj\aspectjrt\1.9.0\aspectjrt-1.9.0.jar;D:\repository\org\springframework\cloud\spring-cloud-starter-config\2.0.5.RELEASE\spring-cloud-starter-config-2.0.5.RELEASE.jar;D:\repository\org\springframework\cloud\spring-cloud-config-client\2.0.5.RELEASE\spring-cloud-config-client-2.0.5.RELEASE.jar;D:\repository\org\springframework\boot\spring-boot-starter-actuator\2.0.9.RELEASE\spring-boot-starter-actuator-2.0.9.RELEASE.jar;D:\repository\org\springframework\boot\spring-boot-actuator-autoconfigure\2.0.9.RELEASE\spring-boot-actuator-autoconfigure-2.0.9.RELEASE.jar;D:\repository\org\springframework\boot\spring-boot-actuator\2.0.9.RELEASE\spring-boot-actuator-2.0.9.RELEASE.jar;D:\repository\io\micrometer\micrometer-core\1.0.10\micrometer-core-1.0.10.jar;D:\repository\org\latencyutils\LatencyUtils\2.0.3\LatencyUtils-2.0.3.jar;D:\repository\org\springframework\boot\spring-boot-configuration-processor\2.0.9.RELEASE\spring-boot-configuration-processor-2.0.9.RELEASE.jar;D:\repository\org\springframework\boot\spring-boot-starter-thymeleaf\2.0.9.RELEASE\spring-boot-starter-thymeleaf-2.0.9.RELEASE.jar;D:\repository\org\thymeleaf\thymeleaf-spring5\3.0.11.RELEASE\thymeleaf-spring5-3.0.11.RELEASE.jar;D:\repository\org\thymeleaf\thymeleaf\3.0.11.RELEASE\thymeleaf-3.0.11.RELEASE.jar;D:\repository\org\attoparser\attoparser\2.0.5.RELEASE\attoparser-2.0.5.RELEASE.jar;D:\repository\org\unbescape\unbescape\1.1.6.RELEASE\unbescape-1.1.6.RELEASE.jar;D:\repository\org\thymeleaf\extras\thymeleaf-extras-java8time\3.0.4.RELEASE\thymeleaf-extras-java8time-3.0.4.RELEASE.jar;D:\repository\org\projectlombok\lombok\1.16.22\lombok-1.16.22.jar;D:\repository\org\springframework\spring-core\5.0.13.RELEASE\spring-core-5.0.13.RELEASE.jar;D:\repository\org\springframework\spring-jcl\5.0.13.RELEASE\spring-jcl-5.0.13.RELEASE.jar;D:\repository\org\springframework\session\spring-session-data-redis\2.0.10.RELEASE\spring-session-data-redis-2.0.10.RELEASE.jar;D:\repository\org\springframework\data\spring-data-redis\2.0.14.RELEASE\spring-data-redis-2.0.14.RELEASE.jar;D:\repository\org\springframework\data\spring-data-keyvalue\2.0.14.RELEASE\spring-data-keyvalue-2.0.14.RELEASE.jar;D:\repository\org\springframework\data\spring-data-commons\2.0.14.RELEASE\spring-data-commons-2.0.14.RELEASE.jar;D:\repository\org\springframework\spring-tx\5.0.13.RELEASE\spring-tx-5.0.13.RELEASE.jar;D:\repository\org\springframework\spring-oxm\5.0.13.RELEASE\spring-oxm-5.0.13.RELEASE.jar;D:\repository\org\springframework\spring-context-support\5.0.13.RELEASE\spring-context-support-5.0.13.RELEASE.jar;D:\repository\org\springframework\session\spring-session-core\2.0.10.RELEASE\spring-session-core-2.0.10.RELEASE.jar;D:\repository\org\springframework\boot\spring-boot-starter-data-redis\2.0.9.RELEASE\spring-boot-starter-data-redis-2.0.9.RELEASE.jar;D:\repository\io\lettuce\lettuce-core\5.0.5.RELEASE\lettuce-core-5.0.5.RELEASE.jar;D:\repository\io\projectreactor\reactor-core\3.1.16.RELEASE\reactor-core-3.1.16.RELEASE.jar;D:\repository\io\netty\netty-common\4.1.34.Final\netty-common-4.1.34.Final.jar;D:\repository\io\netty\netty-transport\4.1.34.Final\netty-transport-4.1.34.Final.jar;D:\repository\io\netty\netty-buffer\4.1.34.Final\netty-buffer-4.1.34.Final.jar;D:\repository\io\netty\netty-resolver\4.1.34.Final\netty-resolver-4.1.34.Final.jar;D:\repository\io\netty\netty-handler\4.1.34.Final\netty-handler-4.1.34.Final.jar;D:\repository\io\netty\netty-codec\4.1.34.Final\netty-codec-4.1.34.Final.jar;D:\repository\org\springframework\boot\spring-boot-starter-jdbc\2.0.9.RELEASE\spring-boot-starter-jdbc-2.0.9.RELEASE.jar;D:\repository\com\zaxxer\HikariCP\2.7.9\HikariCP-2.7.9.jar;D:\repository\org\springframework\spring-jdbc\5.0.13.RELEASE\spring-jdbc-5.0.13.RELEASE.jar;D:\repository\com\alibaba\druid\1.1.13\druid-1.1.13.jar;D:\repository\com\fasterxml\jackson\core\jackson-core\2.9.8\jackson-core-2.9.8.jar;D:\repository\com\fasterxml\jackson\core\jackson-databind\2.9.8\jackson-databind-2.9.8.jar;D:\repository\com\fasterxml\jackson\core\jackson-annotations\2.9.0\jackson-annotations-2.9.0.jar;D:\repository\com\fasterxml\jackson\datatype\jackson-datatype-joda\2.9.8\jackson-datatype-joda-2.9.8.jar;D:\repository\joda-time\joda-time\2.9.9\joda-time-2.9.9.jar;D:\repository\com\fasterxml\jackson\module\jackson-module-parameter-names\2.9.8\jackson-module-parameter-names-2.9.8.jar;D:\repository\com\github\pagehelper\pagehelper-spring-boot-starter\1.1.2\pagehelper-spring-boot-starter-1.1.2.jar;D:\repository\org\mybatis\spring\boot\mybatis-spring-boot-starter\1.3.0\mybatis-spring-boot-starter-1.3.0.jar;D:\repository\org\mybatis\spring\boot\mybatis-spring-boot-autoconfigure\1.3.0\mybatis-spring-boot-autoconfigure-1.3.0.jar;D:\repository\org\mybatis\mybatis\3.4.4\mybatis-3.4.4.jar;D:\repository\org\mybatis\mybatis-spring\1.3.1\mybatis-spring-1.3.1.jar;D:\repository\com\github\pagehelper\pagehelper-spring-boot-autoconfigure\1.1.2\pagehelper-spring-boot-autoconfigure-1.1.2.jar;D:\repository\com\github\pagehelper\pagehelper\5.0.3\pagehelper-5.0.3.jar;D:\repository\com\github\jsqlparser\jsqlparser\1.0\jsqlparser-1.0.jar;D:\repository\com\alibaba\druid-spring-boot-starter\1.1.13\druid-spring-boot-starter-1.1.13.jar;D:\repository\org\slf4j\slf4j-api\1.7.26\slf4j-api-1.7.26.jar;D:\repository\org\springframework\boot\spring-boot-autoconfigure\2.0.9.RELEASE\spring-boot-autoconfigure-2.0.9.RELEASE.jar;E:\pratice\xxxxx-base\xxxxx-core\target\classes;D:\repository\javax\validation\validation-api\2.0.1.Final\validation-api-2.0.1.Final.jar;D:\repository\com\alibaba\fastjson\1.2.50\fastjson-1.2.50.jar;D:\repository\org\apache\commons\commons-pool2\2.5.0\commons-pool2-2.5.0.jar;D:\repository\net\logstash\logback\logstash-logback-encoder\5.0\logstash-logback-encoder-5.0.jar;D:\repository\ch\qos\logback\logback-core\1.2.3\logback-core-1.2.3.jar;D:\repository\org\apache\commons\commons-lang3\3.10\commons-lang3-3.10.jar" cn.appliedata.auth.xxxxxAuthApplication
2020-04-02 14:04:43.533  INFO [-,,,] 6664 --- [           main] s.c.a.AnnotationConfigApplicationContext : Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@644baf4a: startup date [Thu Apr 02 14:04:43 CST 2020]; root of context hierarchy
2020-04-02 14:04:43.729  INFO [-,,,] 6664 --- [           main] f.a.AutowiredAnnotationBeanPostProcessor : JSR-330 'javax.inject.Inject' annotation found and supported for autowiring
2020-04-02 14:04:43.767  INFO [-,,,] 6664 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'configurationPropertiesRebinderAutoConfiguration' of type [org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration$$EnhancerBySpringCGLIB$$f478c033] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)

  .   ____          _            __ _ _
 /\\/___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, |////
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::        (v2.0.9.RELEASE)

2020-04-02 14:04:44,500 INFO (ConfigServicePropertySourceLocator.java:206)- Fetching config from server at : http://xxxxx-base-config:8773/
2020-04-02 14:04:45,551 INFO (ConfigServicePropertySourceLocator.java:229)- Connect Timeout Exception on Url - http://xxxxx-base-config:8773/. Will be trying the next url if available
2020-04-02 14:04:45,552 WARN (ConfigServicePropertySourceLocator.java:141)- Could not locate PropertySource: I/O error on GET request for "http://xxxxx-base-config:8773/service-auth/default": xxxxx-base-config; nested exception is java.net.UnknownHostException: xxxxx-base-config
2020-04-02 14:04:45,553 INFO (SpringApplication.java:654)- No active profile set, falling back to default profiles: default
2020-04-02 14:04:45,572 INFO (AbstractApplicationContext.java:592)- Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@e077866: startup date [Thu Apr 02 14:04:45 CST 2020]; parent: org.springframework.context.annotation.AnnotationConfigApplicationContext@644baf4a
2020-04-02 14:04:46,234 WARN (ClassPathMapperScanner.java:166)- No MyBatis mapper was found in '[cn.appliedata.*.mapper]' package. Please check your configuration.
2020-04-02 14:04:46,317 WARN (ClassPathMapperScanner.java:166)- No MyBatis mapper was found in '[cn.appliedata.auth]' package. Please check your configuration.
2020-04-02 14:04:46,667 INFO (RepositoryConfigurationDelegate.java:172)- Multiple Spring Data modules found, entering strict repository configuration mode!
2020-04-02 14:04:47,195 INFO (GenericScope.java:294)- BeanFactory id=5948dff8-866d-3a7d-a049-9cbbd4e1acd5
2020-04-02 14:04:47,226 INFO (AutowiredAnnotationBeanPostProcessor.java:153)- JSR-330 'javax.inject.Inject' annotation found and supported for autowiring
2020-04-02 14:04:47,528 INFO (PostProcessorRegistrationDelegate.java:326)- Bean 'org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration' of type [org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration$$EnhancerBySpringCGLIB$$f478c033] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2020-04-02 14:04:48,105 INFO (TomcatWebServer.java:91)- Tomcat initialized with port(s): 8803 (http)
2020-04-02 14:04:48,115 INFO (DirectJDKLog.java:180)- Initializing ProtocolHandler ["http-nio-8803"]
2020-04-02 14:04:48,139 INFO (DirectJDKLog.java:180)- Starting service [Tomcat]
2020-04-02 14:04:48,139 INFO (DirectJDKLog.java:180)- Starting Servlet Engine: Apache Tomcat/8.5.39
2020-04-02 14:04:48,143 INFO (DirectJDKLog.java:180)- The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: [H:\Program Files\Java\jdk1.8.0_181\bin;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files\Git\cmd;C:\Program Files\Microsoft SQL Server\110\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\110\Tools\Binn\ManagementStudio\;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\PrivateAssemblies\;C:\Program Files (x86)\Microsoft SQL Server\110\DTS\Binn\;C:\Program Files\MySQL\MySQL Utilities 1.6\;C:\Program Files\Redis\;C:\Program Files\nodejs\;C:\Program Files (x86)\Microsoft SQL Server\150\DTS\Binn\;C:\Program Files\TortoiseGit\bin;C:\Program Files\Microsoft VS Code\bin;C:\Program Files (x86)\scala\bin;C:\Program Files (x86)\sbt\bin;C:\Program Files\Docker\Docker\resources\bin;C:\ProgramData\DockerDesktop\version-bin;C:\Program Files\PuTTY\;C:\Program Files (x86)\HP\IdrsOCR_15.2.10.1114\;C:\Users\shinh\AppData\Local\Microsoft\WindowsApps;C:\Program Files\curl-7.67.0-win64-mingw\bin;C:\Users\shinh\AppData\Roaming\npm;C:\Program Files\Git\bin;C:\Program Files\JetBrains\IntelliJ IDEA 2019.3.3\bin;;C:\Program Files\Java\jdk1.8.0_181\bin;;.]
2020-04-02 14:04:48,334 INFO (DirectJDKLog.java:180)- Initializing Spring embedded WebApplicationContext
2020-04-02 14:04:48,334 INFO (ServletWebServerApplicationContext.java:296)- Root WebApplicationContext: initialization completed in 2762 ms
2020-04-02 14:04:48,695 WARN (URLConfigurationSource.java:121)- No URLs will be polled as dynamic configuration sources.
2020-04-02 14:04:48,695 INFO (URLConfigurationSource.java:122)- To enable URLs as dynamic configuration sources, define System property archaius.configurationSource.additionalUrls or make config.properties available on classpath.
2020-04-02 14:04:48,705 INFO (DynamicPropertyFactory.java:281)- DynamicPropertyFactory is initialized with configuration sources: com.netflix.config.ConcurrentCompositeConfiguration@203f5d3b
2020-04-02 14:04:50,311 INFO (DruidDataSourceAutoConfigure.java:56)- Init DruidDataSource
2020-04-02 14:04:50,412 ERROR (TomcatStarter.java:62)- Error starting Tomcat context. Exception: org.springframework.beans.factory.BeanCreationException. Message: Error creating bean with name 'servletEndpointRegistrar' defined in class path resource [org/springframework/boot/actuate/autoconfigure/endpoint/web/ServletEndpointManagementContextConfiguration$WebMvcServletEndpointManagementContextConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.springframework.boot.actuate.endpoint.web.ServletEndpointRegistrar]: Factory method 'servletEndpointRegistrar' threw exception; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'healthEndpoint' defined in class path resource [org/springframework/boot/actuate/autoconfigure/health/HealthEndpointConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.springframework.boot.actuate.health.HealthEndpoint]: Factory method 'healthEndpoint' threw exception; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorAutoConfiguration': Bean instantiation via constructor failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.springframework.boot.actuate.autoconfigure.jdbc.DataSourceHealthIndicatorAutoConfiguration$$EnhancerBySpringCGLIB$$47430ebc]: Constructor threw exception; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataSource' defined in class path resource [com/alibaba/druid/spring/boot/autoconfigure/DruidDataSourceAutoConfigure.class]: Invocation of init method failed; nested exception is org.springframework.boot.autoconfigure.jdbc.DataSourceProperties$DataSourceBeanCreationException: Failed to determine a suitable driver class
2020-04-02 14:04:50,434 INFO (DirectJDKLog.java:180)- Stopping service [Tomcat]
2020-04-02 14:04:50,443 WARN (DirectJDKLog.java:180)- The web application [ROOT] appears to have started a thread named [lettuce-eventExecutorLoop-1-1] but has failed to stop it. This is very likely to create a memory leak. Stack trace of thread:
 sun.misc.Unsafe.park(Native Method)
 java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:215)
 java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2078)
 java.util.concurrent.LinkedBlockingQueue.poll(LinkedBlockingQueue.java:467)
 io.netty.util.concurrent.SingleThreadEventExecutor.takeTask(SingleThreadEventExecutor.java:251)
 io.netty.util.concurrent.DefaultEventExecutor.run(DefaultEventExecutor.java:64)
 io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:905)
 io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
 java.lang.Thread.run(Thread.java:748)
2020-04-02 14:04:50,444 WARN (DirectJDKLog.java:180)- The web application [ROOT] appears to have started a thread named [AsyncReporter{org.springframework.cloud.sleuth.zipkin2.sender.RestTemplateSender@267618d9}] but has failed to stop it. This is very likely to create a memory leak. Stack trace of thread:
 sun.misc.Unsafe.park(Native Method)
 java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:215)
 java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2078)
 zipkin2.reporter.ByteBoundedQueue.drainTo(ByteBoundedQueue.java:81)
 zipkin2.reporter.AsyncReporter$BoundedAsyncReporter.flush(AsyncReporter.java:257)
 zipkin2.reporter.AsyncReporter$Builder$1.run(AsyncReporter.java:190)
2020-04-02 14:04:50,446 WARN (AbstractApplicationContext.java:559)- Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Unable to start web server; nested exception is org.springframework.boot.web.server.WebServerException: Unable to start embedded Tomcat
2020-04-02 14:04:50,609 INFO (AbstractApplicationContext.java:592)- Refreshing SpringClientFactory-10.5.151.183: startup date [Thu Apr 02 14:04:50 CST 2020]; parent: org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@e077866
2020-04-02 14:04:50,613 INFO (DirectJDKLog.java:182)- Illegal access: this web application instance has been stopped already. Could not load [org/springframework/cloud/netflix/ribbon/eureka/EurekaRibbonClientConfiguration.class]. The following stack trace is thrown for debugging purposes as well as to attempt to terminate the thread which caused the illegal access.
java.lang.IllegalStateException: Illegal access: this web application instance has been stopped already. Could not load [org/springframework/cloud/netflix/ribbon/eureka/EurekaRibbonClientConfiguration.class]. The following stack trace is thrown for debugging purposes as well as to attempt to terminate the thread which caused the illegal access.
	at org.apache.catalina.loader.WebappClassLoaderBase.checkStateForResourceLoading(WebappClassLoaderBase.java:1384)
	at org.apache.catalina.loader.WebappClassLoaderBase.getResourceAsStream(WebappClassLoaderBase.java:1111)
	at org.springframework.core.io.ClassPathResource.getInputStream(ClassPathResource.java:174)
	at org.springframework.core.type.classreading.SimpleMetadataReader.<init>(SimpleMetadataReader.java:51)
	at org.springframework.core.type.classreading.SimpleMetadataReaderFactory.getMetadataReader(SimpleMetadataReaderFactory.java:103)
	at org.springframework.core.type.classreading.CachingMetadataReaderFactory.getMetadataReader(CachingMetadataReaderFactory.java:123)
	at org.springframework.core.type.classreading.SimpleMetadataReaderFactory.getMetadataReader(SimpleMetadataReaderFactory.java:81)
	at org.springframework.context.annotation.ConfigurationClassParser.retrieveBeanMethodMetadata(ConfigurationClassParser.java:400)
	at org.springframework.context.annotation.ConfigurationClassParser.doProcessConfigurationClass(ConfigurationClassParser.java:318)
	at org.springframework.context.annotation.ConfigurationClassParser.processConfigurationClass(ConfigurationClassParser.java:245)
	at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:202)
	at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:170)
	at org.springframework.context.annotation.ConfigurationClassPostProcessor.processConfigBeanDefinitions(ConfigurationClassPostProcessor.java:316)
	at org.springframework.context.annotation.ConfigurationClassPostProcessor.postProcessBeanDefinitionRegistry(ConfigurationClassPostProcessor.java:233)
	at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanDefinitionRegistryPostProcessors(PostProcessorRegistrationDelegate.java:271)
	at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanFactoryPostProcessors(PostProcessorRegistrationDelegate.java:91)
	at org.springframework.context.support.AbstractApplicationContext.invokeBeanFactoryPostProcessors(AbstractApplicationContext.java:706)
	at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:533)
	at org.springframework.cloud.context.named.NamedContextFactory.createContext(NamedContextFactory.java:117)
	at org.springframework.cloud.context.named.NamedContextFactory.getContext(NamedContextFactory.java:85)
	at org.springframework.cloud.netflix.ribbon.SpringClientFactory.getContext(SpringClientFactory.java:118)
	at org.springframework.cloud.context.named.NamedContextFactory.getInstance(NamedContextFactory.java:126)
	at org.springframework.cloud.netflix.ribbon.SpringClientFactory.getInstance(SpringClientFactory.java:108)
	at org.springframework.cloud.netflix.ribbon.SpringClientFactory.getLoadBalancer(SpringClientFactory.java:57)
	at org.springframework.cloud.netflix.ribbon.RibbonLoadBalancerClient.getLoadBalancer(RibbonLoadBalancerClient.java:155)
	at org.springframework.cloud.netflix.ribbon.RibbonLoadBalancerClient.getServer(RibbonLoadBalancerClient.java:144)
	at org.springframework.cloud.netflix.ribbon.RibbonLoadBalancerClient.choose(RibbonLoadBalancerClient.java:76)
	at org.springframework.cloud.sleuth.zipkin2.sender.LoadBalancerClientZipkinLoadBalancer.instance(LoadBalancerClientZipkinLoadBalancer.java:42)
	at org.springframework.cloud.sleuth.zipkin2.sender.ZipkinRestTemplateSenderConfiguration$1.zipkinUrl(ZipkinRestTemplateSenderConfiguration.java:104)
	at org.springframework.cloud.sleuth.zipkin2.sender.ZipkinRestTemplateWrapper.doExecute(ZipkinRestTemplateSenderConfiguration.java:130)
	at org.springframework.web.client.RestTemplate.exchange(RestTemplate.java:624)
	at org.springframework.cloud.sleuth.zipkin2.sender.RestTemplateSender.post(RestTemplateSender.java:112)
	at org.springframework.cloud.sleuth.zipkin2.sender.RestTemplateSender$HttpPostCall.doExecute(RestTemplateSender.java:123)
	at org.springframework.cloud.sleuth.zipkin2.sender.RestTemplateSender$HttpPostCall.doExecute(RestTemplateSender.java:115)
	at zipkin2.Call$Base.execute(Call.java:379)
	at zipkin2.reporter.AsyncReporter$BoundedAsyncReporter.flush(AsyncReporter.java:286)
	at zipkin2.reporter.AsyncReporter$Builder$1.run(AsyncReporter.java:190)
2020-04-02 14:04:50,614 WARN (AbstractApplicationContext.java:559)- Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanDefinitionStoreException: Failed to parse configuration class [org.springframework.cloud.netflix.ribbon.eureka.EurekaRibbonClientConfiguration]; nested exception is java.lang.IllegalStateException: Illegal access: this web application instance has been stopped already. Could not load [org/springframework/cloud/netflix/ribbon/eureka/EurekaRibbonClientConfiguration.class]. The following stack trace is thrown for debugging purposes as well as to attempt to terminate the thread which caused the illegal access.
2020-04-02 14:04:50,651 INFO (ConditionEvaluationReportLoggingListener.java:142)- 

Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2020-04-02 14:04:50,661 ERROR (LoggingFailureAnalysisReporter.java:42)- 

***************************
APPLICATION FAILED TO START
***************************

Description:

Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured.

Reason: Failed to determine a suitable driver class


Action:

Consider the following:
	If you want an embedded database (H2, HSQL or Derby), please put it on the classpath.
	If you have database settings to be loaded from a particular profile you may need to activate it (no profiles are currently active).


Process finished with exit code 1

dependency:tree -Dverbose

search autoconfigure and JDBC. Remove the following packages from the pom to get

The

druid – spring – the boot – starter

pagehelper – spring – the boot – starter

druid

mysql connector – Java

mybatis – spring – the boot – starter

spring – the boot – starter – JDBC