ConfigurationProperties outside spring-boot

Can we make @ConfigurationProperties behavior for a boot application without Spring? To explain a bit more clearly, I have a library module that I would like to use in a boot environment without Spring in the future, so I wondered if ConfigurationProperties could be used without introducing a large heap of spring-boot dependency kernel.

+5
source share
1 answer

It looks like you need spring-boot-stater to pull the configuration, so I think there is no answer: D

+1
source

Source: https://habr.com/ru/post/1244557/


All Articles