chore: upgrade deps

This commit is contained in:
ReaJason
2025-12-16 21:55:21 +08:00
parent 3c646b9104
commit c27c580943
14 changed files with 31 additions and 17 deletions
@@ -35,7 +35,7 @@ public class CommandConfig extends ShellToolConfig {
private ImplementationClass implementationClass = ImplementationClass.RuntimeExec;
/**
* 命令执行模板,例如 sh -c "{command}" 2>&1使用 {command} 作为占位符
* 命令执行模板,使用 {command} 作为占位符
*/
private String template;
@@ -80,7 +80,7 @@ public class ApusicFilterInjector {
/**
* context: com.apusic.web.container.WebContainer
* context -> webapp: com.apusic.deploy.runtime.WebModule
* context - webapp: com.apusic.deploy.runtime.WebModule
* /usr/local/ass/lib/apusic.jar
*/
public Set<Object> getContext() throws Exception {
@@ -29,7 +29,7 @@ public class ResponseBodyConfig extends ProbeContentConfig {
private String base64Bytes;
/**
* 命令执行模板,例如 sh -c "{command}" 2>&1使用 {command} 作为占位符
* 命令执行模板,使用 {command} 作为占位符
*/
private String commandTemplate;
@@ -9,7 +9,6 @@ import java.util.Set;
/**
* HTTP 服务类型识别,主要识别 Servlet 容器实现,例如 WildFly 识别为 UndertowPayara 识别为 GlassFish
* 很多国产中间件都是基于 GlassFish 改的,都会识别为 GlassFish
* <br/>
* 额外需要注意:
* 1. 不会识别 SpringWebMVC Struct2 这种框架,只识别其提供 HTTP 服务的 Servlet 容器类型
* 2. 识别的顺序很重要,部分类型的识别单独拿出来是不准确的,没有测试的情况下,不要以下的 if 判断顺序