Models can be used to integrate various functions. The richer the model, the better XWorker will be. Currently, XWorker is still writing various model libraries. You can see that most of XWorker's model libraries are encapsulations of various Java class libraries.
For how to write and import model libraries, please refer to the Tutorial. In addition, the dynamic model itself does not define a model library, and XWorker's model library is also optional. You can build your own model library from scratch.
XWorker's model library is published on Maven, https://mvnrepository.com/search?q=xworker.
XWorker's code is in https://gitee.com/xworker/xworker. There are many sub-projects in the project, and each sub-project represents a model library. Subprojects are relatively independent and can be imported as needed.
After introducing the model library, you can generally find the corresponding documentation and examples in the model manager. Here we mainly introduce the model libraries of XWorker.
You can see that most of XWorker's model libraries are encapsulations of open source Java class libraries. You need to have rich experience in these model libraries to encapsulate good models. There are also a large number of other Java class libraries that are worth modeling. XWorker looks forward to your participation.
SNAPSHOT version can access the latest XWorker model library, and the sonatype repository is for using the SNAPSHOT version of the class library.
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <dependencies> <dependency> <groupId>org.xworker</groupId> <artifactId>xworker_swt_thingeditor</artifactId> <version>2.0.3-SNAPSHOT</version> <scope>test</scope> </dependency> <dependency> <groupId>org.xworker</groupId> <artifactId>xworker_webserver</artifactId> <version>2.0.3-SNAPSHOT</version> <scope>test</scope> </dependency> </dependencies> <repositories> <repository> <id>sonatype</id> <name>sonatype Repository</name> <url>https://oss.sonatype.org/content/groups/public/</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> <layout>default</layout> </repository> </repositories> </project>
Copyright © 2007-2019 XWorker.org 版权所有 沪ICP备08000575号