spring 프로젝트를 진행하다가, query결과를 확인하기 위해, System.our.println() 을 이용 했는데,
아래처럼 읽을 수 없는 문자를 출력하는 것을 발견했다. 해결방법에 대해 적어 놓자.
해당 문구가 무엇인지는 스택오버플로우를 보고 확인했고,
방법은 간단하다.
toString()메소드를 쓰는 것!
나의 경우는 List 타입이었기 때문에, 먼저 toArray()를 이용해, 타입을 바꿔주고,
이중배열이었기에, deepToString()을 통해 해결 할 수 있었다.
System.out.println(Arrays.deepToString(retList.toArray()));
'java,springboot' 카테고리의 다른 글
vscode에서 gradle로 springboot 개발환경 설정 (0) | 2023.03.01 |
---|---|
parameter 1 of constructor in required a bean of type that could not be found (0) | 2023.02.27 |
@Value 와 @ConfigurationProperties 이용해 여러 프로퍼티 파일(yml) 설정 (0) | 2023.02.13 |
Maven vs Gradle? (0) | 2023.01.26 |
Java - Objects, Classes, Interfaces, Packages and Inheritance (0) | 2023.01.17 |