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

io.github.dengchen2020.websocket.annotation.WebSocketMapping Maven / Gradle / Ivy

There is a newer version: 0.0.28
Show newest version
package io.github.dengchen2020.websocket.annotation;

import org.springframework.stereotype.Component;

import java.lang.annotation.*;

/**
 * WebSocket端口映射
 * @author dengchen
 * @since 2024/8/3
 */
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Component
public @interface WebSocketMapping {

    /**
     * websocket端口映射路径
     */
    String[] value();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy