Search |
||
Java EE 5 APIs now in a Maven repository...Posted by ludo on January 16, 2007 at 8:58 PM PST
Bonjour, comment Java?
Finally, the Java EE 5 API jar has been published via a Maven repository: Check https://maven-repository.dev.java.net/nonav/repository/javaee/ So if you get this api jar file, you can compile the following class: import javax.jms.Queue;In a Maven project defined by this pom file: (notice the scope value which is 'provided') ?xml version="1.0" encoding="UTF-8"?>You can compile you code with this jar, but of course you cannnot run your application with it since it contains only the Java EE 5 APIs and does not contain any method bodies. If you try to run, you would get this exception: Exception in thread "main" java.lang.ClassFormatError: Absent Code attribute in method that is not native or abstract in class file javax/mail/Session In order to execute a Java EE 5 application, you'll still need a Java EE 5 container, like for example the GlassFish application server. Ludo »
Comments
Comments are listed in date ascending order (oldest first)
|
||
|
|