快速上手
创建项目
略
添加Jboot依赖
<dependency>
<groupId>io.jboot</groupId>
<artifactId>jboot</artifactId>
<version>1.6.3</version>
</dependency>
编写helloworld
@RequestMapping("/")
public class MyController extends JbootController{
public void index(){
renderText("hello jboot");
}
public static void main(String [] args){
Jboot.run(args);
}
}
运行并浏览器查看
运行main方法后,在浏览器输入网址:http://127.0.0.1:8088 查看,此时,浏览器显示:hello jboot