IntelliJ IDEA provides support for developing enterprise Java applications based on Jakarta EE (formerly known as Java EE). All the required plugins are bundled and enabled by default in IntelliJ IDEA Ultimate. The main plugin is Jakarta EE Platform for the core platform support, such as a dedicated project wizard. Other plugins that start with Jakarta EE in their name add support for various specifications, such as JPA, JAX-RS, and so on.
note
IntelliJ IDEA supports Jakarta EE up to version 10. In terms of functionality, Jakarta EE 9 is essentially the same as Jakarta EE 8 (fully compatible with Java EE 8), with the difference being in internal naming: the API namespace was renamed from javax to jakarta. So all features in IntelliJ IDEA that provide Java EE support also apply to Jakarta EE.
In IntelliJ IDEA 2022.1, all Java EE plugins were renamed Jakarta EE. For example, the Java EE Platform plugin is now called Jakarta EE Platform.
Depending on the set of plugins that you have enabled, IntelliJ IDEA does a lot of routine setup work for you. For example, it can create the relevant facet in your project, generate and update deployment descriptors and manifest files according to your project settings, add artifact configurations (JAR, WAR, EAR), detect problems and errors with how your application is configured. You can use dedicated run configurations for most of the supported application servers to start the corresponding server if necessary, build and deploy your artifacts, and open a predefined URL in your web browser. This greatly reduces the amount of manual setup and routine actions.