The AtlasMap is a data mapping solution with interactive web based user interface, that simplifies configuring integrations between Java, XML, and JSON data sources. You can design your data mapping on the AtlasMap Data Mapper UI canvas, and then run that data mapping via runtime engine. AtlasMap Data Mapper UI is primarily designed to work within the Syndesis UI.
- Download AtlasMap standalone jar
$ wget http://central.maven.org/maven2/io/atlasmap/atlasmap-standalone/${VERSION}/atlasmap-standalone-${VERSION}.jar
- Run
$ java -jar atlasmap-standalone-${VERSION}.jar
Then AtlasMap Data Mapper UI is available at http://127.0.0.1:8585/ by default.
- Checkout AtlasMap repo from GitHub
$ git clone https://github.com/atlasmap/atlasmap ${ATLASMAP}
- Build
$ cd ${ATLASMAP}
$ ./mvnw clean install
or you can skip tests to get the build little bit faster
$ ./mvnw clean install -DskipTests
- Run AtlasMap standalone jar from springboot maven plugin
$ cd ${ATLASMAP}/standalone
$ ../mvnw -Pitests spring-boot:run
AtlasMap Data Mapper UI is available at http://127.0.0.1:8585/ by default.
While standalone AtlasMap design time services are running by following above, you can also run an another AtlasMap Data Mapper UI instance at different port by yarn start
. This enables live update for UI code so you can see the outcome of your UI code change without build&restart manually.
-
Install Data Mapper UI's dependencies
$ cd ${ATLASMAP}/ui
$ yarn install
- Start Data Mapper UI
$ yarn start
The yarn start command will attempt to automatically open your browser window, but if it doesn't, open it directly with this URL: http://localhost:3000.