ActFramework Expressive, fast and testable web framework designed by Java developer for Java developer
This is the ActFramework portion of a benchmarking test suite comparing a variety of web development platforms.
public class AppEntry {
@GetAction
public String sayHelloTo(@DefaultValue("World") String who) {
return "Hello " + who + "!";
}
public static void main(String[] args) throws Exception {
Act.start();
}
}