|
před 1 rokem | |
---|---|---|
.. | ||
src | před 2 roky | |
.gitignore | před 7 roky | |
CHANGELOG.md | před 7 roky | |
README.md | před 6 roky | |
act-ebean-mysql-rythm.dockerfile | před 4 roky | |
act-ebean-mysql.dockerfile | před 4 roky | |
act-ebean-pgsql-rythm.dockerfile | před 4 roky | |
act-ebean-pgsql.dockerfile | před 4 roky | |
act-eclipselink-mysql-rythm.dockerfile | před 4 roky | |
act-eclipselink-mysql.dockerfile | před 4 roky | |
act-eclipselink-pgsql-rythm.dockerfile | před 4 roky | |
act-eclipselink-pgsql.dockerfile | před 4 roky | |
act-hibernate-mysql-rythm.dockerfile | před 4 roky | |
act-hibernate-mysql.dockerfile | před 4 roky | |
act-hibernate-pgsql-rythm.dockerfile | před 4 roky | |
act-hibernate-pgsql.dockerfile | před 4 roky | |
act-morphia-mongo-rythm.dockerfile | před 4 roky | |
act-morphia-mongo.dockerfile | před 4 roky | |
act.dockerfile | před 4 roky | |
benchmark_config.json | před 2 roky | |
config.toml | před 4 roky | |
pom.xml | před 1 rokem |
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();
}
}