Manus에서 모든 스킬 실행
원클릭으로
원클릭으로
원클릭으로 Manus에서 모든 스킬 실행
시작하기gf
스타3
포크0
업데이트2026년 4월 25일 08:12
GlassFish dev workflow CLI tool
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SKILL.md
readonly메뉴
GlassFish dev workflow CLI tool
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | gf |
| description | GlassFish dev workflow CLI tool |
Run the GlassFish dev workflow command:
./gf $ARGUMENTS
If no arguments were provided, show the quick reference below instead of running a command.
| Command | Description |
|---|---|
./gf start [--no-debug] | Start domain (debug on port 9009 by default) |
./gf stop | Stop the domain |
./gf setup [--delete] | Configure JDBC/JMS/JNDI resources from db.properties + env.properties |
./gf run [--no-debug] | Start + build WAR + deploy (zero to running) |
./gf restart [--no-debug] | Stop + start + build + deploy |
| Command | Description |
|---|---|
./gf ui | rsync XHTML/CSS/JS/images + .jrxml reports to exploded deployment |
./gf classes [-v] | Incremental javac + JDWP hot-swap (~3-6s) |
./gf sync [-v] | UI sync + classes hot-swap (most common) |
./gf full | Clean WAR build + asadmin redeploy (~30-60s) |
./gf deploy | Build WAR + fresh deploy |
./gf undeploy | Remove the deployed application |
| Command | Description |
|---|---|
./gf log [--err] | Tail server log (--err filters errors only) |
./gf ui./gf ui./gf classes -v./gf sync -v./gf full./gf run./gf sync -v
│
├─ UI + resource sync (rsync)
│ src/main/webapp/ ──rsync──► GF exploded deployment dir
│ src/main/resources/reports/ ──rsync──► WEB-INF/classes/reports/
│
└─ Classes hot-swap
1. find -newer → changed .java files
2. javac (incremental, Lombok processorpath)
3. HotSwap.java → JDWP redefineClasses on port 9009
4. If IDE debugger attached → compile only, skip redeploy
5. If structural change → fallback: mvnw package + asadmin redeploy
| File | Purpose |
|---|---|
gf | Main CLI script (project root) |
tools/HotSwap.java | JDWP client that redefines classes in running GlassFish |
tools/.classpath.cache | Cached Maven classpath for incremental javac (gitignored) |