Dynamic model is an abstract programming method that needs to be implemented in other programming languages. XWorker's model library is mostly a wrapper of third-party Java class libraries.
When using dynamic model programming, XWorker's model library is not a must, because the dynamic model engine X-Meta is a lightweight model engine.
XWorker's model library is published on Maven, https://mvnrepository.com/search?q=xworker.
The code of XWorker is at https://gitee.com/xworker/xworker. There are many sub-projects in the project, and each sub-project represents a model library. The sub-projects are relatively independent and can be imported as needed.
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号