Getting Started
Starting from a standard Spring Boot Application, add the following dependency to your project:
dependencies {
implementation("io.github.wakingrufus:spring-funk-base:0.3.0")
}
Create a src/main/resources/META-INF/spring.factories
file within your Spring Boot Application Project. Add an entry for your main Application class:
org.springframework.context.ApplicationContextInitializer=\
com.your.org.YourApplication
In your application class, implement the SpringFunkApplication
interface and the dsl method. Within this method, you will have access to the DSL API.
Autoconfiguration Example
@SpringBootConfiguration
@EnableAutoConfiguration
open class TestKotlinApplication : SpringFunkApplication {
override fun dsl(): SpringDslContainer.() -> Unit = {
}
}
Pure DSL Example
In order to avoid Autoconfiguration, omit the Spring Boot annotations from your application class.
class TestKotlinApplication : SpringFunkApplication {
override fun dsl(): SpringDslContainer.() -> Unit = {
}
}