public class HomeController {
@Route("/")
public static String index() {
return "Hello, WebMotion Server!";
}
}
server.port=8080
public class Application {
public static void main(String[] args) {
WebMotionServer server = new WebMotionServer();
server.start();
}
}