Why am I getting the “Got an unexpected VM installation view” error in Mulesoft Anyponit Studio (Eclipse)?

Why should everything around Java be so complicated? I am trying to run applications that run on computers of other users and get an error message:

Received unexpected VM installation view: null

Has anyone seen anything like this?

Anypoint Studio is a product provided by Mulesoft and based on Eclipse.

Mac OS X Yosemite

$ java -version
java version "1.7.0_79"
Java(TM) SE Runtime Environment (build 1.7.0_79-b15)
Java HotSpot(TM) 64-Bit Server VM (build 24.79-b02, mixed mode)

$ mvn -version
Apache Maven 3.3.3 (7994120775791599e205a5524ec3e0dfe41d4a06; 2015-04-22T07:57:37-04:00)
Maven home: /Users/jkalis/Maven/apache-maven-3.3.3
Java version: 1.7.0_79, vendor: Oracle Corporation
Java home: /Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre
Default locale: en_US, platform encoding: UTF-8
OS name: "mac os x", version: "10.10.3", arch: "x86_64", family: "mac"
+4
source share
1 answer

You need to specify the version of JRE that you want to use in the project properties.

Here are the steps to add to the project.

  • Choose a project
  • Select Properties
  • Select "Java Build Path"
  • " "
  • " ..."
  • 'JRE System Library'
  • ""
  • JRE .
  • ""
+11

Source: https://habr.com/ru/post/1598434/


All Articles