Go to file
Pavel Popov ef04864747
Let's make it opensource (#23)
* Let's make it opensource

* Bump deps
2021-01-29 15:54:33 +03:00
build_utils@e89b885839 PROX-446: bump depends (#20) 2020-08-20 16:10:43 +03:00
src Let's make it opensource (#23) 2021-01-29 15:54:33 +03:00
.gitignore Add files 2019-05-13 14:12:41 +03:00
.gitmodules Init classes 2019-05-13 12:29:22 +03:00
Jenkinsfile Fix after review 2019-05-16 13:16:21 +03:00
LICENSE Let's make it opensource (#23) 2021-01-29 15:54:33 +03:00
pom.xml Let's make it opensource (#23) 2021-01-29 15:54:33 +03:00
README.md PROX-446: bump depends (#20) 2020-08-20 16:10:43 +03:00

adapter-bank-spring-boot-starter

Build Status

Adapter-bank-spring-boot-starter - это подключаемый Spring Boot модуль для стандартных компонентов proxy-алаптеров.

Для корректной работы Вашего адаптера необходимо:

  • подключить необходимые properties (AdapterProperties, TimerProperties). Если поля родителя не покрывают всех необходимых бизнес-полей, то необходимо унаследоваться от родителя и при помощи аннотаций @Configuration и @ConfigurationProperties создать соответствующий класс конфигураций .Если поля родителя полностью покрывают case, то можно не создавать класс-наследник, а создать соответствующий bean в конфигурации. Например:

    @Bean @Primary @ConfigurationProperties("time.config") public TimerProperties timerProperties() { return new TimerProperties(); }