Kotlin example project for LastaFlute as single project (with H2) This example is forked from Harbor.
LastaFlute:
https://github.com/lastaflute/lastaflute
Can boot it by example of LastaFlute:
- git clone https://github.com/lastaflute/lastaflute-example-paradeplaza.git
- prepare database by *ReplaceSchema at DBFlute client directory 'dbflute_maihamadb'
- compile it by Java8, on e.g. Eclipse or IntelliJ or ... as Maven project
- execute the *main() method of (org.docksidestage.boot) ParadeplazaBoot
- access to http://localhost:8090/paradeplaza and login by user 'Pixy' and password 'sea', and can see debug log at console.
*ReplaceSchema
// call manage.sh at lastaflute-example-paradeplaza/dbflute_maihamadb
// and select replace-schema in displayed menu
...:dbflute_maihamadb ...$ sh manage.sh
*main() function
fun main(args: Array<String>) {
// e.g. java -Dlasta.env=production -jar paradeplaza.war
JettyBoot(8090, "/paradeplaza").asDevelopment(isDevelopment()).bootAwait()
}
Apache License 2.0
comming soon...