[Batch] SpringBatch 설정 및 MySql 연결


[Batch] SpringBatch 설정 및 MySql 연결

@SpringBootApplication @EnableBatchProcessing public class SpringbatchApplication { public static void main(String[] args) { SpringApplication.run(SpringbatchApplication.class, args); } } @EnableBatchProcessing 어노테이션 추가 spring: datasource: url: driver-class-name: com.mysql.jdbc.Driver username: password: jpa: show-sql: true hibernate: ddl-auto: create properties: hibernate: format_sql: create batch: jdbc: initialize-schema: always logging: level: org: hibernate: sql : debug type : trace spring b...


#batch #springbatch #배치 #스프링배치

원문링크 : [Batch] SpringBatch 설정 및 MySql 연결