example project for LastaFlute as multi-project (with MySQL)
LastaFlute:
https://github.com/lastaflute/lastaflute
Can boot it by example of LastaFlute:
- git clone https://github.com/lastaflute/lastaflute-example-maihama.git
- prepare MySQL on 3306 port as empty root password or using *system-password.txt
and execute 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) DocksideBoot
- access to http://localhost:8091/dockside
and login by user 'Pixy' and password 'sea', and can see debug log at console.
*system-password.txt
maihama-common
|-dbflute_maihamadb
| |-dfprop
| | |-...
| | |-system-password.txt // make file and write root password if not empty password
| |-...
|
|-mydbflute
|-...
*ReplaceSchema
// call manage.sh at maihama-dockside/dbflute_maihamadb
// and select replace-schema in displayed menu
...:dbflute_maihamadb ...$ sh manage.sh
*main() method
public class DocksideBoot {
public static void main(String[] args) {
new JettyBoot(8091, "/dockside").asDevelopment().bootAwait();
}
}
Apache License 2.0
comming soon...