일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 자바 ORM 표준 JPA 프로그래밍 정리
- @TransactionalEventListener
- ksqldb
- 백명석님
- 자바 ORM 표준 JPA 프로그래밍
- CompletableFuture
- java
- ksql
- 리눅스
- git
- IntelliJ
- intellij 즐겨찾기
- javascript case
- multipart테스트
- 원격 브랜 삭제
- intellij 핵심 단축키
- 리팩토링 2판
- Spring Cloud Netflix
- 친절한 SQL 튜닝
- Linux
- #docker compose
- JPA
- intellij favorites
- @Transactional Propagation
- HandlerMethodArgumentResolver
- vue.js
- Stream
- aws
- findTopBy
- 마이크로 서비스
- Today
- Total
목록프로그래밍/디자인패턴 (9)
시그마 삽질==six 시그마
The facade pattern (also spelled façade) is a software-design pattern commonly used in object-oriented programming. Analogous to a facade in architecture, a facade is an object that serves as a front-facing interface masking more complex underlying or structural code. A facade can: -improve the readability and usability of a software library by masking interaction with more complex components be..
'Java 객체 지향 디자인 패턴' 책을 구입하시길 추천드립니다. 책 구입을 원하시는분은 요기를 클릭하시면 됩니다. 하단의 내용은 제가 예전에 읽었던 내용을 요약 정리한 것입니다. The observer pattern is a software design pattern in which an object, called the subject, maintains a list of its dependents, called observers, and notifies them automatically of any state changes, usually by calling one of their methods. Source: https://en.wikipedia.org/wiki/Observer_pattern 옵서버..
'Java 객체 지향 디자인 패턴' 책을 구입하시길 추천드립니다. 책 구입을 원하시는분은 요기를 클릭하시면 됩니다. 하단의 내용은 제가 예전에 읽었던 내용을 요약 정리한 것입니다. In software engineering, the composite pattern is a partitioning design pattern. The composite pattern describes a group of objects that are treated the same way as a single instance of the same type of object. The intent of a composite is to "compose" objects into tree structures to represent pa..
'Java 객체 지향 디자인 패턴' 책을 구입하시길 추천드립니다. 책 구입을 원하시는분은 요기를 클릭하시면 됩니다. 하단의 내용은 제가 예전에 읽었던 내용을 요약 정리한 것입니다. 데코레이터 패턴은 기본 기능에 추가할 수 있는 기능의 종류가 많은 경우에 각 추가 기능을 데코레이터 클래스로 정의 후 필요한 데코레이터 객체를 조합함으로써 추가 기능의 조합을 설계하는 방식임 Decorator는 메쏘드의 확장 개념임. Reader reader = new BufferedReader(new FileReader("xxx"); 이게 다 데코레이터 패턴임 Component: 기본기능을 뜻하는 ConcreteComponent와 추가 기능을 뜻하는 Decorator의 공통 기능을 정의한다. 즉 클라이언트는 Component..
'Java 객체 지향 디자인 패턴' 책을 구입하시길 추천드립니다. 책 구입을 원하시는분은 요기를 클릭하시면 됩니다. 하단의 내용은 제가 예전에 읽었던 내용을 요약 정리한 것입니다. The state pattern is a behavioral software design pattern that allows an object to alter its behavior when its internal state changes. This pattern is close to the concept of finite-state machines. The state pattern can be interpreted as a strategy pattern, which is able to switch a strategy thro..
'Java 객체 지향 디자인 패턴' 책을 구입하시길 추천드립니다. 책 구입을 원하시는분은 요기를 클릭하시면 됩니다. 하단의 내용은 제가 예전에 읽었던 내용을 요약 정리한 것입니다. In computer programming, the strategy pattern (also known as the policy pattern) is a behavioral software design pattern that enables selecting an algorithm at runtime. Instead of implementing a single algorithm directly, code receives run-time instructions as to which in a family of algorithms t..
public class SingleExample { private static SingleExample singleton = new SingleExample(); private SingleExample() { } public static SingleExample getInstance() { return singleton; } } 한개의 인스턴스를 생성해서 전역적으로 공유해서 사용하는 패턴임 1. private static 멤버변수 객체 생성 2. private 생성자 3. static method를 통해 가져옴 필요시 생성하고 싶다면 이렇게.. public class SingleExample { private SingleExample() { } public static class SingletonBuil..
'자바 객체 지향 디자인 패턴' 책을 구입하시길 추천드립니다. 책 구입을 원하시는분은 요기를 클릭하시면 됩니다. 하단의 내용은 제가 예전에 읽었던 내용을 요약 정리한 것입니다. 1. 템플릿 메소드 패턴 동일한 기능을 상위 클래스에서 정의하면서 확장/변화가 필요한 부분만 서브클래스에서 구현하는 패턴 공통기능을 담당하는 추상클래스의 특정메소드에 (공통기능은 덤) 추상 메소드를 호출하는 코드를 넣어(hook,primitive메서드) 변화가 필요한 부분을 서브클래스에서 구현할 수 있게 해놓은것 하단과 같이 오티스 엘리베이터의 모터 클래스가 있다고 하자 public class OtisMotor { private Door door ; private MotorStatus motorStatus ; public Otis..