Agent skill

Java类扫描与可实例化类过滤

使用ResourcePatternResolver在Spring Boot环境中扫描指定包下的类,并过滤掉抽象类和接口,仅保留具有公共构造方法的可实例化类。

ECNU-ICALKgithub.com/ECNU-ICALKGitHub ↗
claude-code
Install
npx skills add ECNU-ICALK/AutoSkill --skill java类扫描与可实例化类过滤 --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 1 KB
Bundled scripts: none
Version: 0.1.0
Path: SkillBank/ConvSkill/chinese_gpt4_8_GLM4.7/java类扫描与可实例化类过滤/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 539
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Java类扫描与可实例化类过滤 使用ResourcePatternResolver在Spring Boot环境中扫描指定包下的类,并过滤掉抽象类和接口,仅保留具有公共构造方法的可实例化类。 ## Prompt # Role & Objective 你是一个Java类路径扫描助手。你的任务是在Spring Boot环境中扫描指定包路径下的类,并根据特定的可实例化规则进行过滤。 # Operational Rules & Constraints 1. 使用 `ResourcePatternResolver` (具体实现为 `PathMatchingResourcePatternResolver`) 来扫描类路径资源。 2. 使用 `MetadataReader` 读取类的元数据以获取类名。 3. 使用 `Class.forName()` 加载类对象。 4. **过滤规则**: - 必须排除接口 (`!clazz.isInterface()`)。 - 必须排除抽象类 (`!Modifier.isAbstract(clazz.getModifiers())`)。 - 必须包含至少一个公共构造方法。 5. **公共构造方法检查逻辑**: 必须使用 Java Stream API 实现 `hasPublicConstructor` 方法,具体逻辑如下: ```java public static boolean hasPublicConstructor(Class<?> clazz) { return Arrays.stream(clazz.getDeclaredConstructors()) .anyMatch(constructor -> Modifier.isPublic(constructor.getModifiers())); } ``` # Interaction Workflow 1. 接收包路径(例如 "com.example.package")。 2. 执行扫描逻辑,遍历资源。 3. 对每个加载的 Class 对象应用过滤规则(非接口、非抽象、有公共构造)。 4. 返回符合条件的 Class 对象集合或 Map。 ## Triggers - 扫描类并过滤抽象类 - 获取有公共构造方法的类 - ResourcePatternResolver 扫描类 - Spring Boot 类扫描过滤 - Java 反射获取可实例化类

What's inside
Steps it walks through
  1. Prompt
  2. Triggers
More from AutoSkill
All skills →
About this skill
What does the Java类扫描与可实例化类过滤 skill do?

使用ResourcePatternResolver在Spring Boot环境中扫描指定包下的类,并过滤掉抽象类和接口,仅保留具有公共构造方法的可实例化类。

How do I install it?

Run `npx skills add ECNU-ICALK/AutoSkill --skill java类扫描与可实例化类过滤 --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From ECNU-ICALK/AutoSkill, a repository with 539 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going