[+] 重启终端、创建会议、进入会议
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
package com.acgist.taoyao.boot.annotation;
|
||||
|
||||
import java.lang.annotation.Documented;
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
/**
|
||||
* 监听
|
||||
*
|
||||
* @author acgist
|
||||
*/
|
||||
@Target(ElementType.TYPE)
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@Component
|
||||
@Documented
|
||||
public @interface EventListener {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
package com.acgist.taoyao.boot.annotation;
|
||||
|
||||
import java.lang.annotation.Documented;
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
/**
|
||||
* 管理
|
||||
*
|
||||
* @author acgist
|
||||
*/
|
||||
@Target(ElementType.TYPE)
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@Component
|
||||
@Documented
|
||||
public @interface Manager {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
package com.acgist.taoyao.boot.annotation;
|
||||
|
||||
import java.lang.annotation.Documented;
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
/**
|
||||
* 协议
|
||||
*
|
||||
* @author acgist
|
||||
*/
|
||||
@Target(ElementType.TYPE)
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@Component
|
||||
@Documented
|
||||
public @interface Protocol {
|
||||
|
||||
}
|
||||
@@ -41,10 +41,6 @@ public final class ErrorUtils {
|
||||
* 错误地址
|
||||
*/
|
||||
public static final String ERROR_PATH = "/error";
|
||||
/**
|
||||
* Servlet错误异常
|
||||
*/
|
||||
public static final String EXCEPTION_SERVLET = "javax.servlet.error.exception";
|
||||
/**
|
||||
* Servlet错误编码
|
||||
*/
|
||||
@@ -53,6 +49,10 @@ public final class ErrorUtils {
|
||||
* Servlet错误地址
|
||||
*/
|
||||
public static final String SERVLET_REQUEST_URI = "javax.servlet.error.request_uri";
|
||||
/**
|
||||
* Servlet错误异常
|
||||
*/
|
||||
public static final String EXCEPTION_SERVLET = "javax.servlet.error.exception";
|
||||
/**
|
||||
* SpringBoot异常
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user