JEE: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
(33 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
=External= | |||
* https://docs.oracle.com/javaee/7/api/ | |||
=Subjects= | =Subjects= | ||
* [[JEE Core Concepts]] | |||
* [[Servlet]] | * [[Servlet]] | ||
* [[EJB]] | |||
* [[JMS]] | * [[JMS]] | ||
* [[EAR]] | |||
* [[JNDI]] | |||
* [[JCA]] | |||
* [[CDI]] | |||
=Maven= | |||
<pre> | |||
<dependency> | |||
<groupId>javax</groupId> | |||
<artifactId>javaee-api</artifactId> | |||
<version>6.0</version> | |||
<scope>provided</scope> | |||
</dependency> | |||
</pre> | |||
=Specifications= | |||
==JEE 6== | |||
* <span id='jsr_316'></span>Java Platform, Enterprise Edition 6 (Java EE 6) Specification JSR 316 [[:File:Javaee_platform-6_0-fr-spec.pdf|Java Platform, Enterprise Edition (Java EE) Specification, v6]] https://jcp.org/en/jsr/detail?id=316 | |||
* <span id="jsr_318"></span>Enterprise JavaBeans 3.1 JSR 318 [[:File:Ejb-3 1-fr-spec.pdf|Enterprise JavaBeans,Version 3.1 EJB Core Contracts and Requirements]] https://jcp.org/en/jsr/detail?id=318 | |||
* Contexts and Dependency Injection for the Java EE platform JSR 299 [[:File:web_beans-1_0-fr-eval-spec.pdf|Contexts and Dependency Injection for the Java EE platform]] https://jcp.org/en/jsr/detail?id=299 | |||
* Java Persistence 2.0 JSR 317 https://jcp.org/en/jsr/detail?id=317 | |||
* JAX-RS: The Java API for RESTful Web Services JSR 311 https://jcp.org/en/jsr/detail?id=311 | |||
* Java Servlet 3.0 Specification JSR 315 https://jcp.org/en/jsr/detail?id=315 | |||
* [[JavaBeans Validation]] JSR 303 https://jcp.org/en/jsr/detail?id=303 | |||
* Java EE Connector Architecture JSR 322 https://jcp.org/en/jsr/detail?id=322 | |||
* <span id="jsr_250"></span>Common Annotations for the Java Platform JSR 250 [[:File:JSR 250 Maintenance Release 3.pdf|JSR 250 Maintenance Release 3]] | |||
* <span id="jsr_220">Enterprise JavaBeans 3.0 JSR 220. |
Latest revision as of 17:30, 16 October 2018
External
Subjects
Maven
<dependency> <groupId>javax</groupId> <artifactId>javaee-api</artifactId> <version>6.0</version> <scope>provided</scope> </dependency>
Specifications
JEE 6
- Java Platform, Enterprise Edition 6 (Java EE 6) Specification JSR 316 Java Platform, Enterprise Edition (Java EE) Specification, v6 https://jcp.org/en/jsr/detail?id=316
- Enterprise JavaBeans 3.1 JSR 318 Enterprise JavaBeans,Version 3.1 EJB Core Contracts and Requirements https://jcp.org/en/jsr/detail?id=318
- Contexts and Dependency Injection for the Java EE platform JSR 299 Contexts and Dependency Injection for the Java EE platform https://jcp.org/en/jsr/detail?id=299
- Java Persistence 2.0 JSR 317 https://jcp.org/en/jsr/detail?id=317
- JAX-RS: The Java API for RESTful Web Services JSR 311 https://jcp.org/en/jsr/detail?id=311
- Java Servlet 3.0 Specification JSR 315 https://jcp.org/en/jsr/detail?id=315
- JavaBeans Validation JSR 303 https://jcp.org/en/jsr/detail?id=303
- Java EE Connector Architecture JSR 322 https://jcp.org/en/jsr/detail?id=322
- Common Annotations for the Java Platform JSR 250 JSR 250 Maintenance Release 3
- Enterprise JavaBeans 3.0 JSR 220.