- 基于fastboot的im聊天系统 -> fastboot-im
https://gitee.com/stylesmile/fastboot-im.git
https://github.com/stylesmile/fastboot-im.git
极速的java web 框架,比起常用框架,启动速度提高20倍,五分之一内存占用,启动不到0.1秒,20-30m最小内存占用
java领域最佳云原生解决方案。
-
需要的是一个平台,在这个平台上面,不断沉淀自己,毕竟每天都在学习东西,接触新的技术点
-
有方向感,不迷茫,不浪费时间,有可行的学习计划
-
在工作和学习过得中不断积累和提高学习效率
-
可以总结和反思,过程可以不断的打磨出一个平台,一个产品或者一个精品
-
希望自己写这个项目的过程技术越来越好
为了可以更好的开源和支撑,以下为提供的技术支持,协助企业快速云原生化平台化和中台化
- 企业DevOps技术平台搭建和落地指导
- 企业自动化和持续集成体系支持
- 企业云原生化中台化和平台化架构规划和设计指导
- 企业过程技术答疑和技术指导
- 如需技术支持,或者加群交流:
整体架构支撑是为了整体平台的流程,从管理、开发、测试、运维、生产几条线,
实现整体平台的落地和管理
应用开发手册:访问
快速开始 example
<parent>
<groupId>io.github.stylesmile</groupId>
<artifactId>fastboot-parent</artifactId>
<version>2.10.2</version>
</parent>
<dependency>
<groupId>io.github.stylesmile</groupId>
<artifactId>fastboot-web</artifactId>
</dependency>
如果你管理依赖用的gradle参考gradle配置
import io.github.stylesmile.annotation.Controller;
import io.github.stylesmile.annotation.RequestMapping;
import io.github.stylesmile.app.App;
@Controller
public class Application {
public static void main(String[] args) {
App.start(Application.class, args);
}
@RequestMapping("/")
public String hello() {
return "hello fastboot";
}
}
<repository>
<id>maven1</id>
<url>https://repo1.maven.org/maven2/</url>
</repository>
<repository>
<id>maven1</id>
<url>https://s01.oss.sonatype.org/content/repositories/releases/</url>
</repository>