일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- 주식 양도세 신고방법
- katalon 사용법
- 한국투자증권 양도세 신고
- katalon
- js 자동완성
- 해외주식 양도세 신고
- bfs 미로탐색 java
- git 연동
- recursion example
- 피보나치함수
- 재귀 예제
- 피보나치 예제
- 톰캣 실시간 로그
- 국세청 해외주식 양도세 신고방식
- Katalon Recorder 사용법
- 재귀함수 예제
- 해외증권 양도세 한국투자증권
- katalon 비교
- 홈택스 해외주식 양도세
- 피보나치함수 예제
- 최대공약수 예제
- java.sql.SQLSyntaxErrorException
- javascript 자동완성
- katalon xpath
- 한국투자증권 해외주식 양도세
- oracle group by
- CSTS 폭포수 모델
- katalon 자동화
- tomcat log
- 테스트 자동화
- Today
- Total
목록전체 글 (387)
엄지월드
*************************** APPLICATION FAILED TO START *************************** Description: Failed ExcelService in ExcelService required a bean of type 'com.skeleton.excel.service.ExcelService' that could not be found. Action: Consider defining a bean of type 'com.skeleton.excel.service.ExcelService' in your configuration springboot에서 bean 생성이 com.skeleton.board 부분만 되고, com.skeleton.excel 부..
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 boardList = new ArrayList(); for (int i = 0; i < 3; i++) { Board board = new Board..
신택스 에러는 발생하지 않지만 컴파일 시에 error: cannot find symbol 에러가 발생하는 현상이 있었다. 그리고 @RestController에서 DB에 값이 담겨있지만 return 시에 {} 으로 비어서 반환되는 현상이 있었다. 이유를 찾아보니, 결국에는 lombok의 getter가 제대로 작동하지 않아서 발생하는 현상이었다. \java\com\skeleton\board\service\BoardService.java:30: error: cannot find symbol System.out.println("board = " + board.getTitle()); ^ symbol: method getTitle() location: variable board of type Board 그래서 bu..