h2database를 적용하던중 Server.createServer 메서드를 추가할때 h2database의 Server클래스를 import 못할때가 있다. 이문제는 gradle에 의존성 설정을 runtimeOnly로 설정했기 때문이다. 이부분을 compile로 수정하고 다시 Server클래스를 사용하면 import가 되는걸 볼수 잇다.
runtimeOnly 'com.h2database:h2'
를 compile로 수정한다.
compile 'com.h2database:h2'
'오류노트' 카테고리의 다른 글
/home/travis/.travis/functions: line 351: ./gradlew: Permission denied (0) | 2021.04.25 |
---|---|
gradle 테스트시 오류발생하는경우 (0) | 2021.04.24 |
intellij gradle java file outside of source root (0) | 2021.04.15 |
The specified project directory '프로젝트 디렉토리' does not exist (2) | 2021.04.05 |
스프링 시큐리티 thymeleaf에서 sec:authentication이 안될때 (0) | 2021.04.03 |