If I want to send message to Google PubSub and consume message from it.Would you recommend using Spring cloud GCP library or just using Google Cloud Java API.
Can anyone differentiate between these two or what are features spring cloud gcp provide as compared to google cloud pubsub library.
The difference is whether you prefer to configure the objects programmatically (with client library) or through properties (with spring-cloud-gcp's PubSubTemplate). Spring Cloud GCP uses the underlying client library objects to talk to Cloud Pub/Sub, but it autoconfigures these objects with sensible defaults, allowing you to use properties to control specific behavior.