12345678910111213141516171819202122232425262728293031 |
- //package com.cn.tianji.config;
- //
- //import com.aliyun.openservices.ons.api.PropertyKeyConst;
- //import lombok.Data;
- //import org.springframework.boot.context.properties.ConfigurationProperties;
- //import org.springframework.context.annotation.Bean;
- //import org.springframework.context.annotation.Configuration;
- //
- //import java.util.Properties;
- //
- //@Data
- //@Configuration
- //@ConfigurationProperties(prefix = "rocketmq")
- //public class RocketMqConfig {
- //
- // private String nameServer;
- //
- // private String accessKey;
- //
- // private String secretKey;
- //
- // @Bean
- // public Properties build() {
- // Properties properties = new Properties();
- // properties.setProperty(PropertyKeyConst.AccessKey, accessKey);
- // properties.setProperty(PropertyKeyConst.SecretKey, secretKey);
- // properties.setProperty(PropertyKeyConst.NAMESRV_ADDR, nameServer);
- // return properties;
- // }
- //
- //}
|