Popularity
0.6
Stable
Activity
4.1
-
0
3
0

Code Quality Rank: L5
Programming language: Java
Tags: Web Frameworks    
Latest version: v0.11.1

Analogweb alternatives and similar packages

Based on the "Web Frameworks" category.
Alternatively, view Analogweb alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of Analogweb or a related project?

Add another 'Web Frameworks' Package

README

Analogweb Framework Netty Plugin

Analogweb application running on Netty 4! Add this plugin to your application classpath them org.analogweb.core.Servers#run enable to boot Netty server.

Build Status

Quick Start

package org.analogweb.hello;

import org.analogweb.annotation.Route;
import org.analogweb.core.Servers;

@Route("/")
public class Hello {

  public static void main(String... args) {
      Servers.run();
  }

  @Route
  public String hello() {
    // Request GET http://localhost:8080/hello and you should see 'Hello World'
    return "Hello World";
  }

}