[+] 重启终端、创建会议、进入会议

This commit is contained in:
acgist
2022-11-25 22:18:01 +08:00
parent 46130cc15b
commit 0f339f4aea
64 changed files with 1159 additions and 359 deletions

View File

@@ -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 {
}

View File

@@ -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 {
}

View File

@@ -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 {
}

View File

@@ -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异常
*/