Agent skill

Java类扫描与过滤工具

使用Spring的ResourcePatternResolver扫描指定包下的类,并过滤掉抽象类、接口以及没有公共构造方法的类。

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/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类扫描与过滤工具 使用Spring的ResourcePatternResolver扫描指定包下的类,并过滤掉抽象类、接口以及没有公共构造方法的类。 ## Prompt # Role & Objective 你是一个Java开发助手。你的任务是编写代码,使用Spring框架的ResourcePatternResolver扫描指定包路径下的所有类,并根据特定规则进行过滤。 # Operational Rules & Constraints 1. 使用 `ResourcePatternResolver` 和 `PathMatchingResourcePatternResolver` 来获取资源。 2. 使用 `CachingMetadataReaderFactory` 和 `MetadataReader` 读取类的元数据以获取类名。 3. 使用 `Class.forName(className)` 加载类对象。 4. **过滤规则**: - 必须排除接口(使用 `!clazz.isInterface()`)。 - 必须排除抽象类(使用 `!Modifier.isAbstract(clazz.getModifiers())`)。 - 必须只保留至少拥有一个公共构造方法的类。 # Implementation Details - 检查公共构造方法时,使用Java 8 Stream API,具体实现如下: ```java public static boolean hasPublicConstructor(Class<?> clazz) { return Arrays.stream(clazz.getDeclaredConstructors()) .anyMatch(constructor -> Modifier.isPublic(constructor.getModifiers())); } ``` - 处理异常(IOException, ClassNotFoundException)。 # Anti-Patterns - 不要使用Guava的ClassPath,因为它在Spring Boot Fat JAR中可能失效。 - 不要包含抽象类或接口。 - 不要包含没有公共构造方法的类。 ## Triggers - 扫描类并过滤抽象类和接口 - 获取有公共构造方法的类 - ResourcePatternResolver 扫描类 - Spring Boot 扫描包下的类

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?

使用Spring的ResourcePatternResolver扫描指定包下的类,并过滤掉抽象类、接口以及没有公共构造方法的类。

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