Skip to content

Latest commit

 

History

History
68 lines (48 loc) · 1.67 KB

README.md

File metadata and controls

68 lines (48 loc) · 1.67 KB

jashing Build Status Maven central

Java port Of Dashing

Maven Dependencies

Last stable version:

<dependency>
    <groupId>com.github.avarabyeu.jashing</groupId>
    <artifactId>jashing</artifactId>
    <version>X.X.X</version>
</dependency>

Getting Started

As Simple As It's Possible

Starting

Add Jashing into your classpath, create main class and add the following code:

public interface MainClass {

    public static void main(String[] args) {
        Jashing.builder().withPort(8282).build().bootstrap();
    }
}

That's it! Jashing has started on port 8282 and ready to show you demo dashboard

Deploy to container

You can easily deploy Jashing to Servlet container. Make sure Jashing in your and implement

com.github.avarabyeu.jashing.core.JashingFilter

Also make sure that your marked your filter with Servlet's WebFilter annotation

 @WebFilter(urlPatterns={"/*"})

Extensions

For now, Jashing supports the following list of extensions:

  • Jira
  • Jenkins
  • Git
  • SVN