内容简介:Jboot 是一个基于 JFinal、JFinal-Undertow、Dubbo 等开发的微服务框架,帮助开发者降低微服务开发门槛。同时完美支持在 idea、eclipse 下多 maven 模块,对java代码、html、css、js 等资源文件进行热加载,爽爽的...
Jboot 是一个基于 JFinal、JFinal-Undertow、Dubbo 等开发的微服务框架,帮助开发者降低微服务开发门槛。同时完美支持在 idea、eclipse 下多 maven 模块,对 java 代码、html、css、js 等资源文件进行热加载,爽爽的开发。
Jboot v2.2.1 更新内容如下:
- 优化:findCountByColumns 返回的类型由 Long 改为 long,客户端调用的时候不需要再判断是否为null。
- 优化:JbootDbManager 重命名为 ArpManager
- 新增:JbootDb 工具类,用于增强 JFinal 的Db 工具类,增加 JbootDb.findByColumns 及其 JbootDb.deleteByColumns 系列方法
maven 依赖:
<dependency>
<groupId>io.jboot</groupId>
<artifactId>jboot</artifactId>
<version>2.2.1</version>
</dependency>
Hello World:
@RequestMapping("/")
public class HelloworldController extends JbootController {
public void index(){
renderText("hello world");
}
public static void main(String[] args){
JbootApplication.run(args);
}
}
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:- Jboot 2.2.0 发布,分布式开发更加简单快速
- Jboot 2.2.2 发布,分布式开发更加简单快速
- 如何简单快速搭建 Android 大仓
- [译]使用Redis Bitamp简单快速实时计算指标
- 如何简单快速的将纸质文件扫描成可编辑格式?
- 谷歌开源Neural Tangents:简单快速训练无限宽度神经网络
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Ajax Design Patterns
Michael Mahemoff / O'Reilly Media / 2006-06-29 / USD 44.99
Ajax, or Asynchronous JavaScript and XML, exploded onto the scene in the spring of 2005 and remains the hottest story among web developers. With its rich combination of technologies, Ajax provides a s......一起来看看 《Ajax Design Patterns》 这本书的介绍吧!