arguslog
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.githubcew</groupId> <artifactId>arguslog</artifactId> <version>0.4.8</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.7.18</version> </parent> <name>ArgusLog</name> <description> ArgusLog 是一款基于 SpringBoot 与 WebSocket 技术构建的轻量级接口监测与诊断工具,专为 Web 端命令行环境设计。其主要特点包括: 1.全方位接口监测:支持对单接口或批量接口进行监测,全面覆盖请求参数、返回结果、响应耗时、异常信息及调用链追踪等关键维度。 2.深度运行时诊断:集成多项高级诊断功能,包括: 3.Spring 容器 Bean 检索:支持动态查询、验证容器中 Bean 的定义、依赖关系及属性配置,快速定位依赖注入或配置加载异常。 4.Jad 字节码反编译:可实时查看部署环境中任意类的反编译源码,辅助分析第三方库行为、动态代理逻辑或线上源码不一致问题。 5.受限热部署:支持在不重启服务的情况下动态更新特定方法逻辑或配置类,提升开发调试与线上应急处理效率。 6.高可扩展性与集成能力:支持用户自定义命令以适配不同项目需求,并能与企业现有用户体系无缝对接。 7.安全与合规保障:通过自定义 Token 与有效期管理机制,确保操作安全性与审计合规性。 </description> <groupId>io.github.githubcew</groupId> <artifactId>arguslog</artifactId> <version>0.4.8</version> <packaging>jar</packaging> <properties> <maven.compiler.source>8</maven.compiler.source> <maven.compiler.target>8</maven.compiler.target> <springboo.version>2.7.18</springboo.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <java.version>1.8</java.version> <gpg.executable>gpg</gpg.executable> </properties> <dependencies> <!-- Spring Boot Starter依赖 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <version>${springboo.version}</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-aop</artifactId> <version>${springboo.version}</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-autoconfigure</artifactId> <version>${springboo.version}</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-websocket</artifactId> <version>${springboo.version}</version> </dependency> <!-- 配置元数据生成 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <version>${springboo.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.34</version> </dependency> <!-- ASM 核心库 --> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm</artifactId> <version>9.6</version> </dependency> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm-tree</artifactId> <version>9.6</version> </dependency> <!-- 用于扫描包下的类(可选但推荐) --> <dependency> <groupId>org.reflections</groupId> <artifactId>reflections</artifactId> <version>0.10.2</version> </dependency> <dependency> <groupId>net.bytebuddy</groupId> <artifactId>byte-buddy</artifactId> <version>1.10.8</version> </dependency> <dependency> <groupId>net.bytebuddy</groupId> <artifactId>byte-buddy-agent</artifactId> <version>1.10.8</version> </dependency> <!--命令--> <dependency> <groupId>info.picocli</groupId> <artifactId>picocli</artifactId> <version>4.7.6</version> </dependency> <!-- 反编译 --> <dependency> <groupId>org.benf</groupId> <artifactId>cfr</artifactId> <version>0.152</version> </dependency> </dependencies> <build> <plugins> <!-- 确保source和javadoc插件正确配置 --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-sources</id> <phase>package</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.10.0</version> <executions> <execution> <id>attach-javadocs</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- 打包到maven中央仓库插件--> <!-- 强制GPG插件配置--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> <arg>--batch</arg> <arg>--yes</arg> </gpgArguments> <keyname>${gpg.keyname}</keyname> <passphrase>${gpg.passphrase}</passphrase> <passphraseServerId>gpg.passphrase</passphraseServerId> <includeTypes>pom,jar,sources,javadoc</includeTypes> </configuration> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.8.0</version> <extensions>true</extensions> <configuration> <publishingServerId>ossrh</publishingServerId> <autoPublish>false</autoPublish> <waitUntil>published</waitUntil> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.3.0</version> <configuration> <archive> <manifestEntries> <Can-Redefine-Classes>true</Can-Redefine-Classes> <Can-Retransform-Classes>true</Can-Retransform-Classes> <Created-By>ByteBuddy</Created-By> </manifestEntries> </archive> </configuration> </plugin> </plugins> </build> <url>https://github.com/GitHubCew/ArgusLog/</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>https://github.com/GitHubCew/ArgusLog/</url> <connection>scm:git:git://github.com/GitHubCew/ArgusLog.git</connection> <developerConnection>scm:git:ssh://github.com/GitHubCew/ArgusLog.git</developerConnection> </scm> <developers> <developer> <name>chenenwei</name> <email>1522394772@qq.com</email> <url>https://github.com/GitHubCew</url> </developer> <developer> <name>heyugui</name> <email>1724764339@qq.com</email> <url>https://github.com/hyg31</url> </developer> </developers> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> </project>