快速上手

创建项目

添加Jboot依赖

  1. <dependency>
  2. <groupId>io.jboot</groupId>
  3. <artifactId>jboot</artifactId>
  4. <version>1.6.3</version>
  5. </dependency>

编写helloworld

  1. @RequestMapping("/")
  2. public class MyController extends JbootController{
  3. public void index(){
  4. renderText("hello jboot");
  5. }
  6. public static void main(String [] args){
  7. Jboot.run(args);
  8. }
  9. }

运行并浏览器查看

运行main方法后,在浏览器输入网址:http://127.0.0.1:8088 查看,此时,浏览器显示:hello jboot