@SpringBootApplication
@Slf4j
public class Starter {
public static void main(String[] args) {
SpringApplication.run(Starter.class, args);
}
}
Applicaiton.yml
spring:
profiles: default
allowedIPPattern: 127.0.0.1|0:0:0:0:0:0:0:1|::1
jpa.hibernate.ddl-auto: validate
datasource:
driverClassName: org.h2.Driver
url: jdbc:h2:mem:test;MODE=MySQL;DB_CLOSE_ON_EXIT=FALSE;AUTO_RECONNECT=TRUE;INIT=create schema if not exists "public"; SET SCHEMA public;
build.gradle:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
ext.ver = [
'springboot' : '1.5.3.RELEASE',
'slf4j': '1.7.12'
]
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${ver.springboot}")
classpath "se.transmode.gradle:gradle-docker:1.2"
}
}
group 'com.mycompany'
version '1.0-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'org.springframework.boot'
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
compile("org.springframework.boot:spring-boot-starter-web:${ver.springboot}")
compile ('org.projectlombok:lombok:1.16.6')
compile("org.springframework.boot:spring-boot-starter-actuator")
testCompile("org.springframework.boot:spring-boot-starter-test")
runtime("mysql:mysql-coector-java:5.1.38")
runtime("org.flywaydb:flyway-core")
compile("com.h2database:h2")
compile("org.springframework.boot:spring-boot-starter-data-jpa")
}
Any idea what am I missing?
