All Projects → 1619khze → aquiver

1619khze / aquiver

Licence: MIT license
🚀 The aquifer is a java web framework based on Java8 and netty

Programming Languages

java
68154 projects - #9 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to aquiver

Slim Born
Slim Framework 3 and 4 skeleton application has authentication MVC construction.
Stars: ✭ 179 (+371.05%)
Mutual labels:  mvc, mvc-framework
UMVC
UMVC - Model-View-Controller Generator built for Unity
Stars: ✭ 36 (-5.26%)
Mutual labels:  mvc, mvc-framework
velox
The minimal PHP micro-framework.
Stars: ✭ 55 (+44.74%)
Mutual labels:  mvc, mvc-framework
itstack-naive-chat-server
💞 《服务端》| 服务端同样使用Netty4.x作为socket的通信框架,同时在服务端使用Layui作为管理后台的页面,并且我们的服务端采用偏向于DDD领域驱动设计的方式与Netty集合,以此来达到我们的框架结构整洁干净易于扩展。同时我们的通信协议也是在服务端进行定义的,并对外提供可引入的Jar包,这样来保证客户端与服务端共同协议下进行通信。
Stars: ✭ 21 (-44.74%)
Mutual labels:  netty, netty4
puremvc-swift-multicore-framework
PureMVC MultiCore Framework for Swift
Stars: ✭ 17 (-55.26%)
Mutual labels:  mvc, mvc-framework
Cakephp
CakePHP: The Rapid Development Framework for PHP - Official Repository
Stars: ✭ 8,453 (+22144.74%)
Mutual labels:  mvc, mvc-framework
djburger
Framework for safe and maintainable web-projects.
Stars: ✭ 75 (+97.37%)
Mutual labels:  mvc, mvc-framework
Koseven
Koseven a Kohana fork compatible with PHP7
Stars: ✭ 332 (+773.68%)
Mutual labels:  mvc, mvc-framework
bootpush
📶即时消息推送服务(即时通讯),基于Netty- Instant Messaging push service based on Netty
Stars: ✭ 146 (+284.21%)
Mutual labels:  netty, netty4
simple-mvc
Simple push & pull MVC framework to realize a test-driven experience.
Stars: ✭ 24 (-36.84%)
Mutual labels:  mvc, mvc-framework
Famework
Famework is a simple to use PHP Framwork to easily create splendid but lightweight web applications.
Stars: ✭ 8 (-78.95%)
Mutual labels:  mvc, mvc-framework
auction-website
🏷️ An e-commerce marketplace template. An online auction and shopping website for buying and selling a wide variety of goods and services worldwide.
Stars: ✭ 44 (+15.79%)
Mutual labels:  mvc, mvc-framework
Actframework
An easy to use Java MVC server stack
Stars: ✭ 690 (+1715.79%)
Mutual labels:  mvc, mvc-framework
Miniphp
A small, simple PHP MVC framework skeleton that encapsulates a lot of features surrounded with powerful security layers.
Stars: ✭ 144 (+278.95%)
Mutual labels:  mvc, mvc-framework
Saturn
Opinionated, web development framework for F# which implements the server-side, functional MVC pattern
Stars: ✭ 540 (+1321.05%)
Mutual labels:  mvc, mvc-framework
libgitlmvc
C++ MVC framework for Qt
Stars: ✭ 73 (+92.11%)
Mutual labels:  mvc, mvc-framework
blockbase
Lightweight MVC Framework for Node.js
Stars: ✭ 32 (-15.79%)
Mutual labels:  mvc, mvc-framework
miniPHP
A small, simple PHP MVC framework skeleton that encapsulates a lot of features surrounded with powerful security layers.
Stars: ✭ 147 (+286.84%)
Mutual labels:  mvc, mvc-framework
SmartMvc
深入解析SpringMVC核心原理:从手写简易版MVC框架开始(SmartMvc)
Stars: ✭ 66 (+73.68%)
Mutual labels:  mvc, mvc-framework
puremvc-delphi-standard-framework
A Delphi implementation of PureMVC (http://puremvc.org/)
Stars: ✭ 44 (+15.79%)
Mutual labels:  mvc, mvc-framework

Aquiver

Aquiver是一个基于Java8和Netty的MVC框架

Build Status Build Status Downloads

快速开始

通过 MavenGradle 创建项目,因为还未上传到Maven中心仓库,所以目前暂时通过clone代码进行安装

git clone https://github.com/AquiverV/apex.git

cd apex

mvn clean install

git clone https://github.com/AquiverV/aquiver.git

cd aquiver

mvn clean install

Maven 中使用:

<dependency>
    <groupId>org.aquiver</groupId>
    <artifactId>aquiver</artifactId>
    <version>1.0.3.BETA</version>
</dependency>

尝试

public class Main {
 public static void main(String[] args) {
   Aquiver.of().bind(9999).get("/", ctx -> {
     Object username = ctx.param("username");
     System.out.println(paramName);
   }).start(Main.class, args);
 }
}

在浏览器打开:http://localhost:9999/?username=1619kHz 查看效果

License

MIT

Copyright (c) 2020-present, Yi (Ever) Wang

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].