@Controller(url="/hello")
public class HelloController {
@RequestMapping(method=RequestMethod.GET)
public String hello() {
return "hello";
}
}
public class Main {
public static void main(String[] args) {
WebMotionServer server = new WebMotionServer();
server.addController(HelloController.class);
server.start();
}
}