Archive: 2020/10

0

The core of Spring Framework

Inversion of Control (IOC), Denpendency Injection (DI)It means the technique what you give system the ability of controling the objects.That is you don’t consider for managing them. and Spring Framewo

0

Junit 예외 테스트하는 방법에 대한 고찰

테스트를 하게 되면 특정 예외를 발생시키는 코드에 대해서도 테스트를 해야할 경우가 있다. 예를 들면 파라미터 검증을 할 때 특정 값이 없다면 예외가 던져지는지 확인해야하고, 외부 연동을 하고 나서 응답 값이 비정상일 때에도 원하는 흐름대로 예외가 던져지는지 확인해야 한다. Junit을 활용하여 예외를 테스트하는 방법은 기본적으로 크게 어려운 것이 없어 단

0

Building Jpa with Querydsl

Gradle 프로젝트 기준으로 JPA에 QueryDSL을 연동하는 방법을 알아본다. build.gradleQueryDSL은 QClass라는 객체를 자동으로 생성하고 이를 기반으로 타입 세이프한 쿼리를 작성할 수 있도록 돕는다. 이 QClass 객체들이 생성이 될 수 있도록 아래처럼 플러그인을 추가해줘야한다. 123456789plugins {

0

Reflection technique

Creating new instanceCreating new instance using Reflection technique means You would call the contructor of the class.First of all, you gotta set the parameters for the constructor. Create Class<?

0

Importing Hexo Project

Creating the directory.let’s create the directory which is used the root directory of your hexo project. Pulling your git repository.123> git init> git remote add origin [YOUR GIT REPOSITORY]>

0

Checking network status using telnet command

telnet actually is operated on 23 port number. but if you just check the network status whether it’s opened or blocked, you can use telnet command. 1> telnet 180.70.98.168 6393 If it is opened, It

0

How to use Jira Client

DependencyYou could refer ‘https://mvnrepository.com/artifact/net.rcarz/jira-client/0.5‘ site. 1compile group: 'net.rcarz', name: 'jira-client', version: '0.5' Usage of J

0

How to use POI library

Dependency123compile group: 'org.apache.xmlbeans', name: 'xmlbeans', version: '3.1.0'compile group: 'org.apache.commons', name: 'commons-compress', ve

0

The way how create object in Java

1. Static Factory MethodThe java language offer to us the constructor for creating new object. It’s simplest way to do that but It has a lot of limitation.So We would study the new way for creating ja