GET /hello 처리, 테스트 코드 작성

롬복을 이용한 GET /hello/dto 처리, 테스트 코드 작성

// 책
...
	.andExpect(jsonPath("$.amount", is(amount)));

// 변경 내용 
...
	.andExpect(jsonPath("$.amount").value(amount));