Además que se nos muestra cómo podemos invocar al EJB desde un cliente Web y Desktop
Les comparto el link: Creating EJB3 Sessions Beans using Netbeans 6.1 and Glassfish
EJB 3.0 Session Bean
http://www.perevillega.com/java/ejb-30-session-beans/
EJB 3.0 Plugins
http://www.javabeat.net/articles/ejb3/1/
EJB 3.0
http://www.netbeans.org/kb/55/ejb30.html
Despliegue de EJB
http://www.proactiva-calidad.com/java/ejb/ejemplo1.html
Codigo Ejemplo
http://ccia.ei.uvigo.es/docencia/SCS/practicas0809/
EJB en Netbeans con Postgres
http://nachxs.wordpress.com/2009/04/28/tutorial-ejb-persistencia-y-postgresql-en-netbeans-65/
Hibernate
http://www.adictosaltrabajo.com/tutoriales/tutoriales.php?pagina=hibernateAnnotations
Hibernate vs Ejb
http://www.javahispano.org/forum/j2ee/es/hibernate_vs__ejb/
Integrar Hibernate Ejb
https://www.hibernate.org/82.html
Hibernate y las anotaciones de EJB 3.0
http://www.adictosaltrabajo.com/tutoriales/tutoriales.php?pagina=hibernateAnnotations
The Simple Logging Facade for Java or (SLF4J) http://www.slf4j.org/manual.html
import org.slf4j.Logger;Implementaciones
import org.slf4j.LoggerFactory;
public class HelloWorld {
public static void main(String[] args) {
Logger logger = LoggerFactory.getLogger(HelloWorld.class);
logger.info("Hello World");
}
}
http://openejb.apache.org/ejb3-tutorial.html
http://www.roseindia.net/ejb/
http://www.caucho.com/resin-3.0/ejb3/tutorial/index.xtp
http://wiki.netbeans.org/CreatingEJB3UsingNetbeansAndGlassfish
http://www.dosideas.com/cursos/course/view.php?id=5
http://www.dosideas.com/cursos/mod/resource/index.php?id=5
http://www.roseindia.net/ejb/examples-of-StatelessBean.shtml
Otras Referencias:
EJB con Hiberante
http://www.theserverside.com/discussions/thread.tss?thread_id=35663
http://www.velocityreviews.com/forums/t293538-hibernate-vs-ejb-or-jdbc.html
http://www.jtech.ua.es/j2ee/ejemplos/ejb/sesion01-apuntes.htm
http://www.adictosaltrabajo.com/tutoriales/tutoriales.php?pagina=orionejb
http://www.forosdelweb.com/f45/ejb-forma-local-247730/
No comments:
Post a Comment