What is the difference between Netbeans JAVA WEB and Java EE?

Asked

Viewed 1,189 times

1

What is the difference between the type of Netbeans JAVA WEB project and the Netbeans JAVA EE?

  • 1

    https://netbeans.org/kb/trails/java-ee_pt_BR.html

1 answer

4

The Java Web Project in the Netbeans IDE, which has the globine icon, creates a container with two important folders: Web Pages, which generally stores jsps, htmls, css, and javascript files, and the Source Packages folder that it stores in general Windows or framework files.

The Java EE project already has a different structure and is focused on EJB, having three divisions: The triangle that is where you will manage the project as a whole, the little globe that is the web project (like the normal Java Web project) and the little bean that is the part of the Ejbs.

If you want to learn how to create a Java EE project using JSF pages, you can follow this Netbeans tutorial: https://netbeans.org/kb/docs/javaee/javaee-gettingstarted_pt_BR.html

Browser other questions tagged

You are not signed in. Login or sign up in order to post.