Skip to content

Latest commit

 

History

History
60 lines (48 loc) · 1.43 KB

README.md

File metadata and controls

60 lines (48 loc) · 1.43 KB

JettyBoot

simple boot library of Jetty

new JettyBoot(8090, "/harbor").asDevelopment().bootAwait();

No need to shutdown previous process when you restart it.
Automatically shutdown before next process boot

Quick Trial

Can boot it by example of LastaFlute:

  1. git clone https://github.com/lastaflute/lastaflute-example-harbor.git
  2. prepare database by *ReplaceSchema at DBFlute client directory 'dbflute_maihamadb'
  3. compile it by Java8, on e.g. Eclipse or IntelliJ or ... as Maven project
  4. execute the *main() method of (org.docksidestage.boot) HarborBoot
  5. access to http://localhost:8090/harbor
    and login by user 'Pixy' and password 'sea', and can see debug log at console.

*ReplaceSchema

// call manage.sh at lastaflute-example-harbor/dbflute_maihamadb
// and select replace-schema in displayed menu
...$ sh manage.sh

*main() method

public class HarborBoot {

    public static void main(String[] args) {
        new JettyBoot(8090, "/harbor").asDevelopment().bootAwait();
    }
}

Information

Maven Dependency

<dependency>
    <groupId>org.dbflute.jetty</groupId>
    <artifactId>jetty-boot</artifactId>
    <version>0.5.1</version>
</dependency>

if you use JSP

...use TomcatBoot with Jasper: https://github.com/dbflute-session/tomcat-boot

License

Apache License 2.0

Official site

comming soon...

Thanks, Friends

JettyBoot is used by:
comming soon...