Mostrar mensagens com a etiqueta EJB. Mostrar todas as mensagens
Mostrar mensagens com a etiqueta EJB. Mostrar todas as mensagens

17 novembro 2013

Web Tutorials

Web Tutorials

JAVA
Simple Java Database Swing Application
How to Send Email from Java Program with Example
Java ResourceBundle Example

Creating Maven Projects
Hibernate 3 with Maven 2 and MySQL 5 Example (XML Mapping and Annotation)
How to create a EJB 3.x project using Maven in Eclipse – Part 1
Setup of Dynamic Web Project using Maven
Create Web Application Project with Maven Example

JMS
Spring JMS Example

Java EE7 and Maven
Java EE7 and Maven project for newbies - part1 part2 part3 part4 part5 part6 part7 part8
Spring JPA Data + Hibernate + MySQL + MAVEN
Spring MVC Hello World Example
Spring MVC File Upload Example
Spring MVC beginner tutorial with Spring Tool Suite IDE
Upload Files to Database with Spring MVC and Hibernate

Logging 
Logback
Logback Configuration Example

WELD - Java Contexts and Dependency Injection for the Java EE platform (CDI)
DI (Dependency Injection) / CDI – Basics
Writing JSR-352 style jobs with Spring Batch Part 2: Dependency injection

Spring Data MongoDB
Spring Data MongoDB with Java config

JPA
JPA Tutorial: Setting Up JPA in a Java SE Environment
JPA Tutorial: Mapping Entities – Part 1 - Part 2 - Part 3

Hibernate
Hibernate annotations example
Hibernate tutorial with Eclipse

Persistence
The DAO with JPA and Spring
How to maintain history of tables in Hibernate

Android Tutorials
Android Development Tutorial

13 agosto 2013

Free Java EE 6 Video Tutorial

Free online tutorial about JPA, EJB 3, JSF, JMS, JAX-RS and CDI. The tutorial starts from the very basics and teaches Java EE, API by API/feature by feature, through a series of progressive code examples that build on the one before it. The tutorial uses GlassFish, NetBeans and MySQL.

15 julho 2013

Java EE 7 - Articles

A large collection of articles about Java EE 7 and its sub-specs, such as JSF 2.2, JPA 2.1, JMS 2.0, CDI 1.1, etc. The full articles here https://javaee7.zeef.com/.

01 julho 2013

Java EE 7 - Entreprise JavaBeans 3.2

About video: Enterprise JavaBeans is an architecture for the development and deployment of component-based applications. This webinar is an overview of the EJB 3.2: changes to the SFSBs and MDBs, security, TimerService API; optional features, and more.

27 junho 2013

EJB transactions: going deeper

In below article the autor explains in some words how works EJB technology, particularly about EJB transaction management
Full article
@Stateless  
public class MyFirstEjbBean implements MyFirstEjb {  
  
  @EJB  
  private MySecondEjb other;  
  
  public void firstEjb(){  
  
    other.secondEjb();  
  }  
}  
  
  
@Stateless  
public class MySecondEjbBean implements MySecondEjb {  
  
  public void secondEjb(){  
  
  }  
} 

22 abril 2013

How to Create a Java EE 6 Application with JSF 2, EJB 3.1, JPA, and NetBeans IDE 6.8

"The architecture of the application is shown in the above diagram, where it is organized into various tiers: Presentation, Business, Data Access and Data, where each has an important role to play and is segregated from one another."

Writed by Christopher Lam in DZone