본문 바로가기
728x90
반응형

IT/Spring Boot60

스프링 배치 Spring Quartz + job scheduler 이해하기 좋은글 Spring Quartz 를 이해하는데 도움이 되는 글.. https://gupuroom.tistory.com/2 [Spring Boot] Quartz - RAM Job Store 예제 Quartz JobStore에는 RAM JobStore : Scheduler Data를 메모리에 저장 JDBC JobStore : Scheduler Data를 DB에 저장 가 있다. 오늘은 Scheduler Data를 메모리에 저장하는 RAM JobStore를 Spring Boot로 구현해본다. 소스코드 : githu gupuroom.tistory.com 2023. 6. 5.
eclipse에서 라이브러리 추가후 maven 업데이트 꼭!!! pom.xml 파일을 업데이트한후, 프로젝트에서 우측버튼 누르면 됨. Java Resources -> Libraries -> Maven Dependencies 에서 목록이 올라왔는지 확인할 것. 2023. 5. 17.
String 객체로 응답받을 때 한글 깨짐을 방지하려면... 아래 한줄을 추가하면 됨 restTemplate.getMessageConverters().add(0, new StringHttpMessageConverter(StandardCharsets.UTF_8)); // 한글깨짐방지 RestTemplate restTemplate = new RestTemplate(); restTemplate.getMessageConverters().add(0, new StringHttpMessageConverter(StandardCharsets.UTF_8)); // 한글깨짐방지 ResponseEntity responseEntity = restTemplate.postForEntity(uri, requestEntity, String.class); String tossReceivedDat.. 2023. 5. 14.
Intellij - Spring Boot Configuration Annotation Processor not configured 요약하면... 1. pom.xml 을 쓰는경우..아래 내용을 추가하고, refresh org.springframework.boot spring-boot-configuration-processor true 2. gradle을 사용하는 경우...아래 내용을 추가하고, refresh dependencies { annotationProcessor "org.springframework.boot:spring-boot-configuration-processor" } 나의 경우엔...추가하고 나니. Re-run Spring Boot Configuration Annotation Processor to update generated metadata 라고 뜸. File - Invalidate Caches 진행해서 해결.... 2023. 4. 20.
728x90
반응형