The model library is generally a package of various APIs, and these APIs can be used quickly through models. The model is generally released with Java, and the model library is generally a Jar file.
Use of the dynamic model engine must use or basically use related class libraries.
<dependency> <groupId>org.x-meta</groupId> <artifactId>org.xmeta.engine</artifactId> <version>1.4.4</version> </dependency>
xmeta is the engine of dynamic models, and is usually introduced automatically when other model libraries are introduced.
<dependency> <groupId>org.xworker</groupId> <artifactId>xworker_lang</artifactId> <version>1.4.3</version> </dependency>
xworker_lang is the basic class library of XWorker's model library, which is used to define new models and stipulate model editing rules. xworker_lang is an optional model library, but it will be referenced most of the time.
Models are generally encapsulation of various APIs. XWorker's model library is generally published on Maven. You can check which model libraries are available on the Maven warehouse, see https://mvnrepository.com/search?q=xworker.
If you want to use the SNAPSHOT version of the dependency, you can add the following settings in maven.
<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>
Copyright © 2007-2019 XWorker.org 版权所有 沪ICP备08000575号