사용자 도구

사이트 도구


wiki:springboot

차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

양쪽 이전 판 이전 판
다음 판
이전 판
wiki:springboot [2020/08/27 22:08]
hylee [표]
wiki:springboot [2023/01/26 10:24] (현재)
dhan
줄 1: 줄 1:
-| How it works  | 집계가 없으면 작업 만 실행됩니다.                                           | 입력을 읽은 다음 비즈니스 로직을 기반으로 처리 한 다음 커밋 간격에 도달 할 때까지 집계하고 \\ 마지막으로 데이터 출력 청크를 파일 또는 데이터베이스 테이블에 쓰는 작업이 포함됩니다. +====== SpringBoot ====== 
-| Usage         | 일반적으로 사용되지 않습니다.                                              | Step을 실행하는 가장 일반적인 방법.                                                                                    + 
-| Use Case      | 일반적으로 리소스를 삭제하거나 쿼리를 실행하는 것과 같은 \\ 단일 태스크를 호출하는 시나리오에 사용됩니다.  | 일반적으로 여러 집계 된 단계를 복사, 처리 및 데이터 전송과 같이 실행해야하는 경우에 사용됩니다                                                    + 
-spring-boot-web-application-in-eclipse-itself|How to run Spring Boot web application in Eclipse itself?]]+===== 설정 파일 ===== 
 +  * [[wiki:springboot:야믈|yaml, yml(야믈)]] 
 + 
 +  * [[https://bbul-jit.tistory.com/22|Springboot YAML 샘플]] 
 +  * [[https://tecoble.techcourse.co.kr/post/2020-09-29-spring-properties-binding/|Spring Boot에서 properties 값 주입받기]] 
 + 
 +===== Spring Boot Batch ===== 
 +[[wiki:springboot:SpringBootBatch|Spring Boot Batch]] 
 + 
 +===== Jpa(Java 퍼시스턴스 API) ===== 
 +사례연구 \\ 
 +1. [[https://velog.io/@jayjay28/JPA%EB%A5%BC-%EC%9D%B4%EC%9A%A9%ED%95%9C-%EB%8B%A8%EC%88%9C-%EA%B2%8C%EC%8B%9C%EB%AC%BC-%EC%B2%98%EB%A6%AC|JPA를 이용한 단순 게시물 테스트]] 
 + 
 +===== Annotation ===== 
 +[[wiki:springboot:Spring boot Annotation:Spring boot Annotation]] 
 + 
 +===== Batch ===== 
 +[[https://ahea.wordpress.com/2017/02/20/3-spring-batch-boot-%EC%97%B0%EB%8F%99-%EB%B0%8F-%EC%B2%98%EB%A6%AC-%EA%B3%BC%EC%A0%95/|4. Spring batch, boot 연동 및 처리 과정.]] 
 + 
 +==== Tasklet VS Chunk ==== 
 +^                Tasklet                                                    Chunk                                                                                                 ^ 
 +| When to use   | 작업을 단일 세부 작업으로 실행 한 다음 태스크 릿 처리를 사용                        | 실행할 작업이 복잡하고 읽기, 처리 및 쓰기와 관련된 작업을 실행한다고 가정하자. 청크 지향 처리를 사용합니다.                                         | 
 +| How it works  | 집계가 없으면 작업 만 실행됩니다.                                        | 입력을 읽은 다음 비즈니스 로직을 기반으로 처리 한 다음 커밋 간격에 도달 할 때까지 집계하고 마지막으로 데이터 출력 청크를 파일 또는 데이터베이스 테이블에 쓰는 작업이 포함됩니다. 
 +| Usage         | 일반적으로 사용되지 않습니다.                                           | Step을 실행하는 가장 일반적인 방법.                                                                                 
 +| Use Case      | 일반적으로 리소스를 삭제하거나 쿼리를 실행하는 것과 같은 단일 태스크를 호출하는 시나리오에 사용됩니다.  | 일반적으로 여러 집계 된 단계를 복사, 처리 및 데이터 전송과 같이 실행해야하는 경우에 사용됩니다                                                 
 + 
 +===== Scheduler (스케줄러) 사용하기 ===== 
 +  * [[https://data-make.tistory.com/699|[Spring Boot] Scheduler 사용해보기(일정 주기로 실행하는 스프링 스케쥴러)]] 
 +  * [[https://seolin.tistory.com/123|Spring Boot - 스케줄러 사용해보기 1. FixedDelay vs FixedRate]] 
 + 
 +===== Troubleshooting ===== 
 +1. Run As 실행시에 Spring Boot App 이 없을 경우 구동 방법 
 +  Steps: 1. go to Run->Run configuration -> Maven Build -> New configuration 
 +  Steps: 2. set base directory of you project ie.${workspace_loc:/${프로젝트명}} 
 +  Steps: 3. set goal spring-boot:run 
 +  Steps: 4. Run project from Run->${프로젝트명} 
 +   
 +[[https://stackoverflow.com/questions/23677808/how-to-run-spring-boot-web-application-in-eclipse-itself|How to run Spring Boot web application in Eclipse itself?]]
  
 2. pom.xml Error 표시: Plugin execution not covered by lifecycle configuration 2. pom.xml Error 표시: Plugin execution not covered by lifecycle configuration
줄 10: 줄 47:
 This is a cleaner way, as it doesn't modify your pom.xml. This is a cleaner way, as it doesn't modify your pom.xml.
 You will need to do a Maven > Update project to fix the same error in any other project as well. You will need to do a Maven > Update project to fix the same error in any other project as well.
 +
 +\\
 +3.failed to lazily initialize a collection of role or could not initialize proxy - no Session \\
 +repo를 호출하는 메소드에 @Transactional를 선언해주면 됩니다. \\
 +Tip:JPA의 영속성을 이해해야 됩니다.
 +[[https://www.inflearn.com/questions/33949|failed to lazily initialize a collection of role 오류 관련 문의]] \\
 +[[https://ict-nroo.tistory.com/130|JPA 영속성 이해]] \\
  
 [[https://stackoverflow.com/questions/6352208/how-to-solve-plugin-execution-not-covered-by-lifecycle-configuration-for-sprin|How to solve “Plugin execution not covered by lifecycle configuration” for Spring Data Maven Builds]] [[https://stackoverflow.com/questions/6352208/how-to-solve-plugin-execution-not-covered-by-lifecycle-configuration-for-sprin|How to solve “Plugin execution not covered by lifecycle configuration” for Spring Data Maven Builds]]
 +\\
 +
 +{{tag>도봉산핵주먹 SpringBoot Boot 주레피}}
/volume1/web/dokuwiki/data/attic/wiki/springboot.1598533725.txt.gz · 마지막으로 수정됨: 2022/03/10 19:52 (바깥 편집)