All Downloads are FREE. Search and download functionalities are using the official Maven repository.

rebue.wheel.vertx.util.EventBusUtils Maven / Gradle / Ivy

There is a newer version: 3.5.45
Show newest version
package rebue.wheel.vertx.util;

import com.google.common.base.CaseFormat;
import lombok.extern.slf4j.Slf4j;

@Slf4j
public class EventBusUtils {
    public static String getAddr(final Class clazz) {
        final String addr = clazz.getPackage().getName() + "." + CaseFormat.UPPER_CAMEL.to(CaseFormat.LOWER_HYPHEN, clazz.getSimpleName());
        log.info("获取EventBus的地址是: {}", addr);
        return addr;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy