Archive: 2020/2

0

How to use the mysql dump file.

This article is just for recording the way how to use rgw mysql dump file. Export (dump)First of all, You have to move the directory to the root of mysql. and then You can see the mysqldump.exe file.

0

Lambda and Method Reference

자바에서의 함수자바에서 함수, 메소드는 독립적으로 존재할 수 없는 개체이다. 하지만 함수형 프로그래밍이 대두됨에 따라서 ‘Java8’ 에서는 함수를 독립적으로 사용하기 위해서 ‘FunctionalInterface’ 이라는 방법을 제공한다. 123456@FunctionalInterfaceinterface DummyInterface { int d

0

Refactor java code using the strategy pattern and behavior parameterization in Java 8

전략 패턴과 동작 파라미터화를 활용해서 자바 코드를 리팩토링 해보자실무의 관점에서 코드를 올바르고 좋게 짠다는 것은 다양한 관점이 있겠지만 그 중 하나는 ‘확장성’ 있는 코드를 만드는 것이다. 어떤 비즈니스가 어떠한 방향으로 새롭게 변경될지는 아무도 모르기 때문에 개발자의 입장에서 어떤 코드를 작성할 때에는 최대한 그 변화들을 수용할 수 있는 코드를 작성할