bretondev
bretondev

Reputation: 139

Bin folder not present in Java EE SDK

I want to install Eclipse + Java EE and achieve a "Hello World" example. I have installed Eclipse which is OK. However, I have downloaded Java EE SDK 8 from here and unzipped the archive. I expected to get a folder named bin inside which I should find all the java commands, such as java, javac, etc.. so that I can declare this folder in the PATH environment. But this folder is not there.

Why? What do I need to do? Because of that, I cannot launch Eclipse because I get a message that I need a JRE installed.

Thanks a lot

Upvotes: 1

Views: 1737

Answers (1)

LenglBoy
LenglBoy

Reputation: 1451

You´ve downloaded the reference implementation of Java 8 EE. So this is a Apllication Server u can use for your Java EE Application and Beanmanagement. But it´s not equals to a normal JDK.

Download a JDK (Java SE) from here.

Upvotes: 1

Related Questions