|
2 years ago | |
---|---|---|
.. | ||
src | 5 years ago | |
.gitignore | 7 years ago | |
CHANGELOG.md | 6 years ago | |
README.md | 6 years ago | |
act-ebean-mysql-rythm.dockerfile | 4 years ago | |
act-ebean-mysql.dockerfile | 4 years ago | |
act-ebean-pgsql-rythm.dockerfile | 4 years ago | |
act-ebean-pgsql.dockerfile | 4 years ago | |
act-eclipselink-mysql-rythm.dockerfile | 4 years ago | |
act-eclipselink-mysql.dockerfile | 4 years ago | |
act-eclipselink-pgsql-rythm.dockerfile | 4 years ago | |
act-eclipselink-pgsql.dockerfile | 4 years ago | |
act-hibernate-mysql-rythm.dockerfile | 4 years ago | |
act-hibernate-mysql.dockerfile | 4 years ago | |
act-hibernate-pgsql-rythm.dockerfile | 4 years ago | |
act-hibernate-pgsql.dockerfile | 4 years ago | |
act-morphia-mongo-rythm.dockerfile | 4 years ago | |
act-morphia-mongo.dockerfile | 4 years ago | |
act.dockerfile | 4 years ago | |
benchmark_config.json | 2 years ago | |
config.toml | 4 years ago | |
pom.xml | 3 years ago |
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();
}
}