Behavioral_Visitor
β Visitor Pattern add new operations to existing object structures without modifying those classes ππ» separate algorithms(operations) from the objects on which they operate π Shap...
β Visitor Pattern add new operations to existing object structures without modifying those classes ππ» separate algorithms(operations) from the objects on which they operate π Shap...
β Presentation Layer check parameter from front end β MockMVC use Mock(fake data) to test MVC To test controller, make service and repository a mock data How to use? need tw...
β Business Logic (1) As a cafe manager, create products (2) product number should be created automatically π Business for Product Service @Transactional(readOnly = true) @RequiredArgsConst...
β Linux file system: ext2, 3, 4 β Rules of files in linux 1οΈβ£ Files do not have extensions unless, you want to add an extension on purpose if you add an extension it becomes part of ...
βοΈ @SpringBootTest π @JpaDataTest @SpringBootTest π @WebMvcTest @Transactional(readOnly=true) optimistic lock π pessimistic lock CQRS: separate Command(CUD) and Query(Read) β Business...
β Strategy Pattern make a lot of algorithms encapsulate them and make them interchangeable at runtime, κ°μλΌμ°κΈ° client will use the common interface only actual behavior can vary according...
β Mediator mediator object control how the objects interact objects communicate through mediator ππ» before: objects communicate directly with each other, tight coupling ππ» after ...
β Command Pattern encapsulate the request decouple invoker(νΈμΆμ) and reciever(μμ μ) ππ» when request logic changes, invoker code will not change β Diagram π Command pattern example βοΈ In...
βοΈ QueryDSL β Production code @Repository public interface ProductRepository extends JpaRepository<Product, Long> { /** * select * * from product * where selling_sta...
β Product Entity @Entity @Getter @NoArgsConstructor(access = AccessLevel.PROTECTED) public class Product extends BaseEntity { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) pr...