macOS: Installing Glassfish and Configure IntelliJ IDEA to use it
by admin on Feb.22, 2019, under MAC OS X, Programming
GlassFish is the Open Source Java EE Reference Implementation, an application server that was initially created by Sun Microsystems and allows us to run javax webservice applications.
Install Homebew
Download homebrew from the project website: https://brew.sh
Update the formulae and Homebrew itself
brew update
Install Glassfish
brew install glassfish
As of the time of this writing, Glassfish 5.0 was the latest version.
Configure IntelliJ IDEA
- IntelliJ IDEA > Preferences… > Build, Execution, Deployment > Application Servers
- Click on the + (plus) icon in order to create a new application server configuration.
- Choose Glassfish Server from the list and use the GlassFish Home directory below:
/usr/local/Cellar/glassfish/5.0/libexec
Ensure to substitute the version number with the one installed through Homebrew. We may afterwards configure a new Run Configuration in order to start the Glassfish server and test our built artifact.
February 17th, 2022 on 16:57
Thannks man! just what I needed!