Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Exception
- JPQL
- 백준
- http
- 인프런
- Thymeleaf
- java
- AOP
- Spring Boot
- SpringBoot
- jpa
- Servlet
- QueryDSL
- 스프링 핵심 원리
- Greedy
- spring
- 스프링
- db
- pointcut
- 스프링 핵심 기능
- Proxy
- 김영한
- kotlin
- 알고리즘
- JDBC
- transaction
- 그리디
- Android
- 자바
- springdatajpa
Archives
- Today
- Total
개발자되기 프로젝트
Decorator Pattern - 1 본문
1. 데코레이터 패턴을 이해하기 위한 예제 코드
2. Component
public interface Component {
String operation();
}
3. RealComponent
@Slf4j
public class RealComponent implements Component{
@Override
public String operation() {
log.info("Real Component 실행");
return "data";
}
}
4. Client
import lombok.extern.slf4j.Slf4j;
@Slf4j
public class DecoratorPatternClient {
private Component component;
public DecoratorPatternClient(Component component) {
this.component = component;
}
public void execute(){
String result = component.operation();
log.info("result={}", result);
}
}
5. Test
import hello.proxy.pureproxy.decorator.code.Component;
import hello.proxy.pureproxy.decorator.code.DecoratorPatternClient;
import hello.proxy.pureproxy.decorator.code.RealComponent;
import lombok.extern.slf4j.Slf4j;
import org.junit.jupiter.api.Test;
@Slf4j
public class DecoratorPatternTest {
@Test
void noDecorator(){
Component realComponent = new RealComponent();
DecoratorPatternClient client = new DecoratorPatternClient(realComponent);
client.execute();
}
}
6. GitHub : 211228 DecoratorePattern1
'인프런 > [인프런] 스프링 핵심 원리 - 고급' 카테고리의 다른 글
Decorator Pattern 3 - chain (0) | 2021.12.28 |
---|---|
Decorator Pattern 2 (0) | 2021.12.28 |
Proxy Pattern - 예제코드 2 (0) | 2021.11.23 |
Proxy Pattern - 예제코드 1 (0) | 2021.11.23 |
Proxy, Proxy Pattern, Decorator Pattern (0) | 2021.11.23 |
Comments