Anypoint Studio Frozen Problem when starting on Mac Platform
solution: most important is to install jdk 1.8.0 151, this is max version of anypoint studio that support.
any version older that 151 would fail to work.
Edit target AnypointStudio.ini
AnypointStudio.app/Contents/Eclipse/AnypointStudio.ini
use
-vm
/Library/Java/JavaVirtualMachines/jdk1.8.0_151.jdk/Contents/Home/bin
to point to JAVA_HOME of jdk 1.8 151
use
-clean to clean up workspace
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | -clean -startup ../Eclipse/plugins/org.eclipse.equinox.launcher_1.3.100.v20150511-1540.jar -vm /Library/Java/JavaVirtualMachines/jdk1.8.0_151.jdk/Contents/Home/bin --launcher.library ../Eclipse/plugins/org.eclipse.equinox.launcher.cocoa.macosx.x86_64_1.1.300.v20150602-1417 -vmargs -Xms512m -Xmx1536m -XX:MaxPermSize=512m -Dosgi.instance.area.default=@user.home/AnypointStudio/workspace -Dhttps.protocols=TLSv1.1,TLSv1.2 -Djava.awt.headless=true -XstartOnFirstThread -Dorg.eclipse.swt.internal.carbon.smallFonts |