39otrebla commented on issue #575:
URL:
https://github.com/apache/directory-scimple/issues/575#issuecomment-2092003438
Apologies, I found out just now that Jakarta Application was registered with
a `CondtionalOnMissingBean`.
For anyone having the same question, it is as simple as:
```java
// ScimServerApplication.java
@ApplicationPath("/scim")
public class ScimServerApplication extends Application {
@Override
public Set<Class<?>> getClasses() {
return ScimResourceHelper.scimpleFeatureAndResourceClasses();
}
}
```
And then:
```java
// MyApplication.java
@Bean
ServerConfiguration serverConfiguration() {
return new ServerConfiguration()
.setId("contoso.com")
// all other configs
.setBulkMaxOperations(50);
}
@Bean
Application scimApplication() {
return new ScimServerApplication();
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]