зеркало из
https://github.com/iharh/notes.git
synced 2025-11-03 23:26:09 +02:00
18 строки
688 B
Plaintext
18 строки
688 B
Plaintext
https://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-developing-auto-configuration.html
|
|
|
|
exclusion
|
|
https://stackoverflow.com/questions/28747909/how-to-disable-spring-data-mongodb-autoconfiguration-in-spring-boot
|
|
@SpringBootApplication(exclude = {
|
|
MongoAutoConfiguration.class,
|
|
MongoDataAutoConfiguration.class
|
|
}
|
|
spring.autoconfigure.exclude= \
|
|
org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration,\
|
|
org.springframework.boot.autoconfigure.data.mongo.MongoDataAutoConfiguration)
|
|
|
|
2020
|
|
https://www.marcobehler.com/guides/spring-boot
|
|
2016
|
|
https://sivalabs.in/2016/03/how-springboot-autoconfiguration-magic/
|
|
https://habr.com/ru/post/487980/
|