counting: https://stackabuse.com/guide-to-java-8-collectors-counting/ Guide to Java 8 Collectors: counting() In this guide, learn how to count the number of elements in a collection or stream in Java, as well as how to use the Collectors.counting() as a downstream function of other collectors, with examples. stackabuse.com mapping: https://www.javabrahman.com/java-8/java-8-how-to-use-collectors-..
@ReqeustBody나 Jackson을 이용해 Object를 맵핑할 때 어노테이션을 쓰는 경우도 있고, getter/setter로 맵핑되게 구성하는 경우도 있다. 맵핑을 가능하게 하는 케이스들을 알아보자 1. 어노테이션 (getter/setter 없이) @JsonProperty, @JsonAutoDetect 사용 2. ObjectMapper 설정 ObjectMapper objectMapper = new ObjectMapper(); objectMapper.setVisibility(PropertyAccessor.FIELD, JsonAutoDetect.Visibility.ANY); 3. getter/setter 설정 하지만 이 케이스들을 중복해서 사용할 경우 데이터가 여러개 들어갈 수 있으니 조심해야한다. ..
- Total
- Today
- Yesterday