Hello!
I was hoping someone could help me with configuration for a Spring Boot
application using SCIMple.
I see that there is a part of the project called scim-spring-boot-starter,
which is used in the scim-server-spring-boot example server. From what I
understand this configuration class is used to create all the beans necessary
for the sample application to run.
In attempting to set up my own Spring Boot app, I imported the
scim-spring-boot-starter dependency. I assumed this would allow that
configuration to be used. But, when attempting to run the Spring Boot
application it fails to start and I get the following error:
Caused by: org.springframework.beans.factory.NoSuchBeanDefinitionException: No
qualifying bean of type 'com.myscimproject.app.scim.core.schema.SchemaRegistry'
available: expected at least 1 bean which qualifies as autowire candidate.
Dependency annotations: {}
Is my assumption that the app would be configured automatically when importing
the starter incorrect? Is there something I’m missing to create the beans?
Thanks!