Giter Site home page Giter Site logo

linecode / cloudopt-next Goto Github PK

View Code? Open in Web Editor NEW

This project forked from cloudoptlab/cloudopt-next

0.0 2.0 0.0 171 KB

A next-generation Java web lightweight framework based on vertx and kotlin.

Home Page: https://next.cloudopt.net

License: Apache License 2.0

Kotlin 93.64% Java 6.06% CSS 0.01% FreeMarker 0.06% HTML 0.22%

cloudopt-next's Introduction

Cloudopt Next

Awesome Kotlin Badge Apache Licenses Badge Twitter Badge

Cloudopt Next is a very lightweight micro-service framework based on kotlin and vertx for the Next generation. You can handle url parsing, data encapsulation, and Json output. Radically reducing development time and improving development experience. Cloudopt Next absorbed the ideas of Spring BootJFinalRestyVertx and other excellent projects, and not only had a very good development experience, but also had a very low learning curve.

Cloudopt Next has the following features:

  • minimalist design, almost 0 configuration, uses yml like Spring Boot.
  • get out of the traditional MVC and do professional things professionally.
  • support plugin system with strong expansibility.
  • independent of Tomcat and Jetty.
  • support FreeMarker, Beetl...
  • support both Kotlin and Java development.
  • support Vertx.
  • a series of easy-to-use toolsets, such as cloudopt-next-logging, cloudopt-next-kafka, cloudopt-next-encrypt, cloudopt-next-waf, etc.

Installation and Getting Started

You can view the document by visiting the official website of Cloudopt Next, or you can go to example to see a simple example.

Let's take a look at a simple route based on 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);
    }
}

Getting help

Having trouble with Cloudopt Next? We’d like to help!

  • Follow our twitter to get the latest information.
  • Check the reference documentation carefully for specific code cases or common problems.
  • If you have a problem after the upgrade, check the upgrade instructions in the Wiki.
  • Send mail to [email protected].
  • Send issue to your question on GitHub, we will answer it as soon as possible.
  • If you are in China, you can also join the QQ group: 557692142.

Reporting Issues

Cloudopt Next uses GitHub’s integrated issue tracking system to record bugs and feature requests. If you want to raise an issue, please follow the recommendations below:

  • Before you log a bug, please search the issue tracker to see if someone has already reported the problem.
  • Please provide as much information as possible with the issue report, we like to know the version of Cloudopt Next that you are using, as well as your Operating System and JVM version.

License

Cloudopt Next is Open Source software released under the Apache 2.0 license.

Documents

中文版介绍

cloudopt-next's People

Contributors

t-baby avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.