SpringBoot2.x + mysql + Mybatis + swagger + lombok 설정

less than 1 minute read

mysql 생성

mysql dbeaver 연결

inttellij에서 mysql connection test

intellij에서 spring-boot-devtools 추가

https://haviyj.tistory.com/11

  1. build.gradle의 dependency
      dependencies {
     ... 
     compile('org.springframework.boot:spring-boot-devtools')
     ...
      }
    
  2. Action 찾기 : CMD+shift+A
  3. registry 검색
  4. compiler.automake.allow.when.app.running을 체크

Intellij cache reset

bootRun을 했을 때 ‘Could not resolve all artifacts for configuration ‘:classpath’ 에러가 나는 경우 intellij idea가 cache하는 dependency가 충돌하는 경우이다.

  • File Invalidate Caches / Restart를 눌러서 cache를 지운다.