View gist:570a58ccf0e4590c3a97b82901c95952
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Copyright 2011-Present Author or Authors. | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software |
View gist:5fe53d5cbb4a7eef9734583a80f7a0bc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private void setupCassandra(FieldValueLabelHandler fieldValueHandler) { | |
fieldValueHandler.addMapping(FieldType.COMPONENT, "Annotation", "configuration"); | |
fieldValueHandler.addMapping(FieldType.COMPONENT, "ApacheGeode", "api"); | |
fieldValueHandler.addMapping(FieldType.COMPONENT, "ApacheShiro", "security"); | |
fieldValueHandler.addMapping(FieldType.COMPONENT, "API", "api"); | |
fieldValueHandler.addMapping(FieldType.COMPONENT, "AsyncEventQueue", "aeq"); | |
fieldValueHandler.addMapping(FieldType.COMPONENT, "Authentication", "security"); | |
fieldValueHandler.addMapping(FieldType.COMPONENT, "Build", "build"); | |
fieldValueHandler.addMapping(FieldType.COMPONENT, "Caching", "core"); | |
fieldValueHandler.addMapping(FieldType.COMPONENT, "client/server", "infrastructure"); |
View ClientClusterIntegrationTests.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Copyright 2020 the original author or authors. | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* https://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software |
View ApplicationContextBeanOrderingIntegrationTests.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Copyright 2020 the original author or authors. | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* https://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software |
View GemfireConfiguration.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package io.pivotal.config; | |
import java.util.Properties; | |
import org.apache.geode.pdx.ReflectionBasedAutoSerializer; | |
import org.springframework.cloud.Cloud; | |
import org.springframework.cloud.CloudFactory; | |
import org.springframework.context.annotation.Bean; | |
import org.springframework.data.gemfire.cache.config.EnableGemfireCaching; | |
import org.springframework.data.gemfire.config.annotation.ClientCacheApplication; |