Tech-Today
javax.ejb cannot be resolve eclipse helios
If you're having the above error, it means the javaee.jar is not included in your project.
In my case I'm using a JBoss application server. To solve the issue simply add the jboss-javaee.jar in your project's build path. The javaee jar for jboss is commonly located on:
JBOSS_HOME/common/lib/jboss-javaee.jar
-
How To Setup Arquillian Testing With Wildfly
This tutorial requires: Knowledge with GITKnowledge with archetypeRequirements:WildflyeclipseWhat to do:In eclipse create a new maven project: File->New->Other, enter maven in the filter. Select Maven Project. Click next, then next. In the filter...
-
Javaee Development
JavaEE6How to create a javaee6 web app using jboss maven war archetypeCreate a simple javaee6 web app with maven, glassfish and postgresqlHow to validate a JavaEE6 Bean in a jobHow to add JavaEE 6 archetypes in eclipse keplerHow to create a custom bean...
-
Custom Application Context Or Name In Jboss Or Wildfly
As far as I know there are 3 ways to deploy an application in JBoss or Wildfly with a custom application context name. 1.) By adding jboss-web.xml in your web project WEB-INF folder; <?xml version="1.0" encoding="UTF-8"?> <jboss-web xmlns="http://www.jboss.com/xml/ns/javaee"...
-
How To Add Javaee 6 Archetypes In Eclipse Kepler
I'm currently playing with the latest release from eclipse (kepler) and found out that the maven archetypes for JavaEE6 are missing. Perhaps the maven catalog is not outdated, to do so follow the following steps: 1.) Run eclipse kepler 2.) Open Window->Preferences,...
-
Jsf Jboss 5.0.1 On Eclipse Helios Tutorial
It took me 2 hours to do this with 1 single mistake, so I'm writing what I did to make it run. Before the actual tutorial here are the errors that we will try to resolve: What I'm using: 1.) eclipse-jee-helios, with jboss tools installed 2.) jboss...
Tech-Today