inflearn logo
Course

Course

Instructor

SeongBaek CHO's Posts

SeongBaek CHO SeongBaek CHO

@skidrow08020712

Reviews Written
11
Average Rating
4.6

Posts 7

Q&A

H2 버전 1.4 이상 사용하시는 분들

H2 최신버전 사용하시는분들(전 2.1 이네용) application.properties 에서 spring.datasource.url=jdbc:h2:mem:testdb;MODE=LEGACY 추가로 넣어주세용~

Likes
2
Comments
2
Viewcount
574

Q&A

AOP SpringConfig @Bean으로 등록시 에러

plugins { id 'org.springframework.boot' version '2.3.3.RELEASE' id 'io.spring.dependency-management' version '1.0.10.RELEASE' id 'java' } group = 'hello' version = '0.0.1-SNAPSHOT' sourceCompatibility = '11' repositories { mavenCentral() } dependencies { implementation 'org.springframework.boot:spring-boot-starter-thymeleaf' implementation 'org.springframework.boot:spring-boot-starter-web' implementation 'org.springframework.boot:spring-boot-starter-jdbc' implementation 'org.springframework.boot:spring-boot-starter-aop' implementation 'org.springframework.boot:spring-boot-starter-data-jpa' runtimeOnly 'com.h2database:h2' compileOnly("org.springframework.boot:spring-boot-devtools") testImplementation('org.springframework.boot:spring-boot-starter-test') { exclude group: 'org.junit.vintage', module: 'junit-vintage-engine' } } test { useJUnitPlatform() }

Likes
0
Comments
7
Viewcount
1005