Use case diagram
Peponi │ 1/8/2025 │ 6m
PlantUML
SyntaxUMLUse case diagram
Use case diagram
1/8/2025
6m
Peponi
PlantUML
SyntaxUMLUse case diagram
1. Introduction
- Use case diagram이란, 시스템이 수행하는 작업에 대한 모델링을 의미한다.
특히High level
영역에서의 기능과 범위를 나타낸다. - 사용자를 중심으로 시스템과의 상호작용을 요약하므로, 자세한 정보는 나타나지 않는다.
- 기본적인 다이어그램 그리기 방법은 Sequence diagram으로부터 출발한다.
2. 기본 사용법
- Actor 정의 :
:이름:
oractor 이름
- Use case 정의 :
(이름)
orusecase 이름
@startuml
actor A
:B:
usecase C
(D)
A -> D
B -> C : Text
@enduml
3. 상세 사용법
3.1. Actor 종류
@startuml
:A:
:B:/
' scheme : #[color|back:color];line:color;line.[bold|dashed|dotted];text:color
:C: #skyblue;line:blue;line.bold;text:magenta
@enduml
@startuml
skinparam actorStyle awesome
:A:
@enduml
@startuml
skinparam actorStyle Hollow
:A:
@enduml
3.2. Use case 사용법
@startuml
usecase A
(B)
' scheme : #[color|back:color];line:color;line.[bold|dashed|dotted];text:color
usecase C #gold;line:aqua;line.dashed;text:crimson
@enduml
@startuml
usecase "It is very very long long\ndescription for makes it\nseveral lines!" as c
usecase c2 as "It could be this way also.
Could makes multiline easier,
visibility also better.
--
`--`, `==`, `..Description..` possible for dividing sections
==
..Done.."
@enduml
3.3. 화살표 사용법
@startuml
:A:
(a)
(b)
(c)
' `-` 대시가 많아질 수록 연결선이 길어짐
A -> a
A --> b
A ---> c
@enduml
@startuml
:A:
:B:
(a)
(b)
A -> a
' `.` 이용하여 모양 변경 가능
A .> b
' `-|>` 이용하여 확장의 의미로 사용 가능
A -|> B
@enduml
@startuml
:A:
(up)
(down)
(left)
(right)
A -up-> up
A -down-> down
A -left-> left
A -right-> right
@enduml
3.4. Package 사용법
@startuml
package People{
actor A
actor B
}
rectangle Tasks{
usecase a
usecase b
}
A -> a
B -> b
@enduml
3.5. Note 사용법
@startuml
actor A
actor B
note top of A : Top
note bottom of A : Bottom
note left of A : Left
note right of B : Right
note "Connected" as c
' Use `.` symbol for link objects
A.c
c.B
@enduml
3.6. Stereotype
@startuml
actor A <<People>>
usecase a <<Action>>
@enduml
3.7. Diagram 정렬
@startuml
top to bottom direction
actor A
actor B
usecase a
usecase b
A --> a
B --> b
@enduml
@startuml
left to right direction
actor C
actor D
usecase c
usecase d
C --> c
D --> d
@enduml
3.8. JSON data 표현
@startuml
json Students{
"members": [
{
"Name" : "A",
"Class" : "A",
"Example results" : {"Math":"90", "History":"80"}
},
{
"Name" : "B",
"Class" : "B",
"Example results" : {"Math":"70", "History":"100"}
}
]
}
@enduml