줄의 마지막에서 시작 중괄호{
를 쓰고 열고 새 줄을 삽입한다.
for (char ch : exp.toCharArray()) {
....
}
줄 바꿈 후 추가 들여쓰기
AbstractAggregateRootTest.AggregateRoot proxyAggregateRoot =
em.getReference(AbstractAggregateRootTest.AggregateRoot.class, aggregateRoot.getId());
탭(tab) 문자를 사용하여 들여쓴다. 탭 대신 스페이스를 사용하지 않는다.
main
├── dnd
| ├── users
| | ├── controller
| | | └── UserController.class
| | ├── service
| | | └── UserService.class
| | | └──
| | ├── domain
| | | └── User.class
| | ├── dto
| | | └── request
| | | | └── UserRequestDto.class
| | | └── response
| | | | └── UserResponseDto.class
| | └── Repository
| | | └── UserRepository.class
| ├── config
| | ├── jwt
| | | └── JwtProperties.class
| | └── CorsConfig.class
| ├── Dnd10BackendApplication.class
├── resource
├── static
├── templates
├── application.yml
└── application-auth.yml