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