App下載

詞條

大約有 1,000 項(xiàng)符合查詢結(jié)果 ,庫(kù)內(nèi)數(shù)據(jù)總量為 78,398 項(xiàng)。(搜索耗時(shí):0.0022秒)

351.Spring Cloud GCP 創(chuàng)建主題

PubSubAdmin實(shí)現(xiàn)了一種創(chuàng)建主題的方法: public Topic createTopic(String topicName) 這是有關(guān)如何創(chuàng)建Google Cloud Pub / Sub主題的示例: public void newTopic() { pubSubAdmin.createTopic("topicName"); }

http://m.hgci.cn/scchinese/spring-cloud-gcp-create-theme.html

352.Spring Cloud GCP刪除主題

PubSubAdmin實(shí)現(xiàn)了一種刪除主題的方法: public void deleteTopic(String topicName) 這是有關(guān)如何刪除Google Cloud Pub / Sub主題的示例: public void deleteTopic() { pubSubAdmin.deleteTopic("topicName"); }

http://m.hgci.cn/scchinese/spring-cloud-gcp-delete-theme.html

353.Spring Cloud GCP列出主題

PubSubAdmin實(shí)現(xiàn)了一種列出主題的方法: public List<Topic> listTopics 這是一個(gè)如何列出項(xiàng)目中每個(gè)Google Cloud Pub / Sub主題名稱的示例: public List<String> listTopics() { return pubSubAdmin .listTopics() .stream() .map(Topic::getNameAsTopicName) .map(TopicN...

http://m.hgci.cn/scchinese/spring-cloud-gcp-list-themes.html

354.Spring Cloud GCP創(chuàng)建訂閱

PubSubAdmin實(shí)現(xiàn)了一種創(chuàng)建對(duì)現(xiàn)有主題的訂閱的方法: public Subscription createSubscription(String subscriptionName, String topicName, Integer ackDeadline, String pushEndpoint) 以下是有關(guān)如何創(chuàng)建Google Cloud Pub / Sub訂閱的示例: public void newSubscription() { pubSubA...

http://m.hgci.cn/scchinese/spring-cloud-gcp-create-subscription.html

355.Spring Cloud GCP刪除訂閱

PubSubAdmin實(shí)現(xiàn)了一種刪除訂閱的方法: public void deleteSubscription(String subscriptionName) 以下是有關(guān)如何刪除Google Cloud Pub / Sub訂閱的示例: public void deleteSubscription() { pubSubAdmin.deleteSubscription("subscriptionName"); }

http://m.hgci.cn/scchinese/spring-cloud-gcp-delete-subscription.html

356.Spring Cloud GCP列表訂閱

PubSubAdmin實(shí)現(xiàn)了一種列出訂閱的方法: public List<Subscription> listSubscriptions() 這是一個(gè)如何列出項(xiàng)目中每個(gè)訂閱名稱的示例: public List<String> listSubscriptions() { return pubSubAdmin .listSubscriptions() .stream() .map(Subscription::getNameAsSubscri...

http://m.hgci.cn/scchinese/spring-cloud-gcp-list-subscription.html

357.Spring Cloud GCP示例

提供了示例應(yīng)用程序。

http://m.hgci.cn/scchinese/spring-cloud-gcp-example.html

358.Spring Cloud GCP 設(shè)置內(nèi)容類型

您可以從相應(yīng)的Resource對(duì)象設(shè)置Google Cloud Storage文件的內(nèi)容類型: ((GoogleStorageResource)gcsResource).getBlob().toBuilder().setContentType("text/html").build().update();

http://m.hgci.cn/scchinese/setting-content-types-for-spring-cloud-gcp.html

359.Spring Cloud Pub / Sub通道適配器示例

可用的示例:發(fā)送者和接收者示例應(yīng)用程序JSON有效負(fù)載示例應(yīng)用程序代碼實(shí)驗(yàn)室

http://m.hgci.cn/scchinese/example-of-spring-cloud-pubsub-channel-adapter.html

360.Spring Cloud Google Cloud Storage 入站通道適配器

Google云端存儲(chǔ)入站通道適配器會(huì)輪詢Google云端存儲(chǔ)桶中的新文件,并將每個(gè)文件以Message負(fù)載的形式發(fā)送到@InboundChannelAdapter批注中指定的MessageChannel。這些文件臨時(shí)存儲(chǔ)在本地文件系統(tǒng)的文件夾中。 這是有關(guān)如何配置Google Cloud Sto...

http://m.hgci.cn/scchinese/spring-cloud-google-cloud-storage-inbound-channel-adapter.html

抱歉,暫時(shí)沒有相關(guān)的微課

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

抱歉,暫時(shí)沒有相關(guān)的視頻課程

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

抱歉,暫時(shí)沒有相關(guān)的教程

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

351.Spring Cloud GCP 創(chuàng)建主題

PubSubAdmin實(shí)現(xiàn)了一種創(chuàng)建主題的方法: public Topic createTopic(String topicName) 這是有關(guān)如何創(chuàng)建Google Cloud Pub / Sub主題的示例: public void newTopic() { pubSubAdmin.createTopic("topicName"); }

http://m.hgci.cn/scchinese/spring-cloud-gcp-create-theme.html

352.Spring Cloud GCP刪除主題

PubSubAdmin實(shí)現(xiàn)了一種刪除主題的方法: public void deleteTopic(String topicName) 這是有關(guān)如何刪除Google Cloud Pub / Sub主題的示例: public void deleteTopic() { pubSubAdmin.deleteTopic("topicName"); }

http://m.hgci.cn/scchinese/spring-cloud-gcp-delete-theme.html

353.Spring Cloud GCP列出主題

PubSubAdmin實(shí)現(xiàn)了一種列出主題的方法: public List<Topic> listTopics 這是一個(gè)如何列出項(xiàng)目中每個(gè)Google Cloud Pub / Sub主題名稱的示例: public List<String> listTopics() { return pubSubAdmin .listTopics() .stream() .map(Topic::getNameAsTopicName) .map(TopicN...

http://m.hgci.cn/scchinese/spring-cloud-gcp-list-themes.html

354.Spring Cloud GCP創(chuàng)建訂閱

PubSubAdmin實(shí)現(xiàn)了一種創(chuàng)建對(duì)現(xiàn)有主題的訂閱的方法: public Subscription createSubscription(String subscriptionName, String topicName, Integer ackDeadline, String pushEndpoint) 以下是有關(guān)如何創(chuàng)建Google Cloud Pub / Sub訂閱的示例: public void newSubscription() { pubSubA...

http://m.hgci.cn/scchinese/spring-cloud-gcp-create-subscription.html

355.Spring Cloud GCP刪除訂閱

PubSubAdmin實(shí)現(xiàn)了一種刪除訂閱的方法: public void deleteSubscription(String subscriptionName) 以下是有關(guān)如何刪除Google Cloud Pub / Sub訂閱的示例: public void deleteSubscription() { pubSubAdmin.deleteSubscription("subscriptionName"); }

http://m.hgci.cn/scchinese/spring-cloud-gcp-delete-subscription.html

356.Spring Cloud GCP列表訂閱

PubSubAdmin實(shí)現(xiàn)了一種列出訂閱的方法: public List<Subscription> listSubscriptions() 這是一個(gè)如何列出項(xiàng)目中每個(gè)訂閱名稱的示例: public List<String> listSubscriptions() { return pubSubAdmin .listSubscriptions() .stream() .map(Subscription::getNameAsSubscri...

http://m.hgci.cn/scchinese/spring-cloud-gcp-list-subscription.html

357.Spring Cloud GCP示例

提供了示例應(yīng)用程序。

http://m.hgci.cn/scchinese/spring-cloud-gcp-example.html

358.Spring Cloud GCP 設(shè)置內(nèi)容類型

您可以從相應(yīng)的Resource對(duì)象設(shè)置Google Cloud Storage文件的內(nèi)容類型: ((GoogleStorageResource)gcsResource).getBlob().toBuilder().setContentType("text/html").build().update();

http://m.hgci.cn/scchinese/setting-content-types-for-spring-cloud-gcp.html

359.Spring Cloud Pub / Sub通道適配器示例

可用的示例:發(fā)送者和接收者示例應(yīng)用程序JSON有效負(fù)載示例應(yīng)用程序代碼實(shí)驗(yàn)室

http://m.hgci.cn/scchinese/example-of-spring-cloud-pubsub-channel-adapter.html

360.Spring Cloud Google Cloud Storage 入站通道適配器

Google云端存儲(chǔ)入站通道適配器會(huì)輪詢Google云端存儲(chǔ)桶中的新文件,并將每個(gè)文件以Message負(fù)載的形式發(fā)送到@InboundChannelAdapter批注中指定的MessageChannel。這些文件臨時(shí)存儲(chǔ)在本地文件系統(tǒng)的文件夾中。 這是有關(guān)如何配置Google Cloud Sto...

http://m.hgci.cn/scchinese/spring-cloud-google-cloud-storage-inbound-channel-adapter.html

抱歉,暫時(shí)沒有相關(guān)的文章

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

熱門課程