The SpringBoot project can't get up.

. _
/\ / " _ (_) _\
(() _ _ |" |"_ | |"_ / _ `|\
\ / _) | _) | | (_ |)
"| _ | . _ _ | _ | | _, | | /
= | _ | = | _ / = / _ /
:: Spring Boot:: (v1.5.6.RELEASE)

|

2018-05-28 17 INFO 11.756 INFO 6788-[main] com.wlc.DemoApplication: Starting DemoApplication on X6X8-20180416YV with PID 6788 (F:stspacewlc-security-demotargetclasses started by Administrator in F:stspacewlc-security-demo)
2018-05-28 17 INFO 11.760 INFO 6788-[main] com.wlc.DemoApplication: No active profile set, Falling back to default profiles: default
2018-05-28 17 INFO 11.815 INFO 6788-[main] s.c.a.AnnotationConfigApplicationContext: Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@6b53e23f: startup date [Mon May 28 17:17:11 CST 2018]; Root of context hierarchy
2018-05-28 17 INFO 1715 12.201 INFO 6788-[main] .s.d.r.c.RepositoryConfigurationDelegate: Multiple Spring Data modules found, Entering strict repository configuration mode!
2018-05-28 17 INFO 1712.380 INFO 6788-[main] f.a.AutowiredAnnotationBeanPostProcessor: JSR-330 "javax.inject.Inject" annotation found and supported for autowiring
2018-05-28 17 INFO 12.959 INFO 6788-[main] o.s.j.e.a.AnnotationMBeanExporter: Registering beans for JMX exposure on startup
2018-05-28 17 INFO 6788-[ Main] com.wlc.DemoApplication: Started DemoApplication in 1.451 seconds (JVM running for 2.116)
2018-05-28 17 purl 17 main 12.988 INFO 6788-[Thread-4] s.c.a.AnnotationConfigApplicationContext: Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@6b53e23f: startup date [Mon May 28 17:17:11 CST 2018]; Root of context hierarchy
2018-05-28 17 INFO 12.990 INFO 6788-[Thread-4] o.s.j.e.a.AnnotationMBeanExporter: Unregistering JMX-exposed beans on shutdown

Mar.16,2021

No active profile set No properties file

Add application.properties
to the

resource directory to define the port number, such as server.port=8080


Multiple Spring Data modules found, entering strict repository configuration mode!
this sentence is key, you should configure database connection-related dependencies in the pom file (such as mybatis), but you don't have a configuration prop file.
solution: leave out the database-related dependencies, or configure the database connection


quickly use intellij hem heh.

Menu