qmonmert commented on issue #23509: URL: https://github.com/apache/pulsar/issues/23509#issuecomment-2450704163
@lhotari we used now `spring-boot-starter-pulsar` you can see the PR https://github.com/jhipster/jhipster-lite/pull/11210 I pushed an example of pulsar app generated by https://github.com/jhipster/jhipster-lite on my github https://github.com/qmonmert/pulsarapp You can remove ``` <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-pulsar</artifactId> </dependency> ``` and replace by ``` <dependency> <groupId>org.apache.pulsar</groupId> <artifactId>pulsar-client</artifactId> <version>${pulsar.version}</version> </dependency> ``` to reproduce the bug cc @pascalgrimaud -- 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]
