Eclipse: What is the difference between a "dynamic web project" and a "java ee web project",

Not sure if this is a question for Stackoverflow or Programmers. I want to develop a frontend web project with eclipse.

The interface will receive data from the EJB.

I have jboss tools installed. Now I can choose between a "dynamic web project" and a "java ee web project". Where is the difference and which one should I choose and why?

+4
source share
1 answer

According to the Jboss documentation , the java EE web project creates a Java EE 6 web project with support for JSF 2, JPA 2, REST, and CDI enabled.

In your scenario, JPA 2, REST, and CDI may be more than you need. You have to go with a dynamic web project, which is the standard profile for web applications.

After that, you can insert additional features, such as JPA, if you need them.

+3
source

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


All Articles