debbie-boot

a java microservice project

License

License

GroupId

GroupId

com.truthbean.debbie
ArtifactId

ArtifactId

debbie-boot
Last Version

Last Version

0.0.1-RELEASE
Release Date

Release Date

Type

Type

jar
Description

Description

debbie-boot
a java microservice project
Source Code Management

Source Code Management

https://github.com/TruthBean/debbie

Download debbie-boot

How to add to project

<!-- https://jarcasting.com/artifacts/com.truthbean.debbie/debbie-boot/ -->
<dependency>
    <groupId>com.truthbean.debbie</groupId>
    <artifactId>debbie-boot</artifactId>
    <version>0.0.1-RELEASE</version>
</dependency>
// https://jarcasting.com/artifacts/com.truthbean.debbie/debbie-boot/
implementation 'com.truthbean.debbie:debbie-boot:0.0.1-RELEASE'
// https://jarcasting.com/artifacts/com.truthbean.debbie/debbie-boot/
implementation ("com.truthbean.debbie:debbie-boot:0.0.1-RELEASE")
'com.truthbean.debbie:debbie-boot:jar:0.0.1-RELEASE'
<dependency org="com.truthbean.debbie" name="debbie-boot" rev="0.0.1-RELEASE">
  <artifact name="debbie-boot" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.truthbean.debbie', module='debbie-boot', version='0.0.1-RELEASE')
)
libraryDependencies += "com.truthbean.debbie" % "debbie-boot" % "0.0.1-RELEASE"
[com.truthbean.debbie/debbie-boot "0.0.1-RELEASE"]

Dependencies

compile (1)

Group / Artifact Type Version
com.truthbean.debbie : debbie-mvc jar 0.0.1-RELEASE

Project Modules

There are no modules declared in this project.

debbie

This project is target for a microservice project, including IOC, MVC, JDBC, httpclient, test, server and other modules. It also supports running jdk, graalvm, etc., and supports third-party frameworks, such as spring(https://github. com/truthbean/debbie-spring), mybatis (https://github.com/truthbean/debbie-mybatis), etc., which will be gradually added to make it grow into a complete microservice project.

该项目是从零开始的微服务项目,包含IOC、MVC、JDBC、httpclient、test、server等模块组成,同时支持再jdk、graalvm等运行, 支持第三方框架,如spring(https://github.com/truthbean/debbie-spring), mybatis(https://github.com/truthbean/debbie-mybatis) 等, 后续陆续增加,使其成长为一个完整的微服务项目

说明

该项目使用Java11开发,为什么不适用kotlin,因为jetbrain开发的ktor框架已经很好用了啊([滑稽]);
项目包管理采用gradle dsl。
项目力求最简化,简单来说,就是能用自己写的尽量自己写;其次要模块界限分明,包引用简单化;
使用spi而不是通过optional来引用其他包或项目,不会因为包引入给开发者带来困扰。

construction

package引用规范

尽量使用compileOnly,不要给开发者带来额外的包引用负担

properties规范

properties名称一律小写,第三方框架的properties的key由驼峰换成“-”分割

@PropertyInject 标识的 field,通过setter方法来 注入的

maven

0.0.1-RELEASE package

0.0.2-RELEASE package

<dependency>
    <groupId>com.truthbean.debbie</groupId>
    <artifactId>debbie-xxx</artifactId>
    <version>x.x.x-RELEASE</version>
</dependency>

目标


1.先实现一个mvc内核

2.用servlet实现功能

3.集成一个tomcat

4.用undertow的httphandler适配接口,不能包含任何servlet接口

5.用netty适配接口,不能包含servlet和undertow的接口

6.写个example,能更改一个jar依赖就能顺利从tomcat迁移到undertow或netty

7.实现metric功能

8.实现简单的jdbc功能

9. 基于mvc内核实现httpclient功能

10.使用javassist或者ASM增强bean proxy功能

10.完善aio、rmi模块

11.增加cache功能

12.踩完java11 module的坑..

13.适配graalvm

14.待续...

Versions

Version
0.0.1-RELEASE