camunda-community-hub / camunda-platform-7-rest-client-java

Community extension to generate a Java client from the provided Camunda 7 OpenAPI descitpion and also warp it into Spring Boot
Apache License 2.0
61 stars 10 forks source link

Bugfix: Moved to autoconfiguration, moved to eventlistener #92

Closed jonathanlukas closed 1 year ago

jonathanlukas commented 1 year ago

Spring Boot 3 relies on jakarta 9+

The @PostConstruct annotation comes from Jakarta and was therefore in the namespace javax before.

Moving to @EventListener will have the same effect while making the whole implementation Jakarta version agnostic.

closes #91