Created
October 18, 2019 09:28
-
-
Save lynas/73dd2bc3f17b77ba1b6e02ca08f3ed75 to your computer and use it in GitHub Desktop.
Spring Command Line Runner JAVA Kotlin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Bean | |
public CommandLineRunner init() { | |
return args -> { | |
}; | |
} | |
@Bean | |
fun init() = CommandLineRunner { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment