Java Colorful open source multi-module framework-novice installation tutorial

About the Author:

Hello, I have been wanting to write articles since I joined CSDN for two years, but I have never had the time. I just finished writing the Python module - blocking buffer byte queue and other modules
in the past two days.
First of all, download the Colorful framework from our district official website - click me to download Colorful - I have translated the introduction:
字如其意,他是丰富多彩的.
关于他的简介:是一款多模块,可扩展,高性能,高平行,跨平台,开放源代码的框架:发布作者是Atomic君,
提供了- 低代码-易操作的多种模块-支持像Jackson框架一样的模块和扩展,和映射性的JTO集合,TaskList集合模块,
以及PS图像操作-和SequenceCachedPool基础线程池-解决了Executors框架在使用newCachedThreadPool()
的设计弊端辅如辅助工人无法生成,以及像JS一样的Promise框架一样种子瀑布模块-异步编程,和网络模块,
JavaEE服务器共开发了解这种服务器开发的本质,MD5加密,哈夫曼结构,IOS_SHOGUN工具箱...的插件型架构.
这款框架是我在去年暑假写的.
为了避免麻烦-打包时只需要一个jar即可无需其他第三方框架.前后我修改了共39次

Installation tutorial:

It contains the javadoc documentation. Here I list some tutorials:
Here we only need the API_Content folder and IOS_SHOGUN_Toolkit-1.0-FRAME.jar

JavaDoc introduction:

包含了IOS_SHOGUN_Toolkit新手工具包中的所需教程

Let's find index.html in API_Content. Anyone who has studied the front end knows that when we use the ESC cloud server: the default port connection entry is index.html. On some web pages, we can also see the SQL:

After we enter, open IOS_SHOGUN_Component and find: IOS_SHOGUN_Toolkit class,
you can also open some other views:

This is the main class of the toolkit, and it is also what we may often use when using it. It is worth mentioning that all events in the colorful1.0 framework are highly parallel. How is this kind of thinking route realized? We will follow Will speak:

Import IDEA

Open: File -> Project Structure:
The import operation is very simple, don't worry if you use it for a long time, you will also:
find the module from the menu - find the JAR or directory
Find the path of the Colorful1.0 framework jar:
Click OK, select and apply
Now we have finished importing, let's type a piece of code to see - example: LAX data analysis:
JTO.LAX("[A,B,C,1,2,3,A=You can understand it as a tuple type,'',' ']").SeeTask();//查看
//类型-字串-数字-映射-空格

Done!, if you think this is good, you don’t need to look at the subsequent Maven framework import

Maven framework imports Colorful1.0 framework

我们在主项目目录下创建lib软件包(说白了就是文件夹)
把我们的lib拖入进入
然后打开pom.xml做一些maven的项目配置,这很简单:
可以自行看我的型号版本
我为你们准备好了,copy即可
    <dependencies>
        <dependency>
            <groupId>IOS_SHOGUN</groupId>
            <artifactId>IOS_SHOGUN_Toolkit</artifactId>
            <version>1.0-FRAME</version>
            <scope>system</scope>
            <systemPath>${project.basedir}/lib/IOS_SHOGUN_Toolkit-1.0-FRAME.jar</systemPath>
        </dependency>
    </dependencies>
一起和Atomic君学习!

更新至1.1

在2023/3/1已更新至1.1,对此框架进行了升级和检查,以及在1.0上进行了新的扩展。
    <dependencies>
        <dependency>
            <groupId>IOS_SHOGUN</groupId>
            <artifactId>IOS_SHOGUN_Toolkit</artifactId>
            <version>1.1-FRAME</version>
            <scope>system</scope>
            <systemPath>${project.basedir}/lib/IOS_SHOGUN_Toolkit-1.1-FRAME.jar</systemPath>
        </dependency>
    </dependencies>

Guess you like

Origin blog.csdn.net/m0_61267721/article/details/129232267