Setup
Check System Requirements
Make sure your computer meets the following requirements:
-
64-bit operating system: Windows, Linux or macOS.
-
Memory – at least 8 GB (16 GB is recommended).
-
Hard drive free space – at least 20 GB.
Install Jmix Studio
Jmix Studio is implemented as a plugin for IntelliJ IDEA. The minimal supported IntelliJ IDEA version is 2023.3.
If you don’t have IntelliJ IDEA installed yet, download Community edition from the JetBrains website and install it.
After IntelliJ IDEA has been installed, do the following:
-
Start IntelliJ IDEA (2023.3 or newer).
-
On the startup screen of the IDE click the Plugins button.
If you have any project opened, use the main menu: File → Settings (on Windows and Linux) or IntelliJ IDEA → Preferences (on macOS). Then switch to the Plugins section.
-
Switch to the Marketplace tab.
-
Enter "jmix" into the search field. You will see the Jmix plugin in the search results.
-
Click Install and follow the further instructions of the IDE.
In case you need to configure internet access via a proxy server or install non-standard Studio builds, visit the Studio installation section.
To have access to the premium Studio features, configure subscription in the subscription dialog window. |
Install Java Development Kit (JDK)
Download JDK version 17 or 21 (for example, Eclipse Temurin) and install it to a directory suggested by the installer. This is enough for creating and running applications from the IDE.
With Jmix 2.3, you can build applications using Java 17 or 21 from any vendor. However, we don’t recommend an OpenJ9-based JDK due to the problems it has caused in the past. |
To run Jmix applications from the terminal, set JAVA_HOME
environment variable as described below.
-
On Windows, create the
JAVA_HOME
variable with the path to the installed JDK root directory at Computer → Properties → Advanced System Settings → Advanced → Environment variables. The variable should be added to the System variables list. -
On macOS and Linux set
JAVA_HOME
in~/.bash_profile
or another appropriate file of your shell, for example:export JAVA_HOME="/Library/Java/JavaVirtualMachines/temurin-17.jdk/Contents/Home"
-
Restart the computer to make sure the environment variable has taken effect.
-
Check correctness of the environment variable by running the following command in the console:
On Windows"%JAVA_HOME%\bin\java" -version
On Linux and macOS"$JAVA_HOME/bin/java" -version
The command should return the Java version, e.g.
17.0.9
.
If you connect to the internet via a proxy server, some Java system properties must be passed to the JVM running development tools and Gradle. Configure these properties using Jmix Studio. |
Troubleshooting
Depending on the size of your project, you may need to increase available memory for the IntelliJ IDEA and Gradle processes.
-
In IntelliJ IDEA, open Help → Edit Custom VM Options… and edit the
-Xmx
parameter (it’s usually on top). The recommended value is2048m
or more, for example:-Xmx2048m
-
Edit the
~/.gradle/gradle.properties
file and set the-Xmx
parameter in theorg.gradle.jvmargs
property. The recommended value is2048m
or more, for example:org.gradle.jvmargs=-Xmx2048m