From 35f2581ea04ef6bd44ca38dc21044012b3feb743 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=89=E5=88=80?= Date: Mon, 27 Mar 2023 19:52:17 +0800 Subject: [PATCH 1/5] 0.2.1-SNAPSHOT --- README.md | 8 ++++---- pom.xml | 6 +++--- servlet-core/pom.xml | 2 +- .../main/java/org/smartboot/servlet/ContainerRuntime.java | 2 +- .../smartboot/servlet/impl/HttpServletRequestImpl.java | 4 ++-- smart-servlet-maven-plugin/pom.xml | 2 +- spring-boot-starter/pom.xml | 2 +- testsuite/pom.xml | 2 +- 8 files changed, 14 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 26062e3..052be34 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ smart-servlet 在 smart-http 的架构之上,通过继承 HttpHandle 实现了 org.smartboot.servlet smart-servlet-maven-plugin - 0.2 + 0.2.1-SNAPSHOT 8080 @@ -67,12 +67,12 @@ smart-servlet 在 smart-http 的架构之上,通过继承 HttpHandle 实现了 org.smartboot.servlet plugin-session - 0.2 + 0.2.1-SNAPSHOT org.smartboot.servlet plugin-dispatcher - 0.2 + 0.2.1-SNAPSHOT @@ -102,7 +102,7 @@ smart-servlet 在 smart-http 的架构之上,通过继承 HttpHandle 实现了 org.smartboot.servlet smart-servlet-spring-boot-starter - 0.2 + 0.2.1-SNAPSHOT diff --git a/pom.xml b/pom.xml index ede6181..467df1e 100644 --- a/pom.xml +++ b/pom.xml @@ -5,12 +5,12 @@ 4.0.0 org.smartboot.servlet smart-servlet-parent - 0.2 + 0.2.1-SNAPSHOT pom - 1.1.22 - 0.2 + 1.2.0-SNAPSHOT + 0.2.1-SNAPSHOT 3.1.0 1.3.2 diff --git a/servlet-core/pom.xml b/servlet-core/pom.xml index f39a12e..dc056a4 100644 --- a/servlet-core/pom.xml +++ b/servlet-core/pom.xml @@ -5,7 +5,7 @@ smart-servlet-parent org.smartboot.servlet - 0.2 + 0.2.1-SNAPSHOT servlet-core 4.0.0 diff --git a/servlet-core/src/main/java/org/smartboot/servlet/ContainerRuntime.java b/servlet-core/src/main/java/org/smartboot/servlet/ContainerRuntime.java index cd55233..76c80c0 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/ContainerRuntime.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/ContainerRuntime.java @@ -62,7 +62,7 @@ public class ContainerRuntime { * Font Name: Puffy */ private static final String BANNER = " _ _ _ \n" + " ( )_ (_ ) ( )_ \n" + " ___ ___ ___ _ _ _ __ | ,_) ___ __ _ __ _ _ | | __ | ,_)\n" + "/',__)/' _ ` _ `\\ /'_` )( '__)| | /',__) /'__`\\( '__)( ) ( ) | | /'__`\\| | \n" + "\\__, \\| ( ) ( ) |( (_| || | | |_ \\__, \\( ___/| | | \\_/ | | | ( ___/| |_ \n" + "(____/(_) (_) (_)`\\__,_)(_) `\\__) (____/`\\____)(_) `\\___/'(___)`\\____)`\\__)"; - public static final String VERSION = "0.2"; + public static final String VERSION = "0.2.1-SNAPSHOT"; /** * 注册在当前 Servlet 容器中的运行环境 */ diff --git a/servlet-core/src/main/java/org/smartboot/servlet/impl/HttpServletRequestImpl.java b/servlet-core/src/main/java/org/smartboot/servlet/impl/HttpServletRequestImpl.java index 3529ef9..f293697 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/impl/HttpServletRequestImpl.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/impl/HttpServletRequestImpl.java @@ -20,11 +20,11 @@ import org.smartboot.servlet.SmartHttpServletRequest; import org.smartboot.servlet.conf.ServletInfo; import org.smartboot.servlet.impl.fileupload.SmartHttpRequestContext; import org.smartboot.servlet.provider.SessionProvider; -import org.smartboot.servlet.util.DateUtil; import org.smartboot.servlet.third.commons.fileupload.FileItem; import org.smartboot.servlet.third.commons.fileupload.FileUpload; import org.smartboot.servlet.third.commons.fileupload.FileUploadException; import org.smartboot.servlet.third.commons.fileupload.disk.DiskFileItemFactory; +import org.smartboot.servlet.util.DateUtil; import javax.servlet.AsyncContext; import javax.servlet.DispatcherType; @@ -580,7 +580,7 @@ public class HttpServletRequestImpl implements SmartHttpServletRequest { @Override public boolean isSecure() { - throw new UnsupportedOperationException(); + return request.isSecure(); } @Override diff --git a/smart-servlet-maven-plugin/pom.xml b/smart-servlet-maven-plugin/pom.xml index 7dfa6f5..cf53367 100644 --- a/smart-servlet-maven-plugin/pom.xml +++ b/smart-servlet-maven-plugin/pom.xml @@ -5,7 +5,7 @@ smart-servlet-parent org.smartboot.servlet - 0.2 + 0.2.1-SNAPSHOT 4.0.0 maven-plugin diff --git a/spring-boot-starter/pom.xml b/spring-boot-starter/pom.xml index 88fc921..e5b2d88 100644 --- a/spring-boot-starter/pom.xml +++ b/spring-boot-starter/pom.xml @@ -5,7 +5,7 @@ smart-servlet-parent org.smartboot.servlet - 0.2 + 0.2.1-SNAPSHOT 4.0.0 diff --git a/testsuite/pom.xml b/testsuite/pom.xml index 0ba0ed7..4d265f7 100644 --- a/testsuite/pom.xml +++ b/testsuite/pom.xml @@ -73,7 +73,7 @@ org.smartboot.servlet smart-servlet-maven-plugin - 0.2 + 0.2.1-SNAPSHOT 8081 /demo -- Gitee From 9d10cb24c41d79f7ba5bcc3e30b224c411367738 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=89=E5=88=80?= Date: Sun, 7 May 2023 18:29:37 +0800 Subject: [PATCH 2/5] =?UTF-8?q?=E5=8F=91=E5=B8=83=E6=AD=A3=E5=BC=8F?= =?UTF-8?q?=E5=8C=85=200.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 8 ++++---- pom.xml | 6 +++--- servlet-core/pom.xml | 2 +- .../main/java/org/smartboot/servlet/ContainerRuntime.java | 2 +- smart-servlet-maven-plugin/pom.xml | 2 +- spring-boot-starter/pom.xml | 2 +- testsuite/pom.xml | 2 +- 7 files changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 052be34..26062e3 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ smart-servlet 在 smart-http 的架构之上,通过继承 HttpHandle 实现了 org.smartboot.servlet smart-servlet-maven-plugin - 0.2.1-SNAPSHOT + 0.2 8080 @@ -67,12 +67,12 @@ smart-servlet 在 smart-http 的架构之上,通过继承 HttpHandle 实现了 org.smartboot.servlet plugin-session - 0.2.1-SNAPSHOT + 0.2 org.smartboot.servlet plugin-dispatcher - 0.2.1-SNAPSHOT + 0.2 @@ -102,7 +102,7 @@ smart-servlet 在 smart-http 的架构之上,通过继承 HttpHandle 实现了 org.smartboot.servlet smart-servlet-spring-boot-starter - 0.2.1-SNAPSHOT + 0.2 diff --git a/pom.xml b/pom.xml index 467df1e..755bc43 100644 --- a/pom.xml +++ b/pom.xml @@ -5,12 +5,12 @@ 4.0.0 org.smartboot.servlet smart-servlet-parent - 0.2.1-SNAPSHOT + 0.2 pom - 1.2.0-SNAPSHOT - 0.2.1-SNAPSHOT + 1.2.0 + 0.2 3.1.0 1.3.2 diff --git a/servlet-core/pom.xml b/servlet-core/pom.xml index dc056a4..f39a12e 100644 --- a/servlet-core/pom.xml +++ b/servlet-core/pom.xml @@ -5,7 +5,7 @@ smart-servlet-parent org.smartboot.servlet - 0.2.1-SNAPSHOT + 0.2 servlet-core 4.0.0 diff --git a/servlet-core/src/main/java/org/smartboot/servlet/ContainerRuntime.java b/servlet-core/src/main/java/org/smartboot/servlet/ContainerRuntime.java index 76c80c0..cd55233 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/ContainerRuntime.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/ContainerRuntime.java @@ -62,7 +62,7 @@ public class ContainerRuntime { * Font Name: Puffy */ private static final String BANNER = " _ _ _ \n" + " ( )_ (_ ) ( )_ \n" + " ___ ___ ___ _ _ _ __ | ,_) ___ __ _ __ _ _ | | __ | ,_)\n" + "/',__)/' _ ` _ `\\ /'_` )( '__)| | /',__) /'__`\\( '__)( ) ( ) | | /'__`\\| | \n" + "\\__, \\| ( ) ( ) |( (_| || | | |_ \\__, \\( ___/| | | \\_/ | | | ( ___/| |_ \n" + "(____/(_) (_) (_)`\\__,_)(_) `\\__) (____/`\\____)(_) `\\___/'(___)`\\____)`\\__)"; - public static final String VERSION = "0.2.1-SNAPSHOT"; + public static final String VERSION = "0.2"; /** * 注册在当前 Servlet 容器中的运行环境 */ diff --git a/smart-servlet-maven-plugin/pom.xml b/smart-servlet-maven-plugin/pom.xml index cf53367..7dfa6f5 100644 --- a/smart-servlet-maven-plugin/pom.xml +++ b/smart-servlet-maven-plugin/pom.xml @@ -5,7 +5,7 @@ smart-servlet-parent org.smartboot.servlet - 0.2.1-SNAPSHOT + 0.2 4.0.0 maven-plugin diff --git a/spring-boot-starter/pom.xml b/spring-boot-starter/pom.xml index e5b2d88..88fc921 100644 --- a/spring-boot-starter/pom.xml +++ b/spring-boot-starter/pom.xml @@ -5,7 +5,7 @@ smart-servlet-parent org.smartboot.servlet - 0.2.1-SNAPSHOT + 0.2 4.0.0 diff --git a/testsuite/pom.xml b/testsuite/pom.xml index 4d265f7..0ba0ed7 100644 --- a/testsuite/pom.xml +++ b/testsuite/pom.xml @@ -73,7 +73,7 @@ org.smartboot.servlet smart-servlet-maven-plugin - 0.2.1-SNAPSHOT + 0.2 8081 /demo -- Gitee From 52bf151cb89e3b8cf5fcb405c85e653d36fdc6cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=89=E5=88=80?= Date: Sun, 7 May 2023 20:09:45 +0800 Subject: [PATCH 3/5] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E7=AB=AF=E5=8F=A3?= =?UTF-8?q?=E5=8F=B7=E8=A7=A3=E6=9E=90=E9=94=99=E8=AF=AF=E7=9A=84=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/org/smartboot/servlet/impl/HttpServletRequestImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/servlet-core/src/main/java/org/smartboot/servlet/impl/HttpServletRequestImpl.java b/servlet-core/src/main/java/org/smartboot/servlet/impl/HttpServletRequestImpl.java index f293697..2338ab8 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/impl/HttpServletRequestImpl.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/impl/HttpServletRequestImpl.java @@ -534,7 +534,7 @@ public class HttpServletRequestImpl implements SmartHttpServletRequest { if (index < 0) { return request.getRemoteAddress().getPort(); } else { - return NumberUtils.toInt(host.substring(index), -1); + return NumberUtils.toInt(host.substring(index + 1), -1); } } -- Gitee From d4b14b49a9112bf3a7f8958103ea3495cadb21d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=89=E5=88=80?= Date: Sun, 7 May 2023 21:31:12 +0800 Subject: [PATCH 4/5] =?UTF-8?q?=E6=9B=B4=E6=96=B0readme?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/README.md b/README.md index 26062e3..9ff0595 100644 --- a/README.md +++ b/README.md @@ -63,18 +63,6 @@ smart-servlet 在 smart-http 的架构之上,通过继承 HttpHandle 实现了 8080 - - - org.smartboot.servlet - plugin-session - 0.2 - - - org.smartboot.servlet - plugin-dispatcher - 0.2 - - -- Gitee From 6ea2dce10b6ae482c82604128c1f958ace7b3154 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=89=E5=88=80?= Date: Sun, 7 May 2023 21:41:43 +0800 Subject: [PATCH 5/5] =?UTF-8?q?=E6=9B=B4=E6=96=B0copyright?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- servlet-core/pom.xml | 10 ++++++++++ .../org/smartboot/servlet/ContainerRuntime.java | 11 ++++++----- .../org/smartboot/servlet/DefaultServlet.java | 11 ++++++----- .../org/smartboot/servlet/HandlerContext.java | 11 ++++++----- .../smartboot/servlet/HandlesTypesLoader.java | 11 ++++++----- .../smartboot/servlet/ServletContextRuntime.java | 11 ++++++----- .../servlet/SmartHttpServletRequest.java | 11 ++++++----- .../org/smartboot/servlet/WebXmlParseEngine.java | 11 ++++++----- .../smartboot/servlet/conf/DeploymentInfo.java | 11 ++++++----- .../smartboot/servlet/conf/ErrorPageInfo.java | 11 ++++++----- .../org/smartboot/servlet/conf/FilterInfo.java | 11 ++++++----- .../servlet/conf/FilterMappingInfo.java | 11 ++++++----- .../conf/ServletContainerInitializerInfo.java | 11 ++++++----- .../org/smartboot/servlet/conf/ServletInfo.java | 11 ++++++----- .../servlet/conf/ServletMappingInfo.java | 11 ++++++----- .../org/smartboot/servlet/conf/WebAppInfo.java | 11 ++++++----- .../servlet/enums/FilterMappingType.java | 11 ++++++----- .../servlet/enums/ServletContextPathType.java | 11 ++++++----- .../servlet/enums/ServletMappingTypeEnum.java | 11 ++++++----- .../exception/WrappedRuntimeException.java | 11 ++++++----- .../servlet/handler/FilterMatchHandler.java | 11 ++++++----- .../org/smartboot/servlet/handler/Handler.java | 11 ++++++----- .../servlet/handler/HandlerPipeline.java | 11 ++++++----- .../servlet/handler/ServletMatchHandler.java | 11 ++++++----- .../handler/ServletRequestListenerHandler.java | 11 ++++++----- .../servlet/handler/ServletServiceHandler.java | 11 ++++++----- .../impl/ApplicationFilterRegistration.java | 11 ++++++----- .../impl/ApplicationServletRegistration.java | 11 ++++++----- .../smartboot/servlet/impl/AsyncContextImpl.java | 10 ++++++++++ .../smartboot/servlet/impl/FilterConfigImpl.java | 11 ++++++----- .../servlet/impl/HttpServletRequestImpl.java | 11 ++++++----- .../servlet/impl/HttpServletResponseImpl.java | 11 ++++++----- .../org/smartboot/servlet/impl/PartImpl.java | 10 ++++++++++ .../servlet/impl/ServletConfigImpl.java | 11 ++++++----- .../servlet/impl/ServletContextImpl.java | 11 ++++++----- .../servlet/impl/ServletInputStreamImpl.java | 11 ++++++----- .../servlet/impl/ServletOutputStreamImpl.java | 11 ++++++----- .../servlet/impl/ServletPrintWriter.java | 11 ++++++----- .../servlet/impl/SessionCookieConfigImpl.java | 11 ++++++----- .../impl/fileupload/SmartHttpRequestContext.java | 16 +++++++++------- .../org/smartboot/servlet/plugins/Plugin.java | 11 ++++++----- .../servlet/plugins/PluginException.java | 11 ++++++----- .../plugins/dispatcher/DispatcherPlugin.java | 11 ++++++----- .../dispatcher/DispatcherProviderImpl.java | 11 ++++++----- .../dispatcher/RequestDispatcherImpl.java | 11 ++++++----- .../ServletRequestDispatcherWrapper.java | 11 ++++++----- .../ServletResponseDispatcherWrapper.java | 11 ++++++----- .../servlet/plugins/session/HttpSessionImpl.java | 11 ++++++----- .../servlet/plugins/session/SessionPlugin.java | 11 ++++++----- .../plugins/session/SessionProviderImpl.java | 11 ++++++----- .../plugins/websocket/WebsocketPlugin.java | 11 ++++++----- .../plugins/websocket/WebsocketProviderImpl.java | 11 ++++++----- .../websocket/impl/AnnotatedEndpoint.java | 11 ++++++----- .../plugins/websocket/impl/HandlerWrapper.java | 11 ++++++----- .../plugins/websocket/impl/OnMessageConfig.java | 11 ++++++----- .../servlet/plugins/websocket/impl/PathNode.java | 11 ++++++----- .../impl/SmartServerEndpointConfig.java | 11 ++++++----- .../websocket/impl/WebsocketServerContainer.java | 11 ++++++----- .../plugins/websocket/impl/WebsocketSession.java | 11 ++++++----- .../websocket/impl/WsHandshakeRequest.java | 11 ++++++----- .../servlet/provider/DispatcherProvider.java | 11 ++++++----- .../servlet/provider/MemoryPoolProvider.java | 11 ++++++----- .../servlet/provider/SessionProvider.java | 11 ++++++----- .../servlet/provider/WebsocketProvider.java | 11 ++++++----- .../servlet/sandbox/MockDispatcherProvider.java | 11 ++++++----- .../servlet/sandbox/MockMemoryPoolProvider.java | 11 ++++++----- .../servlet/sandbox/MockSessionProvider.java | 11 ++++++----- .../servlet/sandbox/MockWebsocketProvider.java | 11 ++++++----- .../org/smartboot/servlet/sandbox/SandBox.java | 11 ++++++----- .../smartboot/servlet/util/CollectionUtils.java | 16 +++++++++------- .../org/smartboot/servlet/util/DateUtil.java | 11 ++++++----- .../org/smartboot/servlet/util/LRUCache.java | 11 ++++++----- .../smartboot/servlet/util/PathMatcherUtil.java | 11 ++++++----- .../java/org/smartboot/servlet/util/WarUtil.java | 10 ++++++++++ .../org.smartboot.servlet.plugins.Plugin | 10 ++++++++++ smart-servlet-maven-plugin/pom.xml | 10 ++++++++++ .../smartboot/maven/plugin/servlet/RunMojo.java | 11 ++++++----- .../smartboot/maven/plugin/servlet/Starter.java | 11 ++++++----- spring-boot-starter/pom.xml | 10 ++++++++++ .../ConfigurableSmartWebServerFactory.java | 11 ++++++----- .../starter/SmartContainerInitializer.java | 11 ++++++----- .../springboot/starter/SmartServletServer.java | 11 ++++++----- 82 files changed, 526 insertions(+), 379 deletions(-) diff --git a/servlet-core/pom.xml b/servlet-core/pom.xml index f39a12e..59ed9c3 100644 --- a/servlet-core/pom.xml +++ b/servlet-core/pom.xml @@ -1,4 +1,14 @@ + + diff --git a/servlet-core/src/main/java/org/smartboot/servlet/ContainerRuntime.java b/servlet-core/src/main/java/org/smartboot/servlet/ContainerRuntime.java index cd55233..c17fd00 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/ContainerRuntime.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/ContainerRuntime.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: ServletContainerRuntime.java - * Date: 2020-12-31 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/DefaultServlet.java b/servlet-core/src/main/java/org/smartboot/servlet/DefaultServlet.java index 3fcb88f..e1776e5 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/DefaultServlet.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/DefaultServlet.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: DefaultServlet.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/HandlerContext.java b/servlet-core/src/main/java/org/smartboot/servlet/HandlerContext.java index 5ab424a..96465a9 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/HandlerContext.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/HandlerContext.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: HandlerContext.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/HandlesTypesLoader.java b/servlet-core/src/main/java/org/smartboot/servlet/HandlesTypesLoader.java index 0869486..cdeb53b 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/HandlesTypesLoader.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/HandlesTypesLoader.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2021, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: HandlesTypesLoader.java - * Date: 2021-06-27 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/ServletContextRuntime.java b/servlet-core/src/main/java/org/smartboot/servlet/ServletContextRuntime.java index 4b8e12b..7f69b10 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/ServletContextRuntime.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/ServletContextRuntime.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: ContainerRuntime.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/SmartHttpServletRequest.java b/servlet-core/src/main/java/org/smartboot/servlet/SmartHttpServletRequest.java index 649fd26..243bfb2 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/SmartHttpServletRequest.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/SmartHttpServletRequest.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: SmartHttpServletRequest.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/WebXmlParseEngine.java b/servlet-core/src/main/java/org/smartboot/servlet/WebXmlParseEngine.java index 8851e01..59a3ea3 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/WebXmlParseEngine.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/WebXmlParseEngine.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: WebXmlParseEngine.java - * Date: 2020-12-31 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/conf/DeploymentInfo.java b/servlet-core/src/main/java/org/smartboot/servlet/conf/DeploymentInfo.java index eb3f2c7..3d95bb9 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/conf/DeploymentInfo.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/conf/DeploymentInfo.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: DeploymentInfo.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.conf; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/conf/ErrorPageInfo.java b/servlet-core/src/main/java/org/smartboot/servlet/conf/ErrorPageInfo.java index 092d75f..57ad16b 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/conf/ErrorPageInfo.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/conf/ErrorPageInfo.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: ErrorPageInfo.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.conf; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/conf/FilterInfo.java b/servlet-core/src/main/java/org/smartboot/servlet/conf/FilterInfo.java index f5cc32f..ed39e5a 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/conf/FilterInfo.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/conf/FilterInfo.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: FilterInfo.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.conf; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/conf/FilterMappingInfo.java b/servlet-core/src/main/java/org/smartboot/servlet/conf/FilterMappingInfo.java index 23ba8fa..38c5e79 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/conf/FilterMappingInfo.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/conf/FilterMappingInfo.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: FilterMappingInfo.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.conf; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/conf/ServletContainerInitializerInfo.java b/servlet-core/src/main/java/org/smartboot/servlet/conf/ServletContainerInitializerInfo.java index 162e31d..81dc02b 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/conf/ServletContainerInitializerInfo.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/conf/ServletContainerInitializerInfo.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2021, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: ServletContainerInitializerInfo.java - * Date: 2021-05-10 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.conf; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/conf/ServletInfo.java b/servlet-core/src/main/java/org/smartboot/servlet/conf/ServletInfo.java index a7f1682..e32886d 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/conf/ServletInfo.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/conf/ServletInfo.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: ServletInfo.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.conf; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/conf/ServletMappingInfo.java b/servlet-core/src/main/java/org/smartboot/servlet/conf/ServletMappingInfo.java index fc8f2f4..fef9f2c 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/conf/ServletMappingInfo.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/conf/ServletMappingInfo.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: ServletMappingInfo.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.conf; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/conf/WebAppInfo.java b/servlet-core/src/main/java/org/smartboot/servlet/conf/WebAppInfo.java index 1de54aa..8e233a6 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/conf/WebAppInfo.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/conf/WebAppInfo.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: WebAppInfo.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.conf; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/enums/FilterMappingType.java b/servlet-core/src/main/java/org/smartboot/servlet/enums/FilterMappingType.java index 7300db4..e8776b9 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/enums/FilterMappingType.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/enums/FilterMappingType.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: FilterMappingType.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.enums; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/enums/ServletContextPathType.java b/servlet-core/src/main/java/org/smartboot/servlet/enums/ServletContextPathType.java index 697cd9e..8298272 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/enums/ServletContextPathType.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/enums/ServletContextPathType.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: ServletContextPathType.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.enums; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/enums/ServletMappingTypeEnum.java b/servlet-core/src/main/java/org/smartboot/servlet/enums/ServletMappingTypeEnum.java index e654535..0bd38c9 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/enums/ServletMappingTypeEnum.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/enums/ServletMappingTypeEnum.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: ServletMappingTypeEnum.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.enums; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/exception/WrappedRuntimeException.java b/servlet-core/src/main/java/org/smartboot/servlet/exception/WrappedRuntimeException.java index 59c1b4b..329891c 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/exception/WrappedRuntimeException.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/exception/WrappedRuntimeException.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: WrappedRuntimeException.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.exception; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/handler/FilterMatchHandler.java b/servlet-core/src/main/java/org/smartboot/servlet/handler/FilterMatchHandler.java index f8539a5..4599480 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/handler/FilterMatchHandler.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/handler/FilterMatchHandler.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: FilterMatchHandler.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.handler; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/handler/Handler.java b/servlet-core/src/main/java/org/smartboot/servlet/handler/Handler.java index 577433d..1ab547d 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/handler/Handler.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/handler/Handler.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: Handler.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.handler; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/handler/HandlerPipeline.java b/servlet-core/src/main/java/org/smartboot/servlet/handler/HandlerPipeline.java index 28bac1b..1d24089 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/handler/HandlerPipeline.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/handler/HandlerPipeline.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: HandlePipeline.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.handler; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/handler/ServletMatchHandler.java b/servlet-core/src/main/java/org/smartboot/servlet/handler/ServletMatchHandler.java index 9c8ca2e..146b906 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/handler/ServletMatchHandler.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/handler/ServletMatchHandler.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: ServletMatchHandler.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.handler; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/handler/ServletRequestListenerHandler.java b/servlet-core/src/main/java/org/smartboot/servlet/handler/ServletRequestListenerHandler.java index 708c41b..0773af3 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/handler/ServletRequestListenerHandler.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/handler/ServletRequestListenerHandler.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: ServletRequestListenerHandler.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.handler; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/handler/ServletServiceHandler.java b/servlet-core/src/main/java/org/smartboot/servlet/handler/ServletServiceHandler.java index 3934862..6081c12 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/handler/ServletServiceHandler.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/handler/ServletServiceHandler.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: ServletServiceHandler.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.handler; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/impl/ApplicationFilterRegistration.java b/servlet-core/src/main/java/org/smartboot/servlet/impl/ApplicationFilterRegistration.java index 8083c1a..771dc5c 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/impl/ApplicationFilterRegistration.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/impl/ApplicationFilterRegistration.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: ApplicationFilterRegistration.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.impl; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/impl/ApplicationServletRegistration.java b/servlet-core/src/main/java/org/smartboot/servlet/impl/ApplicationServletRegistration.java index 9977c1c..e2f75c2 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/impl/ApplicationServletRegistration.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/impl/ApplicationServletRegistration.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: ApplicationServletRegistration.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.impl; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/impl/AsyncContextImpl.java b/servlet-core/src/main/java/org/smartboot/servlet/impl/AsyncContextImpl.java index 22f78bb..9a2ca15 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/impl/AsyncContextImpl.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/impl/AsyncContextImpl.java @@ -1,3 +1,13 @@ +/* + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] + * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. + */ + package org.smartboot.servlet.impl; import javax.servlet.AsyncContext; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/impl/FilterConfigImpl.java b/servlet-core/src/main/java/org/smartboot/servlet/impl/FilterConfigImpl.java index 0c68ab2..041138c 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/impl/FilterConfigImpl.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/impl/FilterConfigImpl.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: FilterConfigImpl.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.impl; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/impl/HttpServletRequestImpl.java b/servlet-core/src/main/java/org/smartboot/servlet/impl/HttpServletRequestImpl.java index 2338ab8..6f7e18b 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/impl/HttpServletRequestImpl.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/impl/HttpServletRequestImpl.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: HttpServletRequestImpl.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.impl; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/impl/HttpServletResponseImpl.java b/servlet-core/src/main/java/org/smartboot/servlet/impl/HttpServletResponseImpl.java index 8a3b668..6185a27 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/impl/HttpServletResponseImpl.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/impl/HttpServletResponseImpl.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: HttpServletResponseImpl.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.impl; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/impl/PartImpl.java b/servlet-core/src/main/java/org/smartboot/servlet/impl/PartImpl.java index 1ee4b0a..5243d59 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/impl/PartImpl.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/impl/PartImpl.java @@ -1,3 +1,13 @@ +/* + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] + * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. + */ + package org.smartboot.servlet.impl; import org.smartboot.servlet.third.commons.fileupload.FileItem; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/impl/ServletConfigImpl.java b/servlet-core/src/main/java/org/smartboot/servlet/impl/ServletConfigImpl.java index a8f5842..30f8687 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/impl/ServletConfigImpl.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/impl/ServletConfigImpl.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: ServletConfigImpl.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.impl; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/impl/ServletContextImpl.java b/servlet-core/src/main/java/org/smartboot/servlet/impl/ServletContextImpl.java index afcba91..457d1dd 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/impl/ServletContextImpl.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/impl/ServletContextImpl.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: ServletContextImpl.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.impl; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/impl/ServletInputStreamImpl.java b/servlet-core/src/main/java/org/smartboot/servlet/impl/ServletInputStreamImpl.java index 8e0cf22..eba58fa 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/impl/ServletInputStreamImpl.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/impl/ServletInputStreamImpl.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: ServletInputStreamImpl.java - * Date: 2020-12-12 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.impl; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/impl/ServletOutputStreamImpl.java b/servlet-core/src/main/java/org/smartboot/servlet/impl/ServletOutputStreamImpl.java index d5bb0ca..50e3110 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/impl/ServletOutputStreamImpl.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/impl/ServletOutputStreamImpl.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: ServletOutputStreamImpl.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.impl; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/impl/ServletPrintWriter.java b/servlet-core/src/main/java/org/smartboot/servlet/impl/ServletPrintWriter.java index be28342..0c2fce5 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/impl/ServletPrintWriter.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/impl/ServletPrintWriter.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: ServletPrintWriter.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.impl; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/impl/SessionCookieConfigImpl.java b/servlet-core/src/main/java/org/smartboot/servlet/impl/SessionCookieConfigImpl.java index 495a7bd..2980022 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/impl/SessionCookieConfigImpl.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/impl/SessionCookieConfigImpl.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: SessionCookieConfigImpl.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.impl; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/impl/fileupload/SmartHttpRequestContext.java b/servlet-core/src/main/java/org/smartboot/servlet/impl/fileupload/SmartHttpRequestContext.java index e82eb1b..c2e8a11 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/impl/fileupload/SmartHttpRequestContext.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/impl/fileupload/SmartHttpRequestContext.java @@ -1,10 +1,12 @@ -/******************************************************************************* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-http - * file name: SmartHttpRequestContext.java - * Date: 2020-04-03 - * Author: sandao (zhengjunweimail@163.com) - ******************************************************************************/ +/* + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] + * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. + */ package org.smartboot.servlet.impl.fileupload; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/plugins/Plugin.java b/servlet-core/src/main/java/org/smartboot/servlet/plugins/Plugin.java index 646384e..0688826 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/plugins/Plugin.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/plugins/Plugin.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: Plugin.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.plugins; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/plugins/PluginException.java b/servlet-core/src/main/java/org/smartboot/servlet/plugins/PluginException.java index f64bd94..f8e31a6 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/plugins/PluginException.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/plugins/PluginException.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: PluginException.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.plugins; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/plugins/dispatcher/DispatcherPlugin.java b/servlet-core/src/main/java/org/smartboot/servlet/plugins/dispatcher/DispatcherPlugin.java index ac91621..66f689a 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/plugins/dispatcher/DispatcherPlugin.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/plugins/dispatcher/DispatcherPlugin.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: DispatcherPlugin.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.plugins.dispatcher; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/plugins/dispatcher/DispatcherProviderImpl.java b/servlet-core/src/main/java/org/smartboot/servlet/plugins/dispatcher/DispatcherProviderImpl.java index 7f64559..ccbafee 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/plugins/dispatcher/DispatcherProviderImpl.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/plugins/dispatcher/DispatcherProviderImpl.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: DispatcherProviderImpl.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.plugins.dispatcher; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/plugins/dispatcher/RequestDispatcherImpl.java b/servlet-core/src/main/java/org/smartboot/servlet/plugins/dispatcher/RequestDispatcherImpl.java index c674dbf..52f1cb9 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/plugins/dispatcher/RequestDispatcherImpl.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/plugins/dispatcher/RequestDispatcherImpl.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: RequestDispatcherImpl.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.plugins.dispatcher; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/plugins/dispatcher/ServletRequestDispatcherWrapper.java b/servlet-core/src/main/java/org/smartboot/servlet/plugins/dispatcher/ServletRequestDispatcherWrapper.java index 9aeea98..cc315be 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/plugins/dispatcher/ServletRequestDispatcherWrapper.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/plugins/dispatcher/ServletRequestDispatcherWrapper.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: ServletRequestDispatcherWrapper.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.plugins.dispatcher; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/plugins/dispatcher/ServletResponseDispatcherWrapper.java b/servlet-core/src/main/java/org/smartboot/servlet/plugins/dispatcher/ServletResponseDispatcherWrapper.java index 259d022..6713e20 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/plugins/dispatcher/ServletResponseDispatcherWrapper.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/plugins/dispatcher/ServletResponseDispatcherWrapper.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: ServletResponseDispatcherWrapper.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.plugins.dispatcher; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/plugins/session/HttpSessionImpl.java b/servlet-core/src/main/java/org/smartboot/servlet/plugins/session/HttpSessionImpl.java index a2a8050..d86aaa3 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/plugins/session/HttpSessionImpl.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/plugins/session/HttpSessionImpl.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: HttpSessionImpl.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.plugins.session; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/plugins/session/SessionPlugin.java b/servlet-core/src/main/java/org/smartboot/servlet/plugins/session/SessionPlugin.java index ae27a55..96bc281 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/plugins/session/SessionPlugin.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/plugins/session/SessionPlugin.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: SessionPlugin.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.plugins.session; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/plugins/session/SessionProviderImpl.java b/servlet-core/src/main/java/org/smartboot/servlet/plugins/session/SessionProviderImpl.java index 7e7ce4c..a86c8fb 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/plugins/session/SessionProviderImpl.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/plugins/session/SessionProviderImpl.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: SessionProviderImpl.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.plugins.session; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/plugins/websocket/WebsocketPlugin.java b/servlet-core/src/main/java/org/smartboot/servlet/plugins/websocket/WebsocketPlugin.java index 896a8a6..532a99c 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/plugins/websocket/WebsocketPlugin.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/plugins/websocket/WebsocketPlugin.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2021, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: WebsocketPlugin.java - * Date: 2021-03-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.plugins.websocket; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/plugins/websocket/WebsocketProviderImpl.java b/servlet-core/src/main/java/org/smartboot/servlet/plugins/websocket/WebsocketProviderImpl.java index 8262dd4..f192d7e 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/plugins/websocket/WebsocketProviderImpl.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/plugins/websocket/WebsocketProviderImpl.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2021, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: WebsocketProviderImpl.java - * Date: 2021-04-25 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.plugins.websocket; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/plugins/websocket/impl/AnnotatedEndpoint.java b/servlet-core/src/main/java/org/smartboot/servlet/plugins/websocket/impl/AnnotatedEndpoint.java index 64eda94..5eea808 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/plugins/websocket/impl/AnnotatedEndpoint.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/plugins/websocket/impl/AnnotatedEndpoint.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2021, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: AnnotatedEndpoint.java - * Date: 2021-04-26 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.plugins.websocket.impl; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/plugins/websocket/impl/HandlerWrapper.java b/servlet-core/src/main/java/org/smartboot/servlet/plugins/websocket/impl/HandlerWrapper.java index 44e8cba..e2bb99a 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/plugins/websocket/impl/HandlerWrapper.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/plugins/websocket/impl/HandlerWrapper.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2021, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: HandlerWrapper.java - * Date: 2021-04-24 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.plugins.websocket.impl; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/plugins/websocket/impl/OnMessageConfig.java b/servlet-core/src/main/java/org/smartboot/servlet/plugins/websocket/impl/OnMessageConfig.java index 5bda274..7c3a082 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/plugins/websocket/impl/OnMessageConfig.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/plugins/websocket/impl/OnMessageConfig.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2021, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: AnnotatedMessageHandler.java - * Date: 2021-04-27 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.plugins.websocket.impl; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/plugins/websocket/impl/PathNode.java b/servlet-core/src/main/java/org/smartboot/servlet/plugins/websocket/impl/PathNode.java index 295d492..2ddf502 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/plugins/websocket/impl/PathNode.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/plugins/websocket/impl/PathNode.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2021, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: PathNode.java - * Date: 2021-05-02 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.plugins.websocket.impl; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/plugins/websocket/impl/SmartServerEndpointConfig.java b/servlet-core/src/main/java/org/smartboot/servlet/plugins/websocket/impl/SmartServerEndpointConfig.java index cb3a7fd..44d85d8 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/plugins/websocket/impl/SmartServerEndpointConfig.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/plugins/websocket/impl/SmartServerEndpointConfig.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2021, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: ServerEndpointConfigImpl.java - * Date: 2021-04-24 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.plugins.websocket.impl; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/plugins/websocket/impl/WebsocketServerContainer.java b/servlet-core/src/main/java/org/smartboot/servlet/plugins/websocket/impl/WebsocketServerContainer.java index b2ec73f..95cbcff 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/plugins/websocket/impl/WebsocketServerContainer.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/plugins/websocket/impl/WebsocketServerContainer.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2021, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: SmartWebsocketContainer.java - * Date: 2021-04-24 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.plugins.websocket.impl; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/plugins/websocket/impl/WebsocketSession.java b/servlet-core/src/main/java/org/smartboot/servlet/plugins/websocket/impl/WebsocketSession.java index 0f70ab8..e088aa3 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/plugins/websocket/impl/WebsocketSession.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/plugins/websocket/impl/WebsocketSession.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2021, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: WebsocketSession.java - * Date: 2021-04-24 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.plugins.websocket.impl; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/plugins/websocket/impl/WsHandshakeRequest.java b/servlet-core/src/main/java/org/smartboot/servlet/plugins/websocket/impl/WsHandshakeRequest.java index cf43522..27ccdc9 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/plugins/websocket/impl/WsHandshakeRequest.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/plugins/websocket/impl/WsHandshakeRequest.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2021, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: WsHandshakeRequest.java - * Date: 2021-04-24 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.plugins.websocket.impl; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/provider/DispatcherProvider.java b/servlet-core/src/main/java/org/smartboot/servlet/provider/DispatcherProvider.java index ebbdffc..ae65990 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/provider/DispatcherProvider.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/provider/DispatcherProvider.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: DispatcherProvider.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.provider; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/provider/MemoryPoolProvider.java b/servlet-core/src/main/java/org/smartboot/servlet/provider/MemoryPoolProvider.java index c349b1d..25f3133 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/provider/MemoryPoolProvider.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/provider/MemoryPoolProvider.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: MemoryPoolProvider.java - * Date: 2020-12-08 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.provider; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/provider/SessionProvider.java b/servlet-core/src/main/java/org/smartboot/servlet/provider/SessionProvider.java index 0daa93e..07f94de 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/provider/SessionProvider.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/provider/SessionProvider.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: SessionProvider.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.provider; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/provider/WebsocketProvider.java b/servlet-core/src/main/java/org/smartboot/servlet/provider/WebsocketProvider.java index 3ad3006..01417a9 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/provider/WebsocketProvider.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/provider/WebsocketProvider.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2021, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: WebsocketProvider.java - * Date: 2021-03-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.provider; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/sandbox/MockDispatcherProvider.java b/servlet-core/src/main/java/org/smartboot/servlet/sandbox/MockDispatcherProvider.java index a60823b..d79b0e6 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/sandbox/MockDispatcherProvider.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/sandbox/MockDispatcherProvider.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: MockDispatcherProvider.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.sandbox; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/sandbox/MockMemoryPoolProvider.java b/servlet-core/src/main/java/org/smartboot/servlet/sandbox/MockMemoryPoolProvider.java index 18f6097..3b8cc7d 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/sandbox/MockMemoryPoolProvider.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/sandbox/MockMemoryPoolProvider.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: MockMemoryPoolProvider.java - * Date: 2020-12-08 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.sandbox; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/sandbox/MockSessionProvider.java b/servlet-core/src/main/java/org/smartboot/servlet/sandbox/MockSessionProvider.java index 3830f1b..295fa4b 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/sandbox/MockSessionProvider.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/sandbox/MockSessionProvider.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: MockSessionProvider.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.sandbox; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/sandbox/MockWebsocketProvider.java b/servlet-core/src/main/java/org/smartboot/servlet/sandbox/MockWebsocketProvider.java index a518ae9..af801f0 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/sandbox/MockWebsocketProvider.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/sandbox/MockWebsocketProvider.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2021, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: MockWeboscketProvider.java - * Date: 2021-03-30 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.sandbox; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/sandbox/SandBox.java b/servlet-core/src/main/java/org/smartboot/servlet/sandbox/SandBox.java index da79a0a..108d7e2 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/sandbox/SandBox.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/sandbox/SandBox.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: SandBox.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.sandbox; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/util/CollectionUtils.java b/servlet-core/src/main/java/org/smartboot/servlet/util/CollectionUtils.java index 7635cce..5f5de8f 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/util/CollectionUtils.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/util/CollectionUtils.java @@ -1,10 +1,12 @@ -/******************************************************************************* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-http - * file name: CollectionUtils.java - * Date: 2020-12-12 - * Author: sandao (zhengjunweimail@163.com) - ******************************************************************************/ +/* + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] + * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. + */ package org.smartboot.servlet.util; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/util/DateUtil.java b/servlet-core/src/main/java/org/smartboot/servlet/util/DateUtil.java index f5554b0..8254824 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/util/DateUtil.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/util/DateUtil.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: DateUtil.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.util; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/util/LRUCache.java b/servlet-core/src/main/java/org/smartboot/servlet/util/LRUCache.java index 853df9b..a36f1a8 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/util/LRUCache.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/util/LRUCache.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: LRUCache.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.util; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/util/PathMatcherUtil.java b/servlet-core/src/main/java/org/smartboot/servlet/util/PathMatcherUtil.java index 7edea36..93410ef 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/util/PathMatcherUtil.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/util/PathMatcherUtil.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: ServletPathMatcher.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.servlet.util; diff --git a/servlet-core/src/main/java/org/smartboot/servlet/util/WarUtil.java b/servlet-core/src/main/java/org/smartboot/servlet/util/WarUtil.java index e7f8fb4..de1455f 100644 --- a/servlet-core/src/main/java/org/smartboot/servlet/util/WarUtil.java +++ b/servlet-core/src/main/java/org/smartboot/servlet/util/WarUtil.java @@ -1,3 +1,13 @@ +/* + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] + * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. + */ + package org.smartboot.servlet.util; import java.io.File; diff --git a/servlet-core/src/main/resources/META-INF/services/org.smartboot.servlet.plugins.Plugin b/servlet-core/src/main/resources/META-INF/services/org.smartboot.servlet.plugins.Plugin index b22bc5b..717db51 100644 --- a/servlet-core/src/main/resources/META-INF/services/org.smartboot.servlet.plugins.Plugin +++ b/servlet-core/src/main/resources/META-INF/services/org.smartboot.servlet.plugins.Plugin @@ -1,3 +1,13 @@ +# +# Copyright (C) [2022] smartboot [zhengjunweimail@163.com] +# +# 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 +# +# Enterprise users are required to use this project reasonably +# and legally in accordance with the AGPL-3.0 open source agreement +# without special permission from the smartboot organization. +# + org.smartboot.servlet.plugins.session.SessionPlugin org.smartboot.servlet.plugins.dispatcher.DispatcherPlugin org.smartboot.servlet.plugins.websocket.WebsocketPlugin \ No newline at end of file diff --git a/smart-servlet-maven-plugin/pom.xml b/smart-servlet-maven-plugin/pom.xml index 7dfa6f5..7f8b8f3 100644 --- a/smart-servlet-maven-plugin/pom.xml +++ b/smart-servlet-maven-plugin/pom.xml @@ -1,4 +1,14 @@ + + diff --git a/smart-servlet-maven-plugin/src/main/java/org/smartboot/maven/plugin/servlet/RunMojo.java b/smart-servlet-maven-plugin/src/main/java/org/smartboot/maven/plugin/servlet/RunMojo.java index 97fc8cc..5666c8b 100644 --- a/smart-servlet-maven-plugin/src/main/java/org/smartboot/maven/plugin/servlet/RunMojo.java +++ b/smart-servlet-maven-plugin/src/main/java/org/smartboot/maven/plugin/servlet/RunMojo.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: RunMojo.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.maven.plugin.servlet; diff --git a/smart-servlet-maven-plugin/src/main/java/org/smartboot/maven/plugin/servlet/Starter.java b/smart-servlet-maven-plugin/src/main/java/org/smartboot/maven/plugin/servlet/Starter.java index b779ac4..299115c 100644 --- a/smart-servlet-maven-plugin/src/main/java/org/smartboot/maven/plugin/servlet/Starter.java +++ b/smart-servlet-maven-plugin/src/main/java/org/smartboot/maven/plugin/servlet/Starter.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: Starter.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.maven.plugin.servlet; diff --git a/spring-boot-starter/pom.xml b/spring-boot-starter/pom.xml index 88fc921..4200604 100644 --- a/spring-boot-starter/pom.xml +++ b/spring-boot-starter/pom.xml @@ -1,4 +1,14 @@ + + diff --git a/spring-boot-starter/src/main/java/org/smartboot/springboot/starter/ConfigurableSmartWebServerFactory.java b/spring-boot-starter/src/main/java/org/smartboot/springboot/starter/ConfigurableSmartWebServerFactory.java index 69f9566..25f1525 100644 --- a/spring-boot-starter/src/main/java/org/smartboot/springboot/starter/ConfigurableSmartWebServerFactory.java +++ b/spring-boot-starter/src/main/java/org/smartboot/springboot/starter/ConfigurableSmartWebServerFactory.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: ConfigurableSmartWebServerFactory.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.springboot.starter; diff --git a/spring-boot-starter/src/main/java/org/smartboot/springboot/starter/SmartContainerInitializer.java b/spring-boot-starter/src/main/java/org/smartboot/springboot/starter/SmartContainerInitializer.java index d9a57bc..14934cb 100644 --- a/spring-boot-starter/src/main/java/org/smartboot/springboot/starter/SmartContainerInitializer.java +++ b/spring-boot-starter/src/main/java/org/smartboot/springboot/starter/SmartContainerInitializer.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: SmartContainerInitializer.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.springboot.starter; diff --git a/spring-boot-starter/src/main/java/org/smartboot/springboot/starter/SmartServletServer.java b/spring-boot-starter/src/main/java/org/smartboot/springboot/starter/SmartServletServer.java index 90820e2..00e8c6b 100644 --- a/spring-boot-starter/src/main/java/org/smartboot/springboot/starter/SmartServletServer.java +++ b/spring-boot-starter/src/main/java/org/smartboot/springboot/starter/SmartServletServer.java @@ -1,10 +1,11 @@ /* - * Copyright (c) 2017-2020, org.smartboot. All rights reserved. - * project name: smart-servlet - * file name: SmartServletServer.java - * Date: 2020-11-28 - * Author: sandao (zhengjunweimail@163.com) + * Copyright (C) [2022] smartboot [zhengjunweimail@163.com] * + * 企业用户未经smartboot组织特别许可,需遵循AGPL-3.0开源协议合理合法使用本项目。 + * + * Enterprise users are required to use this project reasonably + * and legally in accordance with the AGPL-3.0 open source agreement + * without special permission from the smartboot organization. */ package org.smartboot.springboot.starter; -- Gitee