com.github.thierrysquirrel.autoconfigure.RocketAutoConfiguration Maven / Gradle / Ivy
/**
* Copyright 2019 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
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.thierrysquirrel.autoconfigure;
import com.github.thierrysquirrel.annotation.EnableRocketMQ;
import com.github.thierrysquirrel.aspect.RocketAspect;
import com.github.thierrysquirrel.container.RocketConsumerContainer;
import com.github.thierrysquirrel.container.RocketProducerContainer;
import com.github.thierrysquirrel.core.serializer.ProtoBufSerializer;
import com.github.thierrysquirrel.core.serializer.RocketSerializer;
import com.google.common.collect.Maps;
import org.springframework.boot.autoconfigure.condition.ConditionalOnBean;
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import javax.annotation.Resource;
import java.util.Map;
/**
* ClassName: RocketProperties
* Description:
* date: 2019/4/25 15:57
*
* @author ThierrySquirrel
* @since JDK 1.8
*/
@Configuration
@EnableConfigurationProperties(RocketProperties.class)
@ConditionalOnBean(annotation = EnableRocketMQ.class)
public class RocketAutoConfiguration {
@Resource
private RocketProperties rocketProperties;
@Resource
private Map consumerContainer;
@Resource
private RocketSerializer rocketSerializer;
@Bean
@ConditionalOnMissingBean(RocketConsumerContainer.class)
public RocketConsumerContainer rocketConsumerContainer() {
return new RocketConsumerContainer (rocketProperties, rocketSerializer);
}
@Bean
@ConditionalOnMissingBean(RocketSerializer.class)
public RocketSerializer rocketSerializer() {
return new ProtoBufSerializer ();
}
@Bean
@ConditionalOnMissingBean(Map.class)
public Map consumerContainer() {
return Maps.newConcurrentMap ();
}
@Bean
@ConditionalOnMissingBean(RocketProducerContainer.class)
public RocketProducerContainer rocketProducerContainer() {
return new RocketProducerContainer (consumerContainer, rocketProperties);
}
@Bean
@ConditionalOnMissingBean(RocketAspect.class)
public RocketAspect rockerAspect() {
return new RocketAspect (consumerContainer, rocketProperties);
}
}