Chapter 03: Setting Up the Development Environment: Difference between revisions
(2 intermediate revisions by the same user not shown) | |||
Line 107: | Line 107: | ||
export JAVA_HOME=/usr/lib/jvm/temurin-21-jdk-amd64 # Linux | export JAVA_HOME=/usr/lib/jvm/temurin-21-jdk-amd64 # Linux | ||
export PATH=$JAVA_HOME/bin:$PATH</syntaxhighlight> | export PATH=$JAVA_HOME/bin:$PATH</syntaxhighlight> | ||
'''Windows (System Environment Variables):''' | '''Windows (System Environment Variables):''' | ||
# Open System Properties → Advanced → Environment Variables | |||
# Add new System Variable: - Variable name: <code>JAVA_HOME</code> - Variable value: <code>C:\Program Files\Eclipse Adoptium\jdk-21.0.1.12-hotspot</code> | |||
# Add <code>%JAVA_HOME%\bin</code> to PATH | |||
<span id="installing-intellij-idea"></span> | <span id="installing-intellij-idea"></span> | ||
== 3.2 Installing IntelliJ IDEA == | == 3.2 Installing IntelliJ IDEA == | ||
Line 123: | Line 127: | ||
* Spring Boot run configurations | * Spring Boot run configurations | ||
* Application properties assistance | * Application properties assistance | ||
* Database tools | * Database tools | ||
* HTTP client | |||
* Advanced debugging tools | |||
<span id="installation-steps"></span> | <span id="installation-steps"></span> | ||
Line 129: | Line 135: | ||
=== Installation Steps === | === Installation Steps === | ||
'''Download and Install:''' | '''Download and Install:''' | ||
# Visit https://www.jetbrains.com/idea/download/ | |||
# Download the appropriate version for your OS | |||
# Install following the platform-specific instructions | |||
'''Using JetBrains Toolbox (Recommended):''' | '''Using JetBrains Toolbox (Recommended):''' | ||
Line 142: | Line 151: | ||
# - Settings sync</syntaxhighlight> | # - Settings sync</syntaxhighlight> | ||
<span id="initial-configuration"></span> | <span id="initial-configuration"></span> | ||
=== Initial Configuration === | === Initial Configuration === | ||