January 2018
Intermediate to advanced
350 pages
9h 7m
English
The only dependency Java EE requires is the Java EE API:
<dependency> <groupId>javax</groupId> <artifactId>javaee-api</artifactId> <version>${javaee-api.version}</version> <!-- 8.0 --> <scope>provided</scope></dependency>
Here, the point is to ensure that the API is provided, which means it will not be packaged in the deliverable and will inherit from the server API. The server providing the services associated with the API also provides the API with the right supported version and the right defaults matching the built-in implementations. ...
Read now
Unlock full access