문제 : VoucherRepository Bean을 못찾는 현상
에러메시지
expected at least 1 bean which qualifies as autowire candidate
No qualifying bean of type 'org.springframework.jdbc.core.JdbcTemplate'
해결
- 어플리케이션 자체를 Springboot Application으로 바꿈 -> setActiveProfile 안해도 됨(yaml 직접 읽음) 확실하진 않음
- 대신 springboot profile에 개발 mode를 구분해줌
- insert, delete(update)가 안되는 상황
원인 파악
- mysql safe_update =0 안됨
- readonly 도 아님
- yaml에 autocommit = false 로 됐던게 원인!!
+추가
- pom.xml에 spring-boot 관련해서 scope가 test인것도 있어서 지웠음