Home

0

Java 8 Stream

1. Why do we use the stream ? You don’t need to think about how to build. It’s like the Query. How do we get the max value before the Java8, We always use the ‘for’ keyword or ‘if’ keyword for gettin

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

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

0

Overview of the Test Code

Overview of the Test Code1. The purpose and significance of test code.You have to remember the thing that Your system always be processed the management of operational tasks.Actually, If you just thin

0

The usage of Jaxb

1. add The dependencies for JAXB1234567891011121314dependencies { ... compile group: 'javax.xml.bind', name: 'jaxb-api', version: '2.3.0' compile group: &#x

0

The usage of Xpath

If you want to use the Xpath thing when you face the situation that you need to parse the xml thing, then You don’t have to import any dependencies because this function is occured from basic java. I