This action will force synchronization from cloudopt/cloudopt-next, which will overwrite any changes that you have made since you forked the repository, and can not be recovered!!!
Synchronous operation will process in the background and will refresh the page when finishing processing. Please be patient.
Cloudopt Next是基于Kotlin、Vertx的一个面向下一代的极其轻量级的微服务框架,您可以处理Url的解析,数据的封装,Json的输出等等,从根本上减少开发时间、提升开发体验。Cloudopt Next吸收了Spring Boot、JFinal、Resty、Vertx等优秀项目的思想,不仅拥有非常好的开发体验还拥有着极低的学习曲线。
Cloudopt Next主要拥有以下特点:
您可以通过访问Cloudopt Next的官网来查看文档,也可以前往Example查看简单的示例。
让我们来看看一个简单的基于Cloudopt Next的路由:
[Kotlin]
@API("/")
class IndexController : Resource() {
@GET
fun get(){
var view = View()
view.view = "index"
renderHtml(view)
}
}
[Java]
@API(value = "/")
public class IndexController extends Resource {
@GET
public void get(){
View v = new View();
v.setView("index");
renderHtml(v);
}
}
在使用Cloudopt Next的过程中遇到了问题?您可以通过下面途径寻求帮助:
Cloudopt Next使用GitHub的问题跟踪系统,以记录bug和特性请求。如果您想提出一个问题,可以参考下面的建议:
Cloudopt Next是一个开源项目,遵循Apache 2.0许可协议。
Sign in for post a comment
Comment ( 0 )