Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

The starter calculator applications are the recommended way to get familiar with Fabric3. To build and deploy the calculator applications, do the following:

Build the

...

sample modules.

In the directory where you extracted the samples distribution, go to the /starter project folder and execute:

mvn clean install.

JARs Under the /starter project folder, JARs containing the application artifacts will be created in the /target output directories for each sample application module.

 

Info

Note internet access is required the first time the project is built so Maven can download the required project dependencies. Remote access can be turned off for subsequent builds by executing:

mvn -o clean install

...

java -jar <path to bin directory>/server.jar



 

Info

It may be necessary to run Fabric3 with larger heap settings than the JVM defaults. To do so, use the standard JVM command line parameters, e.g.:

java -Xmx1024M -XX:MaxPermSize=1024M -jar server.jar

Info

It may be necessary to configure some JVMs (e.g. OS X) to use IPv4 over IPv6 when starting the clustered runtimes. To do so, use the standard JVM command line parameters, e.g.:

java -Djava.net.preferIPv4Stack=true -jar server.jar

...