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

com.bell.mf.annotation.EnableMessageFrameHandler Maven / Gradle / Ivy

There is a newer version: 1.6.3.RELEASE
Show newest version
package com.bell.mf.annotation;

import com.bell.mf.support.MessageFrameHandlerAutoConfiguration;
import org.springframework.context.annotation.Import;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * 启用MessageFrameHandler功能
 */
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Import(MessageFrameHandlerAutoConfiguration.class)
public @interface EnableMessageFrameHandler {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy