I tried to use Spring Pulsar to create a topic on an Apache Pulsar instance in the cloud, but after implementing the connection settings, I keep getting the following error: java.lang.IllegalArgumentException: pulsar+ssl://localhost:6651/admin/v2/persistent/user-login-tenant/user-login-namespace?includeSystemTopic=false could not be parsed into a proper Uri, missing scheme. Is there something wrong with my configuration?
spring:
pulsar:
admin:
service-url: pulsar+ssl://localhost:6651
authentication:
plugin-class-name: org.apache.pulsar.client.impl.auth.AuthenticationTls
param:
tlsCertFile: /Users/user/Desktop/project/my-project/tls-ca-cert.pem
tlsKeyFile: /Users/user/Desktop/project/my-project/tls-key.pem
trustedCertFile: /Users/user/Desktop/project/my-project/tls-ca-cert.pem
spring boot version: 3.3.2