|
пре 2 година | |
---|---|---|
.. | ||
src | пре 2 година | |
.gitignore | пре 7 година | |
CHANGELOG.md | пре 6 година | |
README.md | пре 6 година | |
act-ebean-mysql-rythm.dockerfile | пре 4 година | |
act-ebean-mysql.dockerfile | пре 4 година | |
act-ebean-pgsql-rythm.dockerfile | пре 4 година | |
act-ebean-pgsql.dockerfile | пре 4 година | |
act-eclipselink-mysql-rythm.dockerfile | пре 4 година | |
act-eclipselink-mysql.dockerfile | пре 4 година | |
act-eclipselink-pgsql-rythm.dockerfile | пре 4 година | |
act-eclipselink-pgsql.dockerfile | пре 4 година | |
act-hibernate-mysql-rythm.dockerfile | пре 4 година | |
act-hibernate-mysql.dockerfile | пре 4 година | |
act-hibernate-pgsql-rythm.dockerfile | пре 4 година | |
act-hibernate-pgsql.dockerfile | пре 4 година | |
act-morphia-mongo-rythm.dockerfile | пре 4 година | |
act-morphia-mongo.dockerfile | пре 4 година | |
act.dockerfile | пре 4 година | |
benchmark_config.json | пре 2 година | |
config.toml | пре 4 година | |
pom.xml | пре 3 година |
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();
}
}