Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- bfs 미로탐색 java
- katalon 사용법
- git 연동
- 국세청 해외주식 양도세 신고방식
- js 자동완성
- recursion example
- java.sql.SQLSyntaxErrorException
- tomcat log
- 테스트 자동화
- 해외증권 양도세 한국투자증권
- 재귀 예제
- 한국투자증권 해외주식 양도세
- 최대공약수 예제
- 해외주식 양도세 신고
- 주식 양도세 신고방법
- 피보나치함수 예제
- katalon
- 재귀함수 예제
- 홈택스 해외주식 양도세
- oracle group by
- javascript 자동완성
- 한국투자증권 양도세 신고
- Katalon Recorder 사용법
- katalon 자동화
- 피보나치 예제
- 피보나치함수
- 톰캣 실시간 로그
- katalon xpath
- katalon 비교
- CSTS 폭포수 모델
Archives
- Today
- Total
엄지월드
arr stream return 값 만들기 본문
import java.util.List;
import java.util.Map;
import com.fasterxml.jackson.databind.ObjectMapper;
import java.util.stream.Collectors;
@Getter
@Setter
class Board {
private Long bno;
private String title;
private String content;
private String writer_id;
private String writer_name;
}
public Object getStream() {
List<Board> boardList = new ArrayList<>();
for (int i = 0; i < 3; i++) {
Board board = new Board();
board.setBno((long) (i+1));
board.setTitle("title_"+i);
board.setContent("content_"+i);
board.setWriter_id("id_"+i);
board.setWriter_name("name_"+i);
boardList.add(board);
}
return boardList.stream()
.map(userPoint -> objectMapper.convertValue(userPoint, Map.class))
.collect(Collectors.toList());
}
[{"bno":1,"title":"title_0","content":"content_0","writer_id":"id_0","writer_name":"name_0"},{"bno":2,"title":"title_1","content":"content_1","writer_id":"id_1","writer_name":"name_1"},{"bno":3,"title":"title_2","content":"content_2","writer_id":"id_2","writer_name":"name_2"}]
'java > Spring' 카테고리의 다른 글
java.sql.SQLSyntaxErrorException: ORA-00900: SQL 문이 부적합합니다 (0) | 2023.07.29 |
---|---|
SpringBoot Bean 주입 에러(@ComponentScan) (0) | 2023.07.26 |
lombok error: cannot find symbol, @RestController return {} (0) | 2023.07.16 |
Spring security AWT (0) | 2023.02.03 |
SpringBoot interceptor 설정 (0) | 2023.01.28 |
Comments