0% found this document useful (0 votes)
6 views

MuleSoft_Environment_Setup_Windows

This guide provides step-by-step instructions for setting up a MuleSoft development environment on Windows, including installing Java, Anypoint Studio, Apache Maven, Git, and Postman. It also covers creating an Anypoint Platform account and configuring Anypoint Studio for project development. Finally, it includes instructions for creating and testing a sample Mule project.

Uploaded by

uwayo
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views

MuleSoft_Environment_Setup_Windows

This guide provides step-by-step instructions for setting up a MuleSoft development environment on Windows, including installing Java, Anypoint Studio, Apache Maven, Git, and Postman. It also covers creating an Anypoint Platform account and configuring Anypoint Studio for project development. Finally, it includes instructions for creating and testing a sample Mule project.

Uploaded by

uwayo
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

MuleSoft Development Environment Setup Guide (Windows)

1. Install Java (JDK)

Recommended Version: JDK 11 (Mule 4 supports JDK 8 and 11)

Download: https://www.oracle.com/java/technologies/javase-jdk11-downloads.html

Set Environment Variables:

- JAVA_HOME -> path to JDK (e.g., C:\Program Files\Java\jdk-11.x.x)

- Add %JAVA_HOME%\bin to your system Path variable

2. Install Anypoint Studio (MuleSoft's IDE)

Download: https://www.mulesoft.com/lp/dl/studio

Select Windows (64-bit) version

Extract the ZIP and run AnypointStudio.exe

3. Create an Anypoint Platform Account

URL: https://anypoint.mulesoft.com/

Click Sign Up and complete your registration

Once signed in, you'll have access to:

- Design Center

- API Manager

- Runtime Manager

- Access Management

4. Configure Anypoint Studio

Open Anypoint Studio

Go to: Anypoint Studio -> Preferences -> Anypoint Studio -> Authentication

Log in using your Anypoint Platform credentials

5. Set Workspace Directory


MuleSoft Development Environment Setup Guide (Windows)

Choose a location to store your Mule projects, e.g.:

C:\MuleProjects

6. Install and Configure Apache Maven

Download: https://maven.apache.org/download.cgi

Extract to a directory (e.g., C:\Maven\apache-maven-3.8.x)

Set Environment Variables:

- MAVEN_HOME -> path to Maven directory

- Add %MAVEN_HOME%\bin to your Path variable

Verify Installation:

Run mvn -v in Command Prompt

7. Install Git and Postman

- Git: https://git-scm.com/download/win

- Postman: https://www.postman.com/downloads/

8. Create a Sample Mule Project

In Anypoint Studio:

- Go to File -> New -> Mule Project

- Name it (e.g., HelloMule)

- Drag an HTTP Listener and a Logger to your flow

- Run the application

9. Test Your Project

If your HTTP Listener is configured on port 8081 with the path /hello,

Open this URL in your browser or Postman:

http://localhost:8081/hello

You might also like