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