How can I select a specific version of Java EE in Eclipse?

This is my first day with Java EE, and I would like to understand:

How can I create a Java EE 7 project? and where can I check which version of Java EE I actually use?

I downloaded the latest version of Eclipse for Java EE (Neon) developers, and now I'm trying to understand how all of these parts fit together.

I finished downloading the Java Platform, Enterprise Edition 7 Web Profile SDK Update 3 , as well as the shell file for installing the Java Platform Update, Enterprise Edition 7 SDK 3 .

I know there are many instructions, but I would just like to set up an Eclipse environment.

Happy for any help or resource!

+5
source share
1 answer

You can follow this tutorial http://www.edu4java.com/en/servlet/servlet4.html , but it's basically the same

  • You need to create a new project (Dynamic Web Project)
  • Versions of the faces you select will determine which version of the Java EE specification matches
  • Choose an application server (I personally recommend Wildfly http://wildfly.org/ , but the built-in Java EE preview server can run servlets on its own)

And you are ready to go!

0
source

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


All Articles