
test.Main Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of a8i Show documentation
Show all versions of a8i Show documentation
EOS is a Full Fledged Java Application Server with built in Dependency Injection,
Request Mapping and Data Management support. EOS boasts its own custom view tag library and
the ability to write your own custom view tags.
The newest version!
package test;
import eos.Eos;
public class Main {
public static void main(String[] args) throws Exception {
Eos eos = new Eos.Builder().withPort(3000).spawn(2000).make();
eos.run();
}
}