Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>JBoss is a Java EE 6 compliant application server, meaning that it has all the implementations of the Java EE standard on board already, These libraries are avaliabel to applications at runtime, so there is no need to add any additional libraries to use all Java EE 6 features. </p> <p>If you are using maven, simply reference the libraries to be used at runtime ('provided' scope) like this</p> <pre class="lang-xml prettyprint-override"><code>&lt;dependency&gt; &lt;groupId&gt;org.jboss.spec.javax.faces&lt;/groupId&gt; &lt;artifactId&gt;jboss-jsf-api_2.1_spec&lt;/artifactId&gt; &lt;scope&gt;provided&lt;/scope&gt; &lt;/dependency&gt; </code></pre> <p>If you are not sure where to start, try one or several projects from the <a href="https://github.com/jboss-jdf/jboss-as-quickstart" rel="nofollow">JBoss quickstarts</a>. There is at least one for each major Java EE technology and some examples that put those technologies together.</p> <p>EDIT: It seems that the real question here is how to add Java EE libs to your poroject, It depends on the build system. If you are using maven, and I would advise you to, pick a quickstart from the list - the <a href="https://github.com/jboss-jdf/jboss-as-quickstart/tree/master/kitchensink" rel="nofollow">kitchesink</a> is a good example and take a look at the <code>pom.xml</code>. It is not a good idea to add an implementation of a Java EE standard to your project other than the ones provided by the application server. This might cause problems on deployment or at runtime.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload